123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <?php
- /* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
- *
- * 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 2 of the License, or
- * (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
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/contract.php
- * \ingroup contract
- * \brief Setup page of module Contracts
- */
- require("../main.inc.php");
- require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php");
- require_once(DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php');
- $langs->load("admin");
- $langs->load("bills");
- $langs->load("other");
- $langs->load("contracts");
- if (!$user->admin)
- accessforbidden();
- if (empty($conf->global->CONTRACT_ADDON))
- {
- $conf->global->CONTRACT_ADDON='mod_contract_serpis';
- }
- /*
- * Actions
- */
- if ($_POST["action"] == 'updateMask')
- {
- $maskconst=$_POST['maskconstcontract'];
- $maskvalue=$_POST['maskcontract'];
- if ($maskconst) dolibarr_set_const($db,$maskconst,$maskvalue,'chaine',0,'',$conf->entity);
- }
- if ($_GET["action"] == 'setmod')
- {
- dolibarr_set_const($db, "CONTRACT_ADDON",$_GET["value"],'chaine',0,'',$conf->entity);
- }
- // constants of magre model
- if ($_POST["action"] == 'updateMatrice') dolibarr_set_const($db, "CONTRACT_NUM_MATRICE",$_POST["matrice"],'chaine',0,'',$conf->entity);
- if ($_POST["action"] == 'updatePrefix') dolibarr_set_const($db, "CONTRACT_NUM_PREFIX",$_POST["prefix"],'chaine',0,'',$conf->entity);
- if ($_POST["action"] == 'setOffset') dolibarr_set_const($db, "CONTRACT_NUM_DELTA",$_POST["offset"],'chaine',0,'',$conf->entity);
- if ($_POST["action"] == 'setNumRestart') dolibarr_set_const($db, "CONTRACT_NUM_RESTART_BEGIN_YEAR",$_POST["numrestart"],'chaine',0,'',$conf->entity);
- /*
- * View
- */
- llxHeader();
- $dir=DOL_DOCUMENT_ROOT."/includes/modules/contract/";
- $html=new Form($db);
- $linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
- print_fiche_titre($langs->trans("ContractsSetup"),$linkback,'setup');
- print "<br>";
- print_titre($langs->trans("ContractsNumberingModules"));
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td width="100">'.$langs->trans("Name").'</td>';
- print '<td>'.$langs->trans("Description").'</td>';
- print '<td>'.$langs->trans("Example").'</td>';
- print '<td align="center" width="60">'.$langs->trans("Status").'</td>';
- print '<td align="center" width="16">'.$langs->trans("Infos").'</td>';
- print "</tr>\n";
- clearstatcache();
- $dir = "../includes/modules/contract/";
- $handle = opendir($dir);
- if (is_resource($handle))
- {
- $var=true;
- while (($file = readdir($handle))!==false)
- {
- if (substr($file, 0, 13) == 'mod_contract_' && substr($file, dol_strlen($file)-3, 3) == 'php')
- {
- $file = substr($file, 0, dol_strlen($file)-4);
- require_once(DOL_DOCUMENT_ROOT ."/includes/modules/contract/".$file.".php");
- $module = new $file;
- // Show modules according to features level
- if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) continue;
- if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) continue;
- if ($module->isEnabled())
- {
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$module->nom."</td>\n";
- print '<td>';
- print $module->info();
- print '</td>';
- // Show example of numbering module
- print '<td nowrap="nowrap">';
- $tmp=$module->getExample();
- if (preg_match('/^Error/',$tmp)) print $langs->trans($tmp);
- else print $tmp;
- print '</td>'."\n";
- print '<td align="center">';
- if ($conf->global->CONTRACT_ADDON == "$file")
- {
- print img_picto($langs->trans("Activated"),'on');
- }
- else
- {
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=setmod&value='.$file.'&scandir='.$module->scandir.'&label='.urlencode($module->name).'">';
- print img_picto($langs->trans("Disabled"),'off');
- print '</a>';
- }
- print '</td>';
- $contract=new Contrat($db);
- $contract->initAsSpecimen();
- // Info
- $htmltooltip='';
- $htmltooltip.=''.$langs->trans("Version").': <b>'.$module->getVersion().'</b><br>';
- $facture->type=0;
- $nextval=$module->getNextValue($mysoc,$contract);
- if ("$nextval" != $langs->trans("NotAvailable")) // Keep " on nextval
- {
- $htmltooltip.=''.$langs->trans("NextValue").': ';
- if ($nextval)
- {
- $htmltooltip.=$nextval.'<br>';
- }
- else
- {
- $htmltooltip.=$langs->trans($module->error).'<br>';
- }
- }
- print '<td align="center">';
- print $html->textwithpicto('',$htmltooltip,1,0);
- print '</td>';
- print '</tr>';
- }
- }
- }
- closedir($handle);
- }
- print '</table><br>';
- $db->close();
- llxFooter();
- ?>
|