You are not logged in.
Pages: 1
Hello,
I try to write a plugin where I add an entry in the tools menu --> working now, thx, and where I need to display a table like User, Ticket, etc.
I put this in my front/page.php
$itemtype = 'User';
$p = [
'start' => 0,
'is_deleted' => 0,
'sort' => 1,
'order' => 'DESC'
];
Search::showList($itemtype, $p);
Html::footer();
Actually I put $itemtype = 'User' but I want to populate the table with a query result, how I can do that ? Do you have an example where I can look ?
Where itemtype 'User' is defined so I can look ? or a plugin ?
Regards,
Last edited by nmy (2024-09-06 09:07:36)
Offline
Pages: 1