123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- <?php
- /* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
- *
- * 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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/defaultvalues.php
- * \brief Page to set default values used used in a create form
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
- $langs->load("companies");
- $langs->load("products");
- $langs->load("admin");
- $langs->load("sms");
- $langs->load("other");
- $langs->load("errors");
- if (!$user->admin) accessforbidden();
- $id=GETPOST('rowid','int');
- $action=GETPOST('action','alpha');
- $mode = GETPOST('mode')?GETPOST('mode'):'createform'; // 'createform', 'filters', 'sortorder', 'focus'
- $limit = GETPOST("limit")?GETPOST("limit","int"):$conf->liste_limit;
- $sortfield = GETPOST("sortfield",'alpha');
- $sortorder = GETPOST("sortorder",'alpha');
- $page = GETPOST("page",'int');
- if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (! $sortfield) $sortfield='page,param';
- if (! $sortorder) $sortorder='ASC';
- $defaulturl = GETPOST('defaulturl');
- $defaultkey = GETPOST('defaultkey','alpha');
- $defaultvalue = GETPOST('defaultvalue');
- $defaulturl=preg_replace('/^\//', '', $defaulturl);
- $urlpage = GETPOST('urlpage');
- $key = GETPOST('key');
- $value = GETPOST('value');
- /*
- * Actions
- */
- if (GETPOST('cancel')) { $action='list'; $massaction=''; }
- if (! GETPOST('confirmmassaction') && $massaction != 'presend' && $massaction != 'confirm_presend') { $massaction=''; }
- $parameters=array('socid'=>$socid);
- $reshook=$hookmanager->executeHooks('doActions',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
- // Purge search criteria
- if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") || GETPOST("button_removefilter")) // All tests are required to be compatible with all browsers
- {
- $defaulturl='';
- $defaultkey='';
- $defaultvalue='';
- $toselect='';
- $search_array_options=array();
- }
- if ($action == 'setMAIN_ENABLE_DEFAULT_VALUES')
- {
- if (GETPOST('value')) dolibarr_set_const($db, 'MAIN_ENABLE_DEFAULT_VALUES', 1, 'chaine', 0, '', $conf->entity);
- else dolibarr_set_const($db, 'MAIN_ENABLE_DEFAULT_VALUES', 0, 'chaine', 0, '', $conf->entity);
- }
- if (($action == 'add' || (GETPOST('add') && $action != 'update')) || GETPOST('actionmodify'))
- {
- $error=0;
- if (($action == 'add' || (GETPOST('add') && $action != 'update')))
- {
- if (empty($defaulturl))
- {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Url")), null, 'errors');
- $error++;
- }
- if (empty($defaultkey))
- {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Field")), null, 'errors');
- $error++;
- }
- }
- if (GETPOST('actionmodify'))
- {
- if (empty($urlpage))
- {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Url")), null, 'errors');
- $error++;
- }
- if (empty($key))
- {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Field")), null, 'errors');
- $error++;
- }
- }
- if (! $error)
- {
- $db->begin();
- if ($action == 'add' || (GETPOST('add') && $action != 'update'))
- {
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."default_values(type, user_id, page, param, value, entity) VALUES ('".$db->escape($mode)."', 0, '".$db->escape($defaulturl)."','".$db->escape($defaultkey)."','".$db->escape($defaultvalue)."', ".$db->escape($conf->entity).")";
- }
- if (GETPOST('actionmodify'))
- {
- $sql = "UPDATE ".MAIN_DB_PREFIX."default_values SET page = '".$db->escape($urlpage)."', param = '".$db->escape($key)."', value = '".$db->escape($value)."'";
- $sql.= " WHERE rowid = ".$id;
- }
- $result = $db->query($sql);
- if ($result > 0)
- {
- $db->commit();
- setEventMessages($langs->trans("RecordSaved"), null, 'mesgs');
- $action="";
- $defaulturl='';
- $defaultkey='';
- $defaultvalue='';
- }
- else
- {
- $db->rollback();
- setEventMessages($db->lasterror(), null, 'errors');
- $action='';
- }
- }
- }
- // Delete line from delete picto
- if ($action == 'delete')
- {
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."default_values WHERE rowid = ".$db->escape($id);
- // Delete const
- $result = $db->query($sql);
- if ($result >= 0)
- {
- setEventMessages($langs->trans("RecordDeleted"), null, 'mesgs');
- }
- else
- {
- dol_print_error($db);
- }
- }
- /*
- * View
- */
- $form=new Form($db);
- $formadmin = new FormAdmin($db);
- $wikihelp='EN:Setup|FR:Paramétrage|ES:Configuración';
- llxHeader('',$langs->trans("Setup"),$wikihelp);
- print load_fiche_titre($langs->trans("DefaultValues"),'','title_setup');
- print $langs->trans("DefaultValuesDesc")."<br>\n";
- print "<br>\n";
- print $langs->trans("EnableDefaultValues").' ';
- if (empty($conf->global->MAIN_ENABLE_DEFAULT_VALUES))
- {
- // Button off, click to enable
- print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setMAIN_ENABLE_DEFAULT_VALUES&value=1">';
- print img_picto($langs->trans("Disabled"),'switch_off');
- print '</a>';
- }
- else
- {
- // Button on, click to disable
- print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setMAIN_ENABLE_DEFAULT_VALUES&value=0">';
- print img_picto($langs->trans("Activated"),'switch_on');
- print '</a>';
- }
- print "<br><br>\n";
- $param='&mode='.$mode;
- if (! empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.$contextpage;
- if ($limit > 0 && $limit != $conf->liste_limit) $param.='&limit='.$limit;
- if ($optioncss != '') $param.='&optioncss='.$optioncss;
- if (defaulturl) $param.='&defaulturl='.urlencode(defaulturl);
- if (defaultkey) $param.='&defaultkey='.urlencode(defaultkey);
- if (defaultvalue) $param.='&defaultvalue='.urlencode(defaultvalue);
- print '<form action="'.$_SERVER["PHP_SELF"].((empty($user->entity) && $debug)?'?debug=1':'').'" method="POST">';
- if ($optioncss != '') print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
- print '<input type="hidden" name="action" value="list">';
- print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
- print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
- print '<input type="hidden" name="page" value="'.$page.'">';
- $head=defaultvalues_prepare_head();
- dol_fiche_head($head, $mode, '', -1, '');
- if ($mode == 'sortorder')
- {
- print info_admin($langs->trans("WarningSettingSortOrder")).'<br>';
- }
- if ($mode == 'focus')
- {
- print info_admin($langs->trans("FeatureNotYetAvailable")).'<br>';
- }
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" id="action" name="action" value="">';
- print '<input type="hidden" id="mode" name="mode" value="'.dol_escape_htmltag($mode).'">';
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- // Page
- $texthelp=$langs->trans("PageUrlForDefaultValues");
- if ($mode == 'createform') $texthelp.=$langs->trans("PageUrlForDefaultValuesCreate", 'societe/card.php');
- else $texthelp.=$langs->trans("PageUrlForDefaultValuesList", 'societe/list.php');
- $texturl=$form->textwithpicto($langs->trans("Url"), $texthelp);
- print_liste_field_titre($texturl,$_SERVER["PHP_SELF"],'page,param','',$param,'',$sortfield,$sortorder);
- // Field
- $texthelp=$langs->trans("TheKeyIsTheNameOfHtmlField");
- if ($mode != 'sortorder')
- {
- $textkey=$form->textwithpicto($langs->trans("Field"), $texthelp);
- }
- else
- {
- $texthelp='field or alias.field';
- $textkey=$form->textwithpicto($langs->trans("Field"), $texthelp);
- }
- print_liste_field_titre($textkey,$_SERVER["PHP_SELF"],'param','',$param,'',$sortfield,$sortorder);
- // Value
- if ($mode != 'focus')
- {
- if ($mode != 'sortorder')
- {
- $substitutionarray=getCommonSubstitutionArray($langs, 0, array('object')); // Must match list into GETPOST
- $substitutionarray['__(AnyTranslationKey)__']=$langs->trans("Translation");
- $texthelp=$langs->trans("FollowingConstantsWillBeSubstituted").'<br>';
- foreach($substitutionarray as $key => $val)
- {
- $texthelp.=$key.'<br>';
- }
- $textvalue=$form->textwithpicto($langs->trans("Value"), $texthelp, 1, 'help', '', 0, 2, ''); // No tooltip on click, this also triggers the sort click
- }
- else
- {
- $texthelp='ASC or DESC';
- $textvalue=$form->textwithpicto($langs->trans("SortOrder"), $texthelp);
- }
- print_liste_field_titre($textvalue, $_SERVER["PHP_SELF"], 'value', '', $param, '', $sortfield, $sortorder);
- }
- // Entity
- if (! empty($conf->multicompany->enabled) && !$user->entity) print_liste_field_titre($langs->trans("Entity"),$_SERVER["PHP_SELF"],'entity,page','',$param,'',$sortfield,$sortorder);
- // Actions
- print '<td align="center"></td>';
- print "</tr>\n";
- // Line to add new record
- print "\n";
- print '<tr class="oddeven">';
- // Page
- print '<td>';
- print '<input type="text" class="flat minwidth200 maxwidthonsmartphone" name="defaulturl" value="">';
- print '</td>'."\n";
- // Field
- print '<td>';
- print '<input type="text" class="flat maxwidth100" name="defaultkey" value="">';
- print '</td>';
- // Value
- if ($mode != 'focus')
- {
- print '<td>';
- print '<input type="text" class="flat maxwidthonsmartphone" name="defaultvalue" value="">';
- print '</td>';
- }
- // Limit to superadmin
- if (! empty($conf->multicompany->enabled) && !$user->entity)
- {
- print '<td>';
- print '<input type="text" class="flat" size="1" name="entity" value="'.$conf->entity.'">';
- print '</td>';
- print '<td align="center">';
- }
- else
- {
- print '<td align="center">';
- print '<input type="hidden" name="entity" value="'.$conf->entity.'">';
- }
- $disabled='';
- if (empty($conf->global->MAIN_ENABLE_DEFAULT_VALUES)) $disabled=' disabled="disabled"';
- print '<input type="submit" class="button"'.$disabled.' value="'.$langs->trans("Add").'" name="add">';
- print "</td>\n";
- print '</tr>';
- // Show constants
- $sql = "SELECT rowid, entity, type, page, param, value";
- $sql.= " FROM ".MAIN_DB_PREFIX."default_values";
- $sql.= " WHERE type = '".$db->escape($mode)."'";
- $sql.= " AND entity IN (".$user->entity.",".$conf->entity.")";
- $sql.= $db->order($sortfield, $sortorder);
- dol_syslog("translation::select from table", LOG_DEBUG);
- $result = $db->query($sql);
- if ($result)
- {
- $num = $db->num_rows($result);
- $i = 0;
- while ($i < $num)
- {
- $obj = $db->fetch_object($result);
- print "\n";
- print '<tr class="oddeven">';
- // Page
- print '<td>';
- if ($action != 'edit' || GETPOST('rowid') != $obj->rowid) print $obj->page;
- else print '<input type="text" name="urlpage" value="'.dol_escape_htmltag($obj->page).'">';
- print '</td>'."\n";
- // Field
- print '<td>';
- if ($action != 'edit' || GETPOST('rowid') != $obj->rowid) print $obj->param;
- else print '<input type="text" name="key" value="'.dol_escape_htmltag($obj->param).'">';
- print '</td>'."\n";
- // Value
- if ($mode != 'focus')
- {
- print '<td>';
- /*print '<input type="hidden" name="const['.$i.'][rowid]" value="'.$obj->rowid.'">';
- print '<input type="hidden" name="const['.$i.'][lang]" value="'.$obj->lang.'">';
- print '<input type="hidden" name="const['.$i.'][name]" value="'.$obj->transkey.'">';
- print '<input type="text" id="value_'.$i.'" class="flat inputforupdate" size="30" name="const['.$i.'][value]" value="'.dol_escape_htmltag($obj->transvalue).'">';
- */
- if ($action != 'edit' || GETPOST('rowid') != $obj->rowid) print $obj->value;
- else print '<input type="text" name="value" value="'.dol_escape_htmltag($obj->value).'">';
- print '</td>';
- }
- // Actions
- print '<td align="center">';
- if ($action != 'edit' || GETPOST('rowid') != $obj->rowid)
- {
- print '<a href="'.$_SERVER['PHP_SELF'].'?rowid='.$obj->rowid.'&entity='.$obj->entity.'&mode='.$mode.'&action=edit'.((empty($user->entity) && $debug)?'&debug=1':'').'">'.img_edit().'</a>';
- print ' ';
- print '<a href="'.$_SERVER['PHP_SELF'].'?rowid='.$obj->rowid.'&entity='.$obj->entity.'&mode='.$mode.'&action=delete'.((empty($user->entity) && $debug)?'&debug=1':'').'">'.img_delete().'</a>';
- }
- else
- {
- print '<input type="hidden" name="page" value="'.$page.'">';
- print '<input type="hidden" name="rowid" value="'.$id.'">';
- print '<div name="'.(! empty($obj->rowid)?$obj->rowid:'none').'"></div>';
- print '<input type="submit" class="button" name="actionmodify" value="'.$langs->trans("Modify").'">';
- print '<input type="submit" class="button" name="actioncancel" value="'.$langs->trans("Cancel").'">';
- }
- print '</td>';
- print "</tr>\n";
- print "\n";
- $i++;
- }
- }
- else
- {
- dol_print_error($db);
- }
- print '</table>';
- dol_fiche_end();
- print "</form>\n";
- llxFooter();
- $db->close();
|