dolibarr 23.0.3
list-footer.tpl.php
1<!-- file list-footer.tpl.php -->
2<?php
3/* Copyright (C) 2025 Open-Dsi <support@open-dsi.fr>
4 */
5// Protection to avoid direct call of template
6if (empty($context) || !is_object($context)) {
7 print "Error, template page can't be called as URL";
8 exit(1);
9}
10'@phan-var-force Context $context';
11'@phan-var-force AbstractListController $this';
12
21$formList = &$this->formList;
22
23$parameters = array();
24$reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters, $context); // Note that $action and $object may have been modified by hook
25print $hookmanager->resPrint;
$context
@method int call_trigger(string $triggerName, ?User $user)
Definition logout.php:42