dolibarr  19.0.0-dev
triggers.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
23 // Load Dolibarr environment
24 require '../main.inc.php';
25 require_once DOL_DOCUMENT_ROOT.'/core/class/interfaces.class.php';
26 
27 // Load translation files required by the page
28 $langs->load("admin");
29 
30 if (!$user->admin) {
32 }
33 
34 $sortfield = 'file';
35 $sortorder = 'ASC';
36 
37 
38 /*
39  * Action
40  */
41 
42 // None
43 
44 
45 /*
46  * View
47  */
48 
49 llxHeader("", "");
50 
51 $form = new Form($db);
52 
53 print load_fiche_titre($langs->trans("TriggersAvailable"), '', 'title_setup');
54 
55 print '<span class="opacitymedium">'.$langs->trans("TriggersDesc")."</span><br>";
56 print "<br>\n";
57 
58 
59 $interfaces = new Interfaces($db);
60 $triggers = $interfaces->getTriggersList();
61 $param = ''; $align = '';
62 
63 print '<div class="div-table-responsive-no-min">';
64 print '<table class="noborder">';
65 print '<tr class="liste_titre">';
66 print getTitleFieldOfList('', 0, $_SERVER["PHP_SELF"], 'none', "", $param, '', $sortfield, $sortorder, '', 1)."\n";
67 print getTitleFieldOfList($langs->trans("File"), 0, $_SERVER["PHP_SELF"], 'file', "", $param, ($align ? 'align="'.$align.'"' : ''), $sortfield, $sortorder, '', 1)."\n";
68 print getTitleFieldOfList($langs->trans("Active"), 0, $_SERVER["PHP_SELF"], 'active', "", $param, 'align="center"', $sortfield, $sortorder, '', 1)."\n";
69 print getTitleFieldOfList('', 0, $_SERVER["PHP_SELF"], 'none', "", $param, ($align ? 'align="'.$align.'"' : ''), $sortfield, $sortorder, '', 1)."\n";
70 print '</tr>';
71 
72 foreach ($triggers as $trigger) {
73  print '<tr class="oddeven">';
74  print '<td class=" width="32">'.$trigger['picto'].'</td>';
75  print '<td>'.$trigger['file'].'</td>';
76  print '<td class="center">'.$trigger['status'].'</td>';
77  print '<td>';
78  $text = $trigger['info'];
79  $text .= "<br>\n<strong>".$langs->trans("File")."</strong>:<br>\n".$trigger['relpath'];
80  //$text.="\n".$langs->trans("ExternalModule",$trigger['isocreorexternal']);
81  print $form->textwithpicto('', $text);
82  print '</td>';
83  print '</tr>';
84 }
85 
86 print '</table>';
87 print '</div>';
88 
89 // End of page
90 llxFooter();
91 $db->close();
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
Class to manage triggers.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.