如何在php中获取joomla fabrik列表元素的internal_id?

时间:2019-06-24 05:23:29

标签: php list joomla id

我已经用几个Elements构建了一个joomla Fabrik列表。 第1列:ID 第2栏:名称 第3栏:年龄

某些用户能够编辑元素列表,因此我将普通的保存按钮更改为在后台执行php脚本的按钮。这会打电话给我,该用户已登录并进行了编辑。我能够在php中获取登录的joomla用户,但是现在我还需要ID,这是php中joomla列表中的internal_id。

window.open("http://localhost:9090/backup_cmd.php",height=100,width=100)
``` This is the js Code, added to the joomla element button

```php
$mainframe = JFactory::getApplication('site');
$mainframe->initialise();
jimport( 'joomla.user.user');
jimport( 'joomla.session.session');
jimport( 'joomla.user.authentication');
// now get user object and 3 example user variables
$user = JFactory::getUser(); 
$jid = $user->id; 
$jname = $user->username; 
$jguest = $user->guest;

这是在backup_cmd.php文件中获取登录用户的代码。但是现在我需要一些有关internal_id的想法。

0 个答案:

没有答案