dolibarr  13.0.2
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 require '../main.inc.php';
24 require_once DOL_DOCUMENT_ROOT.'/core/class/interfaces.class.php';
25 
26 // Load translation files required by the page
27 $langs->load("admin");
28 
29 if (!$user->admin) accessforbidden();
30 
31 $sortfield = 'file';
32 $sortorder = 'ASC';
33 
34 
35 /*
36  * Action
37  */
38 
39 // None
40 
41 
42 /*
43  * View
44  */
45 
46 llxHeader("", "");
47 
48 $form = new Form($db);
49 
50 print load_fiche_titre($langs->trans("TriggersAvailable"), '', 'title_setup');
51 
52 print '<span class="opacitymedium">'.$langs->trans("TriggersDesc")."</span><br>";
53 print "<br>\n";
54 
55 
56 $interfaces = new Interfaces($db);
57 $triggers = $interfaces->getTriggersList();
58 $param = ''; $align = '';
59 
60 print '<div class="div-table-responsive-no-min">';
61 print '<table class="noborder">';
62 print '<tr class="liste_titre">';
63 print getTitleFieldOfList('', 0, $_SERVER["PHP_SELF"], 'none', "", $param, '', $sortfield, $sortorder, '', 1)."\n";
64 print getTitleFieldOfList($langs->trans("File"), 0, $_SERVER["PHP_SELF"], 'file', "", $param, ($align ? 'align="'.$align.'"' : ''), $sortfield, $sortorder, '', 1)."\n";
65 print getTitleFieldOfList($langs->trans("Active"), 0, $_SERVER["PHP_SELF"], 'active', "", $param, 'align="center"', $sortfield, $sortorder, '', 1)."\n";
66 print getTitleFieldOfList('', 0, $_SERVER["PHP_SELF"], 'none', "", $param, ($align ? 'align="'.$align.'"' : ''), $sortfield, $sortorder, '', 1)."\n";
67 print '</tr>';
68 
69 foreach ($triggers as $trigger)
70 {
71  print '<tr class="oddeven">';
72  print '<td class="tdtop" width="32">'.$trigger['picto'].'</td>';
73  print '<td class="tdtop">'.$trigger['file'].'</td>';
74  print '<td valign="top" align="center">'.$trigger['status'].'</td>';
75  print '<td class="tdtop">';
76  $text = $trigger['info'];
77  $text .= "<br>\n<strong>".$langs->trans("File")."</strong>:<br>\n".$trigger['relpath'];
78  //$text.="\n".$langs->trans("ExternalModule",$trigger['isocreorexternal']);
79  print $form->textwithpicto('', $text);
80  print '</td>';
81  print '</tr>';
82 }
83 
84 print '</table>';
85 print '</div>';
86 
87 // End of page
88 llxFooter();
89 $db->close();
llxHeader()
Empty header.
Definition: wrapper.php:45
Class to manage generation of HTML components Only common components must be here.
load_fiche_titre($titre, $morehtmlright= '', $picto= 'generic', $pictoisfullpath=0, $id= '', $morecssontable= '', $morehtmlcenter= '')
Load a title with picto.
accessforbidden($message= '', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
print $_SERVER["PHP_SELF"]
Edit parameters.
print
Draft customers invoices.
Definition: index.php:89
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip= '', $forcenowrapcolumntitle=0)
Get title line of an array.
llxFooter()
Empty footer.
Definition: wrapper.php:59
Class to manage triggers.