123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- <?php
- /* Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2022 Alice Adminson <aadminson@example.com>
- *
- * 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
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file bookcal/admin/setup.php
- * \ingroup bookcal
- * \brief BookCal setup page.
- */
- // Load Dolibarr environment
- require '../../main.inc.php';
- global $langs, $user;
- // Libraries
- require_once DOL_DOCUMENT_ROOT."/core/lib/admin.lib.php";
- require_once '../lib/bookcal.lib.php';
- //require_once "../class/myclass.class.php";
- // Translations
- $langs->loadLangs(array("admin", "agenda"));
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('bookcalsetup', 'globalsetup'));
- // Access control
- if (!$user->admin) {
- accessforbidden();
- }
- // Parameters
- $action = GETPOST('action', 'aZ09');
- $backtopage = GETPOST('backtopage', 'alpha');
- $modulepart = GETPOST('modulepart', 'aZ09'); // Used by actions_setmoduleoptions.inc.php
- $value = GETPOST('value', 'alpha');
- $label = GETPOST('label', 'alpha');
- $scandir = GETPOST('scan_dir', 'alpha');
- $type = 'myobject';
- $error = 0;
- $setupnotempty = 0;
- // Set this to 1 to use the factory to manage constants. Warning, the generated module will be compatible with version v15+ only
- $useFormSetup = 1;
- if (!class_exists('FormSetup')) {
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formsetup.class.php';
- }
- $formSetup = new FormSetup($db);
- // Setup conf BOOKCAL_PUBLIC_INTERFACE_TOPIC
- $item = $formSetup->newItem('BOOKCAL_PUBLIC_INTERFACE_TOPIC');
- $item->defaultFieldValue = 'MyBigCompany public interface for Bookcal';
- /*// Setup conf BOOKCAL_MYPARAM8
- $item = $formSetup->newItem('BOOKCAL_MYPARAM8');
- $TField = array(
- 'test01' => $langs->trans('test01'),
- 'test02' => $langs->trans('test02'),
- 'test03' => $langs->trans('test03'),
- 'test04' => $langs->trans('test04'),
- 'test05' => $langs->trans('test05'),
- 'test06' => $langs->trans('test06'),
- );
- $item->setAsMultiSelect($TField);
- $item->helpText = $langs->transnoentities('BOOKCAL_MYPARAM8');
- // Setup conf BOOKCAL_MYPARAM9
- $formSetup->newItem('BOOKCAL_MYPARAM9')->setAsSelect($TField);
- // Setup conf BOOKCAL_MYPARAM10
- $item = $formSetup->newItem('BOOKCAL_MYPARAM10');
- $item->setAsColor();
- $item->defaultFieldValue = '#FF0000';
- $item->nameText = $item->getNameText().' more html text ';
- $item->fieldInputOverride = '';
- $item->helpText = $langs->transnoentities('AnHelpMessage');*/
- //$item->fieldValue = '';
- //$item->fieldAttr = array() ; // fields attribute only for compatible fields like input text
- //$item->fieldOverride = false; // set this var to override field output will override $fieldInputOverride and $fieldOutputOverride too
- //$item->fieldInputOverride = false; // set this var to override field input
- //$item->fieldOutputOverride = false; // set this var to override field output
- $setupnotempty =+ count($formSetup->items);
- $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
- /*
- * Actions
- */
- // For retrocompatibility Dolibarr < 15.0
- if (versioncompare(explode('.', DOL_VERSION), array(15)) < 0 && $action == 'update' && !empty($user->admin)) {
- $formSetup->saveConfFromPost();
- }
- include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
- if ($action == 'updateMask') {
- $maskconst = GETPOST('maskconst', 'aZ09');
- $maskvalue = GETPOST('maskvalue', 'alpha');
- if ($maskconst && preg_match('/_MASK$/', $maskconst)) {
- $res = dolibarr_set_const($db, $maskconst, $maskvalue, 'chaine', 0, '', $conf->entity);
- if (!($res > 0)) {
- $error++;
- }
- }
- if (!$error) {
- setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
- } else {
- setEventMessages($langs->trans("Error"), null, 'errors');
- }
- } elseif ($action == 'specimen') {
- $modele = GETPOST('module', 'alpha');
- $tmpobjectkey = GETPOST('object');
- $tmpobject = new $tmpobjectkey($db);
- $tmpobject->initAsSpecimen();
- // Search template files
- $file = '';
- $classname = '';
- $filefound = 0;
- $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
- foreach ($dirmodels as $reldir) {
- $file = dol_buildpath($reldir."core/modules/bookcal/doc/pdf_".$modele."_".strtolower($tmpobjectkey).".modules.php", 0);
- if (file_exists($file)) {
- $filefound = 1;
- $classname = "pdf_".$modele."_".strtolower($tmpobjectkey);
- break;
- }
- }
- if ($filefound) {
- require_once $file;
- $module = new $classname($db);
- if ($module->write_file($tmpobject, $langs) > 0) {
- header("Location: ".DOL_URL_ROOT."/document.php?modulepart=bookcal-".strtolower($tmpobjectkey)."&file=SPECIMEN.pdf");
- return;
- } else {
- setEventMessages($module->error, null, 'errors');
- dol_syslog($module->error, LOG_ERR);
- }
- } else {
- setEventMessages($langs->trans("ErrorModuleNotFound"), null, 'errors');
- dol_syslog($langs->trans("ErrorModuleNotFound"), LOG_ERR);
- }
- } elseif ($action == 'setmod') {
- // TODO Check if numbering module chosen can be activated by calling method canBeActivated
- $tmpobjectkey = GETPOST('object');
- if (!empty($tmpobjectkey)) {
- $constforval = 'BOOKCAL_'.strtoupper($tmpobjectkey)."_ADDON";
- dolibarr_set_const($db, $constforval, $value, 'chaine', 0, '', $conf->entity);
- }
- } elseif ($action == 'set') {
- // Activate a model
- $ret = addDocumentModel($value, $type, $label, $scandir);
- } elseif ($action == 'del') {
- $ret = delDocumentModel($value, $type);
- if ($ret > 0) {
- $tmpobjectkey = GETPOST('object');
- if (!empty($tmpobjectkey)) {
- $constforval = 'BOOKCAL_'.strtoupper($tmpobjectkey).'_ADDON_PDF';
- if ($conf->global->$constforval == "$value") {
- dolibarr_del_const($db, $constforval, $conf->entity);
- }
- }
- }
- } elseif ($action == 'setdoc') {
- // Set or unset default model
- $tmpobjectkey = GETPOST('object');
- if (!empty($tmpobjectkey)) {
- $constforval = 'BOOKCAL_'.strtoupper($tmpobjectkey).'_ADDON_PDF';
- if (dolibarr_set_const($db, $constforval, $value, 'chaine', 0, '', $conf->entity)) {
- // The constant that was read before the new set
- // We therefore requires a variable to have a coherent view
- $conf->global->$constforval = $value;
- }
- // We disable/enable the document template (into llx_document_model table)
- $ret = delDocumentModel($value, $type);
- if ($ret > 0) {
- $ret = addDocumentModel($value, $type, $label, $scandir);
- }
- }
- } elseif ($action == 'unsetdoc') {
- $tmpobjectkey = GETPOST('object');
- if (!empty($tmpobjectkey)) {
- $constforval = 'BOOKCAL_'.strtoupper($tmpobjectkey).'_ADDON_PDF';
- dolibarr_del_const($db, $constforval, $conf->entity);
- }
- }
- /*
- * View
- */
- $form = new Form($db);
- $help_url = '';
- $page_name = "BookCalSetup";
- llxHeader('', $langs->trans($page_name), $help_url);
- // Subheader
- $linkback = '<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1').'">'.$langs->trans("BackToModuleList").'</a>';
- print load_fiche_titre($langs->trans($page_name), $linkback, 'title_setup');
- // Configuration header
- $head = bookcalAdminPrepareHead();
- print dol_get_fiche_head($head, 'settings', $langs->trans($page_name), -1, "fa-calendar-check");
- // Setup page goes here
- //echo '<span class="opacitymedium">'.$langs->trans("BookCalSetupPage").'</span><br><br>';
- if ($action == 'edit') {
- print $formSetup->generateOutput(true);
- print '<br>';
- } elseif (!empty($formSetup->items)) {
- print $formSetup->generateOutput();
- print '<div class="tabsAction">';
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&token='.newToken().'">'.$langs->trans("Modify").'</a>';
- print '</div>';
- } else {
- print '<br>'.$langs->trans("NothingToSetup");
- }
- if (empty($setupnotempty)) {
- print '<br>'.$langs->trans("NothingToSetup");
- }
- // Page end
- print dol_get_fiche_end();
- llxFooter();
- $db->close();
|