dolibarr  16.0.5
resource.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2016 Florian HENRY <florian.henry@atm-consulting.fr>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  *
17  */
18 
25 require '../main.inc.php';
26 
27 // Class
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/resource.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/resource/class/html.formresource.class.php';
32 
33 // Load translation files required by the page
34 $langs->loadLangs(array("admin", "resource"));
35 
36 // Security check
37 if (!$user->admin) {
39 }
40 
41 $action = GETPOST('action', 'aZ09');
42 
43 
44 /*
45  * Actions
46  */
47 
48 if ($action == 'updateoptions') {
49  if (GETPOST('activate_RESOURCE_USE_SEARCH_TO_SELECT') != '') {
50  if (dolibarr_set_const($db, "RESOURCE_USE_SEARCH_TO_SELECT", GETPOST('activate_RESOURCE_USE_SEARCH_TO_SELECT'), 'chaine', 0, '', $conf->entity)) {
51  setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
52  } else {
53  setEventMessages($langs->trans("Error"), null, 'errors');
54  }
55  }
56 }
57 
58 /*
59  * View
60  */
61 
62 llxHeader('', $langs->trans('ResourceSetup'));
63 
64 $form = new Form($db);
65 
66 $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
67 print load_fiche_titre($langs->trans('ResourceSetup'), $linkback, 'title_setup');
68 
70 
71 print dol_get_fiche_head($head, 'general', $langs->trans("ResourceSingular"), -1, 'action');
72 
73 print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
74 print '<input type="hidden" name="token" value="'.newToken().'">';
75 print '<input type="hidden" name="action" value="updateoptions">';
76 
77 print '<div class="div-table-responsive-no-min">';
78 print '<table class="noborder centpercent">';
79 print '<tr class="liste_titre">';
80 print '<td>'.$langs->trans("Parameters").'</td>'."\n";
81 print '<td class="right">'.$langs->trans("Value").'</td>'."\n";
82 print '<td></td>';
83 
84 
85 // Utilisation formulaire Ajax sur choix produit
86 print '<tr class="oddeven">';
87 print '<td width="80%">'.$langs->trans("UseSearchToSelectResource").'</td>';
88 if (empty($conf->use_javascript_ajax)) {
89  print '<td class="nowrap right" colspan="2">';
90  print $langs->trans("NotAvailableWhenAjaxDisabled");
91  print '</td>';
92 } else {
93  print '<td width="60" class="right">';
94  $arrval = array(
95  '0'=>$langs->trans("No"),
96  '1'=>$langs->trans("Yes").' ('.$langs->trans("NumberOfKeyToSearch", 1).')',
97  '2'=>$langs->trans("Yes").' ('.$langs->trans("NumberOfKeyToSearch", 2).')',
98  '3'=>$langs->trans("Yes").' ('.$langs->trans("NumberOfKeyToSearch", 3).')',
99  );
100  print $form->selectarray("activate_RESOURCE_USE_SEARCH_TO_SELECT", $arrval, $conf->global->RESOURCE_USE_SEARCH_TO_SELECT);
101  print '</td>';
102  print '<td class="right">';
103  print '<input type="submit" class="button small" name="RESOURCE_USE_SEARCH_TO_SELECT" value="'.$langs->trans("Modify").'">';
104  print '</td>';
105 }
106 print '</tr>';
107 
108 
109 print '<tr class="oddeven">';
110 print '<td>'.$langs->trans('EnableResourceUsedInEventCheck').'</td>';
111 print '<td class="right">';
112 echo ajax_constantonoff('RESOURCE_USED_IN_EVENT_CHECK');
113 print '</td>';
114 print '<td></td>';
115 print '</tr>';
116 
117 /*
118 print '<tr class="oddeven">';
119 print '<td>'.$langs->trans('DisabledResourceLinkUser').'</td>';
120 print '<td class="right">';
121 echo ajax_constantonoff('RESOURCE_HIDE_ADD_CONTACT_USER');
122 print '</td>';
123 print '<td></td>';
124 print '</tr>';
125 
126 
127 print '<tr class="oddeven">';
128 print '<td>'.$langs->trans('DisabledResourceLinkContact').'</td>';
129 print '<td class="right">';
130 echo ajax_constantonoff('RESOURCE_HIDE_ADD_CONTACT_THIPARTY');
131 print '</td>';
132 print '<td></td>';
133 print '</tr>';
134 */
135 
136 print '</table>';
137 print '</div>';
138 
139 print '</form>';
140 
141 
142 //RESOURCE_HIDE_ADD_CONTACT_USER
143 //RESOURCE_HIDE_ADD_CONTACT_THIPARTY
144 
145 print dol_get_fiche_end();
146 
147 // End of page
148 llxFooter();
149 $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
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
resource_admin_prepare_head
resource_admin_prepare_head()
Prepare head for admin tabs.
Definition: resource.lib.php:112
ajax_constantonoff
ajax_constantonoff($code, $input=array(), $entity=null, $revertonoff=0, $strict=0, $forcereload=0, $marginleftonlyshort=2, $forcenoajax=0, $setzeroinsteadofdel=0, $suffix='', $mode='')
On/off button for constant.
Definition: ajax.lib.php:573
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
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
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
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