dolibarr  16.0.5
bookmark.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2005-2009 Laurent Destailleur <eldy@users.sourceforge.org>
4  * Copyright (C) 2011-2012 Juanjo Menent <jmenent@2byte.es>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
25 require '../../main.inc.php';
26 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
27 
28 // Load translation files required by the page
29 $langs->load("admin");
30 
31 if (!$user->admin) {
33 }
34 
35 $action = GETPOST('action', 'aZ09');
36 
37 if ($action == 'setvalue') {
38  $showmenu = GETPOST('BOOKMARKS_SHOW_IN_MENU', 'alpha');
39  $res = dolibarr_set_const($db, "BOOKMARKS_SHOW_IN_MENU", $showmenu, 'chaine', 0, '', $conf->entity);
40 
41  if (!($res > 0)) {
42  $error++;
43  }
44 
45  if (!$error) {
46  $db->commit();
47  setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
48  } else {
49  $db->rollback();
50  setEventMessages($langs->trans("Error"), null, 'errors');
51  }
52 }
53 
54 
55 /*
56  * View
57  */
58 
59 llxHeader();
60 
61 $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
62 print load_fiche_titre($langs->trans("BookmarkSetup"), $linkback, 'title_setup');
63 
64 print $langs->trans("BookmarkDesc")."<br>\n";
65 
66 print '<br>';
67 print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
68 print '<input type="hidden" name="token" value="'.newToken().'">';
69 print '<input type="hidden" name="action" value="setvalue">';
70 
71 print '<table summary="bookmarklist" class="noborder centpercent">';
72 print '<tr class="liste_titre">';
73 print '<td>'.$langs->trans("Name").'</td>';
74 print '<td>'.$langs->trans("Value").'</td>';
75 print "</tr>\n";
76 
77 print '<tr class="oddeven"><td>';
78 print $langs->trans("NbOfBoomarkToShow").'</td><td>';
79 print '<input size="3" type="text" name="BOOKMARKS_SHOW_IN_MENU" value="'.$conf->global->BOOKMARKS_SHOW_IN_MENU.'">';
80 print '</td></tr>';
81 print '</table><br><div class="center"><input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'"></div></form>';
82 
83 // End of page
84 llxFooter();
85 $db->close();
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
load_fiche_titre
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
Definition: functions.lib.php:5204
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
dolibarr_set_const
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
Definition: admin.lib.php:627
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
accessforbidden
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
Definition: security.lib.php:933
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59