dolibarr/htdocs/admin/triggers.php

91 lines
2.7 KiB
PHP
Raw Normal View History

2005-07-07 03:33:51 +02:00
<?php
/* Copyright (C) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.net>
2005-07-07 03:33:51 +02:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
2005-07-07 03:33:51 +02:00
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2005-07-07 03:33:51 +02:00
*/
2009-07-26 13:19:11 +02:00
2005-07-07 03:33:51 +02:00
/**
2008-10-12 13:41:13 +02:00
* \file htdocs/admin/triggers.php
* \brief Page to view triggers
2008-10-12 13:41:13 +02:00
*/
2005-07-07 03:33:51 +02:00
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/interfaces.class.php';
2005-07-07 03:33:51 +02:00
2018-05-26 18:52:14 +02:00
// Load translation files required by the page
$langs->load("admin");
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
}
2005-07-07 03:33:51 +02:00
$sortfield = 'file';
$sortorder = 'ASC';
2017-07-16 12:07:59 +02:00
/*
* Action
2009-11-09 21:20:23 +01:00
*/
2005-07-07 03:33:51 +02:00
// None
2005-07-07 03:33:51 +02:00
2009-07-26 13:19:11 +02:00
/*
* View
*/
2005-07-07 03:33:51 +02:00
llxHeader("", "");
2005-07-07 03:33:51 +02:00
$form = new Form($db);
2005-07-07 03:33:51 +02:00
print load_fiche_titre($langs->trans("TriggersAvailable"), '', 'title_setup');
2005-07-07 03:33:51 +02:00
2019-11-04 13:32:34 +01:00
print '<span class="opacitymedium">'.$langs->trans("TriggersDesc")."</span><br>";
2005-07-07 03:33:51 +02:00
print "<br>\n";
$interfaces = new Interfaces($db);
$triggers = $interfaces->getTriggersList();
2017-07-16 12:07:59 +02:00
$param = ''; $align = '';
2005-07-07 03:33:51 +02:00
2017-01-17 20:04:41 +01:00
print '<div class="div-table-responsive-no-min">';
2017-07-16 12:07:59 +02:00
print '<table class="noborder">';
print '<tr class="liste_titre">';
print getTitleFieldOfList('', 0, $_SERVER["PHP_SELF"], 'none', "", $param, '', $sortfield, $sortorder, '', 1)."\n";
print getTitleFieldOfList($langs->trans("File"), 0, $_SERVER["PHP_SELF"], 'file', "", $param, ($align ? 'align="'.$align.'"' : ''), $sortfield, $sortorder, '', 1)."\n";
2017-07-16 12:07:59 +02:00
print getTitleFieldOfList($langs->trans("Active"), 0, $_SERVER["PHP_SELF"], 'active', "", $param, 'align="center"', $sortfield, $sortorder, '', 1)."\n";
print getTitleFieldOfList('', 0, $_SERVER["PHP_SELF"], 'none', "", $param, ($align ? 'align="'.$align.'"' : ''), $sortfield, $sortorder, '', 1)."\n";
2017-07-16 12:07:59 +02:00
print '</tr>';
2013-06-05 16:24:32 +02:00
2021-02-26 22:04:03 +01:00
foreach ($triggers as $trigger) {
print '<tr class="oddeven">';
2022-01-05 14:42:45 +01:00
print '<td class=" width="32">'.$trigger['picto'].'</td>';
print '<td>'.$trigger['file'].'</td>';
print '<td class="center">'.$trigger['status'].'</td>';
print '<td>';
$text = $trigger['info'];
$text .= "<br>\n<strong>".$langs->trans("File")."</strong>:<br>\n".$trigger['relpath'];
//$text.="\n".$langs->trans("ExternalModule",$trigger['isocreorexternal']);
print $form->textwithpicto('', $text);
print '</td>';
2013-06-05 16:24:32 +02:00
print '</tr>';
}
print '</table>';
2017-01-17 20:04:41 +01:00
print '</div>';
2005-07-07 03:33:51 +02:00
2018-07-29 10:29:12 +02:00
// End of page
llxFooter();
$db->close();