dolibarr/htdocs/admin/contract.php

552 lines
18 KiB
PHP
Raw Normal View History

2011-02-18 18:12:22 +01:00
<?php
/* Copyright (C) 2011-2013 Juanjo Menent <jmenent@2byte.es>
2018-04-23 16:23:30 +02:00
* Copyright (C) 2011-2018 Philippe Grand <philippe.grand@atoo-net.com>
2011-02-18 18:12:22 +01: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
2011-02-18 18:12:22 +01: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/>.
2011-02-18 18:12:22 +01:00
*/
/**
* \file htdocs/admin/contract.php
* \ingroup contract
* \brief Setup page of module Contracts
*/
2022-09-07 20:08:59 +02:00
// Load Dolibarr environment
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
2017-05-29 15:25:37 +02:00
require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
require_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php';
2013-08-24 13:49:55 +02:00
require_once DOL_DOCUMENT_ROOT.'/core/lib/contract.lib.php';
2011-02-18 18:12:22 +01:00
2018-05-26 18:41:16 +02:00
// Load translation files required by the page
$langs->loadLangs(array("admin", "errors", "contracts"));
2011-02-18 18:12:22 +01:00
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
}
2011-02-18 18:12:22 +01:00
2020-09-16 19:39:50 +02:00
$action = GETPOST('action', 'aZ09');
$value = GETPOST('value', 'alpha');
$modulepart = GETPOST('modulepart', 'aZ09'); // Used by actions_setmoduleoptions.inc.php
$label = GETPOST('label', 'alpha');
$scandir = GETPOST('scan_dir', 'alpha');
$type = 'contract';
2011-08-31 10:10:39 +02:00
2021-02-26 22:04:03 +01:00
if (empty($conf->global->CONTRACT_ADDON)) {
$conf->global->CONTRACT_ADDON = 'mod_contract_serpis';
2011-02-20 23:53:59 +01:00
}
2011-02-18 18:12:22 +01:00
/*
* Actions
*/
2011-02-20 23:53:59 +01:00
2017-06-01 12:11:45 +02:00
include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
$error=0;
2021-02-26 22:04:03 +01:00
if ($action == 'updateMask') {
2023-01-04 15:10:09 +01:00
$maskconst = GETPOST('maskconstcontract', 'aZ09');
$maskvalue = GETPOST('maskcontract', 'alpha');
2023-01-04 15:10:09 +01:00
if ($maskconst && preg_match('/_MASK$/', $maskconst)) {
2021-02-26 22:04:03 +01:00
$res = dolibarr_set_const($db, $maskconst, $maskvalue, 'chaine', 0, '', $conf->entity);
}
2011-08-31 10:10:39 +02:00
2021-02-26 22:04:03 +01:00
if (!($res > 0)) {
$error++;
}
2011-09-21 15:24:27 +02:00
2021-02-26 22:04:03 +01:00
if (!$error) {
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
} else {
setEventMessages($langs->trans("Error"), null, 'errors');
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'specimen') { // For contract
$modele = GETPOST('module', 'alpha');
$contract = new Contrat($db);
$contract->initAsSpecimen();
// Search template files
$file = ''; $classname = ''; $filefound = 0;
$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
2021-02-26 22:04:03 +01:00
foreach ($dirmodels as $reldir) {
$file = dol_buildpath($reldir."core/modules/contract/doc/pdf_".$modele.".modules.php", 0);
2021-02-26 22:04:03 +01:00
if (file_exists($file)) {
$filefound = 1;
$classname = "pdf_".$modele;
break;
}
}
2021-02-26 22:04:03 +01:00
if ($filefound) {
require_once $file;
$module = new $classname($db);
2021-02-26 22:04:03 +01:00
if ($module->write_file($contract, $langs) > 0) {
header("Location: ".DOL_URL_ROOT."/document.php?modulepart=contract&file=SPECIMEN.pdf");
return;
2020-05-21 09:35:30 +02:00
} else {
2015-10-23 12:58:30 +02:00
setEventMessages($obj->error, $obj->errors, 'errors');
dol_syslog($obj->error, LOG_ERR);
}
2020-05-21 09:35:30 +02:00
} else {
2015-10-23 12:58:30 +02:00
setEventMessages($langs->trans("ErrorModuleNotFound"), null, 'errors');
dol_syslog($langs->trans("ErrorModuleNotFound"), LOG_ERR);
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'set') {
// Activate a model
$ret = addDocumentModel($value, $type, $label, $scandir);
2021-02-26 22:04:03 +01:00
} elseif ($action == 'del') {
$ret = delDocumentModel($value, $type);
2021-02-26 22:04:03 +01:00
if ($ret > 0) {
if ($conf->global->CONTRACT_ADDON_PDF == "$value") {
dolibarr_del_const($db, 'CONTRACT_ADDON_PDF', $conf->entity);
}
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'setdoc') {
// Set default model
if (dolibarr_set_const($db, "CONTRACT_ADDON_PDF", $value, 'chaine', 0, '', $conf->entity)) {
// La constante qui a ete lue en avant du nouveau set
// on passe donc par une variable pour avoir un affichage coherent
$conf->global->CONTRACT_ADDON_PDF = $value;
}
// On active le modele
$ret = delDocumentModel($value, $type);
2021-02-26 22:04:03 +01:00
if ($ret > 0) {
$ret = addDocumentModel($value, $type, $label, $scandir);
}
} elseif ($action == 'unsetdoc') {
dolibarr_del_const($db, "CONTRACT_ADDON_PDF", $conf->entity);
2021-02-26 22:04:03 +01:00
} elseif ($action == 'setmod') {
// TODO Verifier si module numerotation choisi peut etre active
// par appel methode canBeActivated
dolibarr_set_const($db, "CONTRACT_ADDON", $value, 'chaine', 0, '', $conf->entity);
2021-02-26 22:04:03 +01:00
} elseif ($action == 'set_other') {
2020-09-18 01:29:17 +02:00
$freetext = GETPOST('CONTRACT_FREE_TEXT', 'restricthtml'); // No alpha here, we want exact string
$res1 = dolibarr_set_const($db, "CONTRACT_FREE_TEXT", $freetext, 'chaine', 0, '', $conf->entity);
$draft = GETPOST('CONTRACT_DRAFT_WATERMARK', 'alpha');
$res2 = dolibarr_set_const($db, "CONTRACT_DRAFT_WATERMARK", trim($draft), 'chaine', 0, '', $conf->entity);
$value = GETPOST('activate_hideClosedServiceByDefault', 'alpha');
$res3 = dolibarr_set_const($db, "CONTRACT_HIDE_CLOSED_SERVICES_BY_DEFAULT", $value, 'chaine', 0, '', $conf->entity);
2020-06-16 10:30:10 +02:00
2022-08-12 15:54:50 +02:00
if (!($res1 > 0) || !($res2 > 0) || !($res3 > 0)) {
2021-02-26 22:04:03 +01:00
$error++;
}
2021-02-26 22:04:03 +01:00
if (!$error) {
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
} else {
setEventMessages($langs->trans("Error"), null, 'errors');
}
2022-09-29 14:28:58 +02:00
} elseif ($action == "allowonlinesign") {
if (!dolibarr_set_const($db, "CONTRACT_ALLOW_ONLINESIGN", $value, 0, 'int', $conf->entity)) {
$error++;
}
} elseif (preg_match('/set_(.*)/', $action, $reg)) {
$code = $reg[1];
$value = (GETPOST($code) ? GETPOST($code) : 1);
$res = dolibarr_set_const($db, $code, $value, 'chaine', 0, '', $conf->entity);
if (!($res > 0)) {
$error++;
}
if ($error) {
setEventMessages($langs->trans('Error'), null, 'errors');
} else {
setEventMessages($langs->trans('SetupSaved'), null, 'mesgs');
header("Location: " . $_SERVER["PHP_SELF"]);
exit();
}
} elseif (preg_match('/del_(.*)/', $action, $reg)) {
$code = $reg[1];
$res = dolibarr_del_const($db, $code, $conf->entity);
if (!($res > 0)) {
2022-09-29 14:28:58 +02:00
$error++;
}
if ($error) {
setEventMessages($langs->trans('Error'), null, 'errors');
} else {
setEventMessages($langs->trans('SetupSaved'), null, 'mesgs');
header("Location: " . $_SERVER["PHP_SELF"]);
exit();
}
}
2014-12-11 14:26:34 +01:00
2022-09-29 14:28:58 +02:00
2011-02-18 18:12:22 +01:00
/*
* View
*/
2011-02-20 23:53:59 +01:00
$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
2011-02-18 18:12:22 +01:00
llxHeader();
$form = new Form($db);
2011-02-18 18:12:22 +01:00
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans("ContractsSetup"), $linkback, 'title_setup');
2011-02-18 18:12:22 +01:00
$head = contract_admin_prepare_head();
2013-03-22 17:10:17 +01:00
2020-10-22 22:50:03 +02:00
print dol_get_fiche_head($head, 'contract', $langs->trans("Contracts"), -1, 'contract');
2013-03-22 17:10:17 +01:00
/*
* Contracts Numbering model
*/
print load_fiche_titre($langs->trans("ContractsNumberingModules"), '', '');
2011-02-18 18:12:22 +01:00
print '<div class="div-table-responsive-no-min">';
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
2011-02-18 18:12:22 +01:00
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>';
2019-02-23 21:57:35 +01:00
print '<td class="center" width="60">'.$langs->trans("Status").'</td>';
print '<td class="center" width="16">'.$langs->trans("ShortInfo").'</td>';
2011-02-18 18:12:22 +01:00
print "</tr>\n";
clearstatcache();
2021-02-26 22:04:03 +01:00
foreach ($dirmodels as $reldir) {
$dir = dol_buildpath($reldir."core/modules/contract/");
2011-02-18 18:12:22 +01:00
2021-02-26 22:04:03 +01:00
if (is_dir($dir)) {
$handle = opendir($dir);
2021-02-26 22:04:03 +01:00
if (is_resource($handle)) {
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 $dir.$file.'.php';
$module = new $file($db);
// Show modules according to features level
2021-02-26 22:04:03 +01:00
if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) {
continue;
}
if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) {
continue;
}
2021-02-26 22:04:03 +01:00
if ($module->isEnabled()) {
print '<tr class="oddeven"><td>'.$module->nom."</td><td>\n";
print $module->info();
print '</td>';
// Show example of numbering model
print '<td class="nowrap">';
$tmp = $module->getExample();
if (preg_match('/^Error/', $tmp)) {
$langs->load("errors");
print '<div class="error">'.$langs->trans($tmp).'</div>';
2021-02-26 22:04:03 +01:00
} elseif ($tmp == 'NotConfigured') {
2021-09-05 02:25:32 +02:00
print '<span class="opacitymedium">'.$langs->trans($tmp).'</span>';
2021-02-26 22:04:03 +01:00
} else {
print $tmp;
}
print '</td>'."\n";
2019-02-23 21:57:35 +01:00
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if ($conf->global->CONTRACT_ADDON == "$file") {
print img_picto($langs->trans("Activated"), 'switch_on');
2020-05-21 09:35:30 +02:00
} else {
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setmod&token='.newToken().'&value='.urlencode($file).'">';
print img_picto($langs->trans("Disabled"), 'switch_off');
print '</a>';
}
print '</td>';
$contract = new Contrat($db);
$contract->initAsSpecimen();
// Info
$htmltooltip = '';
$htmltooltip .= ''.$langs->trans("Version").': <b>'.$module->getVersion().'</b><br>';
$nextval = $module->getNextValue($mysoc, $contract);
if ("$nextval" != $langs->trans("NotAvailable")) { // Keep " on nextval
$htmltooltip .= ''.$langs->trans("NextValue").': ';
if ($nextval) {
2021-02-26 22:04:03 +01:00
if (preg_match('/^Error/', $nextval) || $nextval == 'NotConfigured') {
$nextval = $langs->trans($nextval);
2021-02-26 22:04:03 +01:00
}
$htmltooltip .= $nextval.'<br>';
} else {
$htmltooltip .= $langs->trans($module->error).'<br>';
}
}
2019-02-23 21:57:35 +01:00
print '<td class="center">';
print $form->textwithpicto('', $htmltooltip, 1, 0);
print '</td>';
print '</tr>';
}
}
}
closedir($handle);
}
}
2011-02-18 18:12:22 +01:00
}
print '</table></div><br>';
2011-08-31 10:10:39 +02:00
/*
* Documents models for Contracts
*/
print load_fiche_titre($langs->trans("TemplatePDFContracts"), '', '');
// Defini tableau def des modeles
$def = array();
$sql = "SELECT nom";
$sql .= " FROM ".MAIN_DB_PREFIX."document_model";
2020-09-19 23:11:38 +02:00
$sql .= " WHERE type = '".$db->escape($type)."'";
$sql .= " AND entity = ".$conf->entity;
$resql = $db->query($sql);
2021-02-26 22:04:03 +01:00
if ($resql) {
$i = 0;
$num_rows = $db->num_rows($resql);
2021-02-26 22:04:03 +01:00
while ($i < $num_rows) {
$array = $db->fetch_array($resql);
array_push($def, $array[0]);
$i++;
}
2020-05-21 09:35:30 +02:00
} else {
dol_print_error($db);
}
print '<div class="div-table-responsive-no-min">';
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("Name").'</td>';
print '<td>'.$langs->trans("Description").'</td>';
2019-02-23 21:57:35 +01:00
print '<td class="center" width="60">'.$langs->trans("Status")."</td>\n";
print '<td class="center" width="60">'.$langs->trans("Default")."</td>\n";
print '<td class="center" width="80">'.$langs->trans("ShortInfo").'</td>';
print '<td class="center" width="80">'.$langs->trans("Preview").'</td>';
print "</tr>\n";
clearstatcache();
2021-02-26 22:04:03 +01:00
foreach ($dirmodels as $reldir) {
foreach (array('', '/doc') as $valdir) {
$realpath = $reldir."core/modules/contract".$valdir;
$dir = dol_buildpath($realpath);
2021-02-26 22:04:03 +01:00
if (is_dir($dir)) {
$handle = opendir($dir);
2021-02-26 22:04:03 +01:00
if (is_resource($handle)) {
while (($file = readdir($handle)) !== false) {
$filelist[] = $file;
}
closedir($handle);
arsort($filelist);
2021-02-26 22:04:03 +01:00
foreach ($filelist as $file) {
if (preg_match('/\.modules\.php$/i', $file) && preg_match('/^(pdf_|doc_)/', $file)) {
if (file_exists($dir.'/'.$file)) {
$name = substr($file, 4, dol_strlen($file) - 16);
$classname = substr($file, 0, dol_strlen($file) - 12);
require_once $dir.'/'.$file;
$module = new $classname($db);
$modulequalified = 1;
2021-02-26 22:04:03 +01:00
if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) {
$modulequalified = 0;
}
if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) {
$modulequalified = 0;
}
2021-02-26 22:04:03 +01:00
if ($modulequalified) {
print '<tr class="oddeven"><td width="100">';
print (empty($module->name) ? $name : $module->name);
print "</td><td>\n";
2021-02-26 22:04:03 +01:00
if (method_exists($module, 'info')) {
print $module->info($langs);
} else {
print $module->description;
}
print '</td>';
// Active
2021-02-26 22:04:03 +01:00
if (in_array($name, $def)) {
print '<td class="center">'."\n";
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=del&token='.newToken().'&value='.urlencode($name).'">';
print img_picto($langs->trans("Enabled"), 'switch_on');
print '</a>';
print '</td>';
} else {
print '<td class="center">'."\n";
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=set&token='.newToken().'&value='.urlencode($name).'&scan_dir='.urlencode($module->scandir).'&label='.urlencode($module->name).'">'.img_picto($langs->trans("Disabled"), 'switch_off').'</a>';
print "</td>";
}
// Defaut
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if ($conf->global->CONTRACT_ADDON_PDF == $name) {
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=unsetdoc&token='.newToken().'&value='.urlencode($name).'&scan_dir='.urlencode($module->scandir).'&label='.urlencode($module->name).'&type=order_supplier" alt="'.$langs->trans("Disable").'">'.img_picto($langs->trans("Enabled"), 'on').'</a>';
} else {
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setdoc&token='.newToken().'&value='.urlencode($name).'&scan_dir='.urlencode($module->scandir).'&label='.urlencode($module->name).'" alt="'.$langs->trans("Default").'">'.img_picto($langs->trans("Disabled"), 'off').'</a>';
}
print '</td>';
// Info
$htmltooltip = ''.$langs->trans("Name").': '.$module->name;
$htmltooltip .= '<br>'.$langs->trans("Type").': '.($module->type ? $module->type : $langs->trans("Unknown"));
2021-02-26 22:04:03 +01:00
if ($module->type == 'pdf') {
$htmltooltip .= '<br>'.$langs->trans("Width").'/'.$langs->trans("Height").': '.$module->page_largeur.'/'.$module->page_hauteur;
}
$htmltooltip .= '<br>'.$langs->trans("Path").': '.preg_replace('/^\//', '', $realpath).'/'.$file;
$htmltooltip .= '<br><br><u>'.$langs->trans("FeaturesSupported").':</u>';
$htmltooltip .= '<br>'.$langs->trans("Logo").': '.yn($module->option_logo, 1, 1);
$htmltooltip .= '<br>'.$langs->trans("PaymentMode").': '.yn($module->option_modereg, 1, 1);
$htmltooltip .= '<br>'.$langs->trans("PaymentConditions").': '.yn($module->option_condreg, 1, 1);
$htmltooltip .= '<br>'.$langs->trans("MultiLanguage").': '.yn($module->option_multilang, 1, 1);
$htmltooltip .= '<br>'.$langs->trans("WatermarkOnDraftOrders").': '.yn($module->option_draft_watermark, 1, 1);
print '<td class="center">';
print $form->textwithpicto('', $htmltooltip, 1, 0);
print '</td>';
// Preview
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if ($module->type == 'pdf') {
2020-12-03 13:19:35 +01:00
print '<a href="'.$_SERVER["PHP_SELF"].'?action=specimen&module='.$name.'">'.img_object($langs->trans("Preview"), 'pdf').'</a>';
} else {
print img_object($langs->trans("PreviewNotAvailable"), 'generic');
}
print '</td>';
print "</tr>\n";
}
}
}
}
}
}
}
}
print '</table>';
print '</div>';
print "<br>";
/*
* Other options
*
*/
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
print '<input type="hidden" name="token" value="'.newToken().'">';
print '<input type="hidden" name="action" value="set_other">';
print load_fiche_titre($langs->trans("OtherOptions"), '', '');
print '<div class="div-table-responsive-no-min">';
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("Parameter").'</td>';
2019-02-23 21:57:35 +01:00
print '<td class="center" width="60">'.$langs->trans("Value").'</td>';
print "</tr>\n";
$substitutionarray = pdf_getSubstitutionArray($langs, array('objectamount'), null, 2);
$substitutionarray['__(AnyTranslationKey)__'] = $langs->trans("Translation");
$htmltext = '<i>'.$langs->trans("AvailableVariables").':<br>';
2021-02-26 22:04:03 +01:00
foreach ($substitutionarray as $key => $val) {
$htmltext .= $key.'<br>';
}
$htmltext .= '</i>';
print '<tr class="oddeven"><td colspan="2">';
print $form->textwithpicto($langs->trans("FreeLegalTextOnContracts"), $langs->trans("AddCRIfTooLong").'<br><br>'.$htmltext, 1, 'help', '', 0, 2, 'tooltiphelp');
print '<br>';
$variablename = 'CONTRACT_FREE_TEXT';
2021-02-26 22:04:03 +01:00
if (empty($conf->global->PDF_ALLOW_HTML_FOR_FREE_TEXT)) {
2022-06-21 20:25:25 +02:00
print '<textarea name="'.$variablename.'" class="flat" cols="120">'.getDolGlobalString($variablename).'</textarea>';
2020-05-21 09:35:30 +02:00
} else {
include_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
2022-06-21 23:39:31 +02:00
$doleditor = new DolEditor($variablename, getDolGlobalString($variablename), '', 80, 'dolibarr_notes');
print $doleditor->Create();
}
print '</td></tr>'."\n";
2019-04-16 16:16:37 +02:00
//Use draft Watermark
print '<tr class="oddeven"><td>';
print $form->textwithpicto($langs->trans("WatermarkOnDraftContractCards"), $htmltext, 1, 'help', '', 0, 2, 'watermarktooltip').'<br>';
print '</td><td>';
2022-07-24 18:59:07 +02:00
print '<input class="flat minwidth200" type="text" name="CONTRACT_DRAFT_WATERMARK" value="'.dol_escape_htmltag(getDolGlobalString('CONTRACT_DRAFT_WATERMARK')).'">';
2014-12-11 14:26:34 +01:00
print '</td></tr>'."\n";
2020-06-16 10:30:10 +02:00
print '<tr class="oddeven">';
print '<td>'.$langs->trans("HideClosedServiceByDefault").'</td>';
print '<td width="60" class="right">';
print $form->selectyesno("activate_hideClosedServiceByDefault", (!empty($conf->global->CONTRACT_HIDE_CLOSED_SERVICES_BY_DEFAULT) ? $conf->global->CONTRACT_HIDE_CLOSED_SERVICES_BY_DEFAULT : 0), 1);
2020-06-16 10:30:10 +02:00
print '</td>';
print '</tr>';
2022-09-29 14:28:58 +02:00
// Allow online signing
print '<tr class="oddeven">';
print '<td>'.$langs->trans("AllowOnlineSign").'</td>';
print '<td class="center">';
2022-12-08 18:57:58 +01:00
if (getDolGlobalString('CONTRACT_ALLOW_ONLINESIGN')) {
2022-09-29 14:28:58 +02:00
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=allowonlinesign&token='.newToken().'&value=0">';
print img_picto($langs->trans("Activited"), 'switch_on');
print '</a>';
} else {
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=allowonlinesign&token='.newToken().'&value=1">';
print img_picto($langs->trans("Disabled"), 'switch_off');
print '</a>';
}
print '</td>';
print '</tr>';
// Allow external download
print '<tr class="oddeven">';
print '<td>'.$langs->trans("AllowExternalDownload").'</td>';
print '<td class="center" colspan="2">';
print ajax_constantonoff('CONTRACT_ALLOW_EXTERNAL_DOWNLOAD', array(), null, 0, 0, 0, 2, 0, 1);
2022-09-29 14:28:58 +02:00
print '</td>';
print '</tr>';
2019-04-16 16:16:37 +02:00
print '</table>';
print '</div>';
2019-04-16 16:16:37 +02:00
print $form->buttonsSaveCancel("Save", '');
print '</form>';
2020-10-27 18:19:31 +01:00
print dol_get_fiche_end();
2018-07-28 17:26:56 +02:00
// End of page
llxFooter();
2014-12-11 14:26:34 +01:00
$db->close();