31 require
'../main.inc.php';
32 require_once DOL_DOCUMENT_ROOT.
'/core/lib/usergroups.lib.php';
33 require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
34 require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
37 $langs->loadLangs(array(
'admin',
'members',
'users'));
42 $action =
GETPOST(
'action',
'aZ09');
43 $backtopage =
GETPOST(
'backtopage',
'alpha');
45 $value =
GETPOST(
'value',
'alpha');
46 $label =
GETPOST(
'label',
'alpha');
47 $scandir =
GETPOST(
'scandir',
'alpha');
55 include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
57 if ($action ==
'set_default')
61 } elseif ($action ==
'del_default')
66 if ($conf->global->USER_ADDON_PDF_ODT ==
"$value")
dolibarr_del_const($db,
'USER_ADDON_PDF_ODT', $conf->entity);
72 elseif ($action ==
'setdoc')
74 if (
dolibarr_set_const($db,
"USER_ADDON_PDF_ODT", $value,
'chaine', 0,
'', $conf->entity))
78 $conf->global->USER_ADDON_PDF_ODT = $value;
88 } elseif (preg_match(
'/set_([a-z0-9_\-]+)/i', $action, $reg))
93 header(
"Location: ".
$_SERVER[
"PHP_SELF"]);
98 } elseif (preg_match(
'/del_([a-z0-9_\-]+)/i', $action, $reg))
103 header(
"Location: ".
$_SERVER[
"PHP_SELF"]);
110 elseif ($action ==
'sethideinactiveuser')
112 $status =
GETPOST(
'status',
'alpha');
114 if (
dolibarr_set_const($db,
"USER_HIDE_INACTIVE_IN_COMBOBOX", $status,
'chaine', 0,
'', $conf->entity) > 0)
116 header(
"Location: ".
$_SERVER[
"PHP_SELF"]);
127 $form =
new Form($db);
129 $help_url =
'EN:Module_Users|FR:Module_Utilisateurs|ES:Módulo_Usuarios';
130 llxHeader(
'', $langs->trans(
"UsersSetup"), $help_url);
132 $linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
140 print '<table class="noborder centpercent">';
141 print
'<tr class="liste_titre">';
142 print
'<td>'.$langs->trans(
"Parameter").
'</td>';
143 print
'<td align="center" width="20"> </td>';
144 print
'<td align="center" width="100">'.$langs->trans(
"Value").
'</td>'.
"\n";
150 print
'<tr class="oddeven">';
151 print
'<td>'.$langs->trans(
"UserMailRequired").
'</td>';
152 print
'<td align="center" width="20"> </td>';
154 print
'<td align="center" width="100">';
155 if ($conf->use_javascript_ajax)
159 if (empty($conf->global->USER_MAIL_REQUIRED))
161 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_USER_MAIL_REQUIRED&token='.
newToken().
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
163 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=del_USER_MAIL_REQUIRED&token='.
newToken().
'">'.
img_picto($langs->trans(
"Enabled"),
'on').
'</a>';
170 print
'<tr class="oddeven">';
171 print
'<td>'.$langs->trans(
"UserHideInactive").
'</td>';
172 print
'<td align="center" width="20"> </td>';
174 print
'<td align="center" width="100">';
175 if ($conf->use_javascript_ajax)
179 if (empty($conf->global->USER_HIDE_INACTIVE_IN_COMBOBOX))
181 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_USER_HIDE_INACTIVE_IN_COMBOBOX">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
183 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=del_USER_HIDE_INACTIVE_IN_COMBOBOX">'.
img_picto($langs->trans(
"Enabled"),
'on').
'</a>';
192 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
197 $sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
198 $sql .=
" WHERE type = '".$db->escape($type).
"'";
199 $sql .=
" AND entity = ".$conf->entity;
200 $resql = $db->query($sql);
204 $num_rows = $db->num_rows(
$resql);
205 while ($i < $num_rows)
207 $array = $db->fetch_array(
$resql);
208 array_push($def, $array[0]);
217 print
'<table class="noborder centpercent">';
218 print
'<tr class="liste_titre">';
219 print
'<td>'.$langs->trans(
"Name").
'</td>';
220 print
'<td>'.$langs->trans(
"Description").
'</td>';
221 print
'<td align="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
222 print
'<td align="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
223 print
'<td align="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
224 print
'<td align="center" width="80">'.$langs->trans(
"Preview").
'</td>';
229 foreach ($dirmodels as $reldir)
231 foreach (array(
'',
'/doc') as $valdir)
236 $handle = opendir($dir);
237 if (is_resource($handle))
239 while (($file = readdir($handle)) !==
false)
246 foreach ($filelist as $file)
248 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file))
250 if (file_exists($dir.
'/'.$file))
252 $name = substr($file, 4,
dol_strlen($file) - 16);
253 $classname = substr($file, 0,
dol_strlen($file) - 12);
255 require_once $dir.
'/'.$file;
256 $module =
new $classname($db);
258 $modulequalified = 1;
259 if ($module->version ==
'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) $modulequalified = 0;
260 if ($module->version ==
'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) $modulequalified = 0;
262 if ($modulequalified)
264 print
'<tr class="oddeven"><td width="100">';
265 print (empty($module->name) ? $name : $module->name);
267 if (method_exists($module,
'info')) print $module->info($langs);
268 else print $module->description;
272 if (in_array($name, $def))
274 print
'<td class="center">'.
"\n";
275 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=del_default&token='.
newToken().
'&value='.$name.
'">';
276 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
280 print
'<td class="center">'.
"\n";
281 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=set_default&token='.
newToken().
'&value='.$name.
'&scandir='.$module->scandir.
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
286 print
'<td class="center">';
287 if ($conf->global->USER_ADDON_PDF == $name)
289 print
img_picto($langs->trans(
"Default"),
'on');
291 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.
newToken().
'&value='.$name.
'&scandir='.$module->scandir.
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
296 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
297 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
298 if ($module->type ==
'pdf')
300 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
302 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
303 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
304 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
307 print
'<td class="center">';
308 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
312 print
'<td class="center">';
313 if ($module->type ==
'pdf')
315 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
317 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
delDocumentModel($name, $type)
Delete document model used by doc generator.
yn($yesno, $case=1, $color=0)
Return yes or no in current language.
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).
addDocumentModel($name, $type, $label= '', $description= '')
Add document model used by doc generator.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
load_fiche_titre($titre, $morehtmlright= '', $picto= 'generic', $pictoisfullpath=0, $id= '', $morecssontable= '', $morehtmlcenter= '')
Load a title with picto.
dol_strlen($string, $stringencoding= 'UTF-8')
Make a strlen call.
dolibarr_del_const($db, $name, $entity=1)
Effacement d'une constante dans la base de donnees.
img_picto($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt= '', $morecss= '', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
ajax_constantonoff($code, $input=array(), $entity=null, $revertonoff=0, $strict=0, $forcereload=0, $marginleftonlyshort=2, $forcenoajax=0)
On/off button for constant.
img_object($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
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 ...
print $_SERVER["PHP_SELF"]
Edit parameters.
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
user_admin_prepare_head()
Prepare array with list of tabs.