dolibarr/htdocs/admin/agenda_other.php

408 lines
15 KiB
PHP
Raw Normal View History

2013-04-21 16:01:36 +02:00
<?php
/* Copyright (C) 2008-2016 Laurent Destailleur <eldy@users.sourceforge.net>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2011 Regis Houssin <regis.houssin@inodbox.com>
2017-01-13 16:08:49 +01:00
* Copyright (C) 2011-2017 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
* Copyright (C) 2016 Charlie Benke <charlie@patas-monkey.com>
* Copyright (C) 2017 Open-DSI <support@open-dsi.fr>
2013-04-21 16:01:36 +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
* (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/>.
2013-04-21 16:01:36 +02:00
*/
/**
2013-12-14 01:28:59 +01:00
* \file htdocs/admin/agenda_other.php
2013-04-21 16:01:36 +02:00
* \ingroup agenda
* \brief Autocreate actions for agenda module setup page
*/
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
2021-03-01 19:54:30 +01:00
require_once DOL_DOCUMENT_ROOT.'/core/class/defaultvalues.class.php';
2013-04-21 16:01:36 +02:00
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
2021-02-26 22:04:03 +01:00
}
2013-04-21 16:01:36 +02:00
2018-05-26 18:41:16 +02:00
// Load translation files required by the page
2019-01-31 11:11:56 +01:00
$langs->loadLangs(array('admin', 'other', 'agenda', 'users'));
2013-04-21 16:01:36 +02: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
$param = GETPOST('param', 'alpha');
$cancel = GETPOST('cancel', 'alpha');
$scandir = GETPOST('scan_dir', 'alpha');
2016-07-25 11:30:05 +02:00
$type = 'action';
2013-04-21 16:01:36 +02:00
/*
* Actions
*/
2017-06-01 12:11:45 +02:00
include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
2021-01-21 13:52:23 +01:00
$reg = array();
2021-02-26 22:04:03 +01:00
if (preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) {
$code = $reg[1];
$value = (GETPOST($code, 'alpha') ? GETPOST($code, 'alpha') : 1);
2021-02-26 22:04:03 +01:00
if (dolibarr_set_const($db, $code, $value, 'chaine', 0, '', $conf->entity) > 0) {
2013-04-21 16:01:36 +02:00
Header("Location: ".$_SERVER["PHP_SELF"]);
exit;
2020-05-21 09:35:30 +02:00
} else {
2013-04-21 16:01:36 +02:00
dol_print_error($db);
}
}
2021-02-26 22:04:03 +01:00
if (preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) {
$code = $reg[1];
2021-02-26 22:04:03 +01:00
if (dolibarr_del_const($db, $code, $conf->entity) > 0) {
2013-04-21 16:01:36 +02:00
Header("Location: ".$_SERVER["PHP_SELF"]);
exit;
2020-05-21 09:35:30 +02:00
} else {
2013-04-21 16:01:36 +02:00
dol_print_error($db);
}
}
2021-02-26 22:04:03 +01:00
if ($action == 'set') {
2020-05-11 18:46:54 +02:00
$getDefaultFilter = GETPOST('AGENDA_DEFAULT_FILTER_TYPE');
$defaultfilter = (is_array($getDefaultFilter)) ? implode(',', $getDefaultFilter) : $getDefaultFilter;
dolibarr_set_const($db, 'AGENDA_USE_EVENT_TYPE_DEFAULT', GETPOST('AGENDA_USE_EVENT_TYPE_DEFAULT'), 'chaine', 0, '', $conf->entity);
dolibarr_set_const($db, 'AGENDA_DEFAULT_FILTER_TYPE', $defaultfilter, 'chaine', 0, '', $conf->entity);
dolibarr_set_const($db, 'AGENDA_DEFAULT_FILTER_STATUS', GETPOST('AGENDA_DEFAULT_FILTER_STATUS'), 'chaine', 0, '', $conf->entity);
dolibarr_set_const($db, 'AGENDA_DEFAULT_VIEW', GETPOST('AGENDA_DEFAULT_VIEW'), 'chaine', 0, '', $conf->entity);
2021-03-01 19:54:30 +01:00
$defaultValues = new DefaultValues($db);
$result = $defaultValues->fetchAll('', '', 0, 0, array('t.page'=>'comm/action/card.php', 't.param'=>'complete', 't.user_id'=>'0', 't.type'=>'createform', 't.entity'=>$conf->entity));
if (!is_array($result) && $result < 0) {
2021-03-01 21:00:32 +01:00
setEventMessages($defaultValues->error, $defaultValues->errors, 'errors');
} elseif (count($result) > 0) {
2021-03-01 21:00:32 +01:00
foreach ($result as $defval) {
$defaultValues->id = $defval->id;
2021-03-01 19:54:30 +01:00
$resultDel = $defaultValues->delete($user);
if ($resultDel < 0) {
2021-03-01 21:00:32 +01:00
setEventMessages($defaultValues->error, $defaultValues->errors, 'errors');
2021-03-01 19:54:30 +01:00
}
}
}
$defaultValues->type = 'createform';
$defaultValues->entity = $conf->entity;
$defaultValues->user_id = 0;
$defaultValues->page = 'comm/action/card.php';
$defaultValues->param = 'complete';
$defaultValues->value = GETPOST('AGENDA_EVENT_DEFAULT_STATUS');
$resultCreat = $defaultValues->create($user);
if ($resultCreat < 0) {
2021-03-01 21:00:32 +01:00
setEventMessages($defaultValues->error, $defaultValues->errors, 'errors');
2022-01-17 17:51:03 +01:00
} else {
setEventMessages($langs->trans("RecordSaved"), null, 'mesgs');
2021-03-01 19:54:30 +01:00
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'specimen') { // For orders
$modele = GETPOST('module', 'alpha');
$commande = new CommandeFournisseur($db);
$commande->initAsSpecimen();
$commande->thirdparty = $specimenthirdparty;
// 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/action/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, $commande);
2021-02-26 22:04:03 +01:00
if ($module->write_file($commande, $langs) > 0) {
header("Location: ".DOL_URL_ROOT."/document.php?modulepart=action&file=SPECIMEN.pdf");
return;
} else {
setEventMessages($module->error, $module->errors, 'errors');
dol_syslog($module->error, LOG_ERR);
}
} else {
setEventMessages($langs->trans("ErrorModuleNotFound"), null, 'errors');
dol_syslog($langs->trans("ErrorModuleNotFound"), LOG_ERR);
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'setmodel') {
// Activate a model
//print "sssd".$value;
2016-07-25 11:30:05 +02:00
$ret = addDocumentModel($value, $type, $label, $scandir);
2021-02-26 22:04:03 +01:00
} elseif ($action == 'del') {
2016-07-25 11:30:05 +02:00
$ret = delDocumentModel($value, $type);
2021-02-26 22:04:03 +01:00
if ($ret > 0) {
if ($conf->global->ACTION_EVENT_ADDON_PDF == "$value") {
dolibarr_del_const($db, 'ACTION_EVENT_ADDON_PDF', $conf->entity);
}
2016-07-25 11:30:05 +02:00
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'setdoc') {
// Set default model
if (dolibarr_set_const($db, "ACTION_EVENT_ADDON_PDF", $value, 'chaine', 0, '', $conf->entity)) {
2016-07-25 11:30:05 +02:00
// La constante qui a ete lue en avant du nouveau set
// on passe donc par une variable pour avoir un affichage coherent
$conf->global->ACTION_EVENT_ADDON_PDF = $value;
}
// On active le modele
$ret = delDocumentModel($value, $type);
2021-02-26 22:04:03 +01:00
if ($ret > 0) {
2016-07-25 11:30:05 +02:00
$ret = addDocumentModel($value, $type, $label, $scandir);
}
}
2013-04-21 16:01:36 +02:00
/**
* View
*/
$formactions = new FormActions($db);
$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
2017-08-22 08:12:30 +02:00
$wikihelp = 'EN:Module_Agenda_En|FR:Module_Agenda|ES:Módulo_Agenda';
llxHeader('', $langs->trans("AgendaSetup"), $wikihelp);
2013-04-21 16:01:36 +02:00
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans("AgendaSetup"), $linkback, 'title_setup');
2013-04-21 16:01:36 +02:00
$head = agenda_prepare_head();
2013-04-21 16:01:36 +02:00
2020-10-22 22:50:03 +02:00
print dol_get_fiche_head($head, 'other', $langs->trans("Agenda"), -1, 'action');
2013-04-21 16:01:36 +02:00
2016-07-25 11:30:05 +02:00
/*
* Documents models for supplier orders
*/
// Define array def of models
$def = array();
$sql = "SELECT nom";
$sql .= " FROM ".MAIN_DB_PREFIX."document_model";
$sql .= " WHERE type = 'action'";
$sql .= " AND entity = ".$conf->entity;
2016-07-25 11:30:05 +02:00
$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);
2016-07-25 11:30:05 +02:00
}
2021-02-26 22:04:03 +01:00
if ($conf->global->MAIN_FEATURES_LEVEL >= 2) {
print load_fiche_titre($langs->trans("AgendaModelModule"), '', '');
print '<table class="noborder centpercent">'."\n";
print '<tr class="liste_titre">'."\n";
print '<td width="100">'.$langs->trans("Name").'</td>'."\n";
print '<td>'.$langs->trans("Description").'</td>'."\n";
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="40">'.$langs->trans("ShortInfo").'</td>';
print '<td class="center" width="40">'.$langs->trans("Preview").'</td>';
print '</tr>'."\n";
clearstatcache();
2021-02-26 22:04:03 +01:00
foreach ($dirmodels as $reldir) {
$dir = dol_buildpath($reldir."core/modules/action/doc");
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 (preg_match('/\.modules\.php$/i', $file) && preg_match('/^(pdf_|doc_)/', $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, new ActionComm($db));
print '<tr class="oddeven">'."\n";
print "<td>";
print (empty($module->name) ? $name : $module->name);
print "</td>\n";
print "<td>\n";
require_once $dir.'/'.$file;
$module = new $classname($db, $specimenthirdparty);
2021-02-26 22:04:03 +01:00
if (method_exists($module, 'info')) {
print $module->info($langs);
2021-02-26 22:04:03 +01:00
} else {
print $module->description;
}
print "</td>\n";
// Active
2021-02-26 22:04:03 +01:00
if (in_array($name, $def)) {
print '<td class="center">'."\n";
2021-02-26 22:04:03 +01:00
if ($conf->global->ACTION_EVENT_ADDON_PDF != "$name") {
print '<a href="'.$_SERVER["PHP_SELF"].'?action=del&token='.newToken().'&value='.$name.'&scan_dir='.$module->scandir.'&label='.urlencode($module->name).'&type=action">';
print img_picto($langs->trans("Enabled"), 'switch_on');
print '</a>';
} else {
print img_picto($langs->trans("Enabled"), 'switch_on');
}
print "</td>";
} else {
print '<td class="center">'."\n";
print '<a href="'.$_SERVER["PHP_SELF"].'?action=setmodel&token='.newToken().'&value='.$name.'&scan_dir='.$module->scandir.'&label='.urlencode($module->name).'&type=action">'.img_picto($langs->trans("Disabled"), 'switch_off').'</a>';
print "</td>";
}
// Default
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if ($conf->global->ACTION_EVENT_ADDON_PDF == "$name") {
print img_picto($langs->trans("Default"), 'on');
} else {
print '<a href="'.$_SERVER["PHP_SELF"].'?action=setdoc&token='.newToken().'&value='.urlencode($name).'&amp;scan_dir='.urlencode($module->scandir).'&label='.urlencode($module->name).'&amp;type=action"" 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"));
$htmltooltip .= '<br>'.$langs->trans("Width").'/'.$langs->trans("Height").': '.$module->page_largeur.'/'.$module->page_hauteur;
$htmltooltip .= '<br><br><u>'.$langs->trans("FeaturesSupported").':</u>';
$htmltooltip .= '<br>'.$langs->trans("Logo").': '.yn($module->option_logo, 1, 1);
print '<td class="center">';
print $form->textwithpicto('', $htmltooltip, 1, 0);
print '</td>';
print '<td class="center">';
2020-12-03 13:19:35 +01:00
print '<a href="'.$_SERVER["PHP_SELF"].'?action=specimen&amp;module='.$name.'">'.img_object($langs->trans("Preview"), 'pdf').'</a>';
print '</td>';
print "</tr>\n";
}
}
closedir($handle);
}
}
}
print '</table><br>';
2016-07-25 11:30:05 +02:00
}
print '<form action="'.$_SERVER["PHP_SELF"].'" name="agenda">';
print '<input type="hidden" name="token" value="'.newToken().'">';
2016-07-25 11:30:05 +02:00
print '<input type="hidden" name="action" value="set">';
2013-04-21 16:01:36 +02:00
print '<table class="noborder allwidth">'."\n";
print '<tr class="liste_titre">'."\n";
print '<td>'.$langs->trans("Parameters").'</td>'."\n";
2019-02-23 21:57:35 +01:00
print '<td class="center">&nbsp;</td>'."\n";
2019-01-22 11:37:23 +01:00
print '<td class="right">'.$langs->trans("Value").'</td>'."\n";
2013-04-21 16:01:36 +02:00
print '</tr>'."\n";
2022-01-17 17:51:03 +01:00
// AGENDA_DEFAULT_VIEW
print '<tr class="oddeven">'."\n";
$htmltext = $langs->trans("ThisValueCanOverwrittenOnUserLevel", $langs->transnoentitiesnoconv("UserGUISetup"));
print '<td>'.$form->textwithpicto($langs->trans("AGENDA_DEFAULT_VIEW"), $htmltext).'</td>'."\n";
print '<td class="center">&nbsp;</td>'."\n";
print '<td class="right">'."\n";
$tmplist = array(''=>'&nbsp;', 'show_list'=>$langs->trans("ViewList"), 'show_month'=>$langs->trans("ViewCal"), 'show_week'=>$langs->trans("ViewWeek"), 'show_day'=>$langs->trans("ViewDay"), 'show_peruser'=>$langs->trans("ViewPerUser"));
print $form->selectarray('AGENDA_DEFAULT_VIEW', $tmplist, $conf->global->AGENDA_DEFAULT_VIEW);
print '</td></tr>'."\n";
2013-04-21 16:01:36 +02:00
// Manual or automatic
print '<tr class="oddeven">'."\n";
2013-04-21 16:01:36 +02:00
print '<td>'.$langs->trans("AGENDA_USE_EVENT_TYPE").'</td>'."\n";
2019-02-23 21:57:35 +01:00
print '<td class="center">&nbsp;</td>'."\n";
2019-01-22 11:37:23 +01:00
print '<td class="right">'."\n";
//print ajax_constantonoff('AGENDA_USE_EVENT_TYPE'); Do not use ajax here, we need to reload page to change other combo list
2021-02-26 22:04:03 +01:00
if (empty($conf->global->AGENDA_USE_EVENT_TYPE)) {
print '<a href="'.$_SERVER['PHP_SELF'].'?action=set_AGENDA_USE_EVENT_TYPE&token='.newToken().'">'.img_picto($langs->trans("Disabled"), 'switch_off').'</a>';
2020-05-21 09:35:30 +02:00
} else {
print '<a href="'.$_SERVER['PHP_SELF'].'?action=del_AGENDA_USE_EVENT_TYPE&token='.newToken().'">'.img_picto($langs->trans("Enabled"), 'switch_on').'</a>';
2013-04-21 16:01:36 +02:00
}
print '</td></tr>'."\n";
2021-02-26 22:04:03 +01:00
if (!empty($conf->global->AGENDA_USE_EVENT_TYPE)) {
print '<!-- AGENDA_USE_EVENT_TYPE_DEFAULT -->';
print '<tr class="oddeven">'."\n";
print '<td>'.$langs->trans("AGENDA_USE_EVENT_TYPE_DEFAULT").'</td>'."\n";
print '<td class="center">&nbsp;</td>'."\n";
print '<td class="right nowrap">'."\n";
$formactions->select_type_actions($conf->global->AGENDA_USE_EVENT_TYPE_DEFAULT, "AGENDA_USE_EVENT_TYPE_DEFAULT", 'systemauto', 0, 1);
print '</td></tr>'."\n";
}
2021-03-01 19:54:30 +01:00
// AGENDA_EVENT_DEFAULT_STATUS
print '<tr class="oddeven">'."\n";
print '<td>'.$langs->trans("AGENDA_EVENT_DEFAULT_STATUS").'</td>'."\n";
print '<td class="center">&nbsp;</td>'."\n";
print '<td class="right nowrap">'."\n";
$defval = 'na';
2021-03-01 19:54:30 +01:00
$defaultValues = new DefaultValues($db);
$result = $defaultValues->fetchAll('', '', 0, 0, array('t.page'=>'comm/action/card.php', 't.param'=>'complete', 't.user_id'=>'0', 't.type'=>'createform', 't.entity'=>$conf->entity));
if (!is_array($result) && $result < 0) {
2021-03-01 21:00:32 +01:00
setEventMessages($defaultValues->error, $defaultValues->errors, 'errors');
} elseif (count($result) > 0) {
$defval = reset($result)->value;
2021-03-01 19:54:30 +01:00
}
$formactions->form_select_status_action('agenda', $defval, 1, "AGENDA_EVENT_DEFAULT_STATUS", 0, 1, 'maxwidth200');
print '</td></tr>'."\n";
// AGENDA_DEFAULT_FILTER_TYPE
print '<tr class="oddeven">'."\n";
print '<td>'.$langs->trans("AGENDA_DEFAULT_FILTER_TYPE").'</td>'."\n";
2019-02-23 21:57:35 +01:00
print '<td class="center">&nbsp;</td>'."\n";
print '<td class="right nowrap">'."\n";
2020-05-11 18:46:54 +02:00
$multiselect = 0;
if (!empty($conf->global->MAIN_ENABLE_MULTISELECT_TYPE)) {
// We use an option here because it adds bugs when used on agenda page "peruser" and "list"
$multiselect = (!empty($conf->global->AGENDA_USE_EVENT_TYPE));
2020-05-11 18:46:54 +02:00
}
$formactions->select_type_actions($conf->global->AGENDA_DEFAULT_FILTER_TYPE, "AGENDA_DEFAULT_FILTER_TYPE", '', (empty($conf->global->AGENDA_USE_EVENT_TYPE) ? 1 : -1), 1, $multiselect);
print '</td></tr>'."\n";
// AGENDA_DEFAULT_FILTER_STATUS
2017-09-17 20:48:09 +02:00
// TODO Remove to use the default generic feature
print '<tr class="oddeven">'."\n";
print '<td>'.$langs->trans("AGENDA_DEFAULT_FILTER_STATUS").'</td>'."\n";
2019-02-23 21:57:35 +01:00
print '<td class="center">&nbsp;</td>'."\n";
2019-01-22 11:37:23 +01:00
print '<td class="right">'."\n";
2017-09-17 20:48:09 +02:00
$formactions->form_select_status_action('agenda', $conf->global->AGENDA_DEFAULT_FILTER_STATUS, 1, 'AGENDA_DEFAULT_FILTER_STATUS', 1, 2, 'minwidth100');
print '</td></tr>'."\n";
2013-04-21 16:01:36 +02:00
print '</table>';
2020-10-27 18:19:31 +01:00
print dol_get_fiche_end();
print $form->buttonsSaveCancel("Save", '');
print '</form>';
2013-04-21 16:01:36 +02:00
print "<br>";
2018-07-28 14:29:28 +02:00
// End of page
2013-04-21 16:01:36 +02:00
llxFooter();
$db->close();