33require
'../main.inc.php';
43require_once DOL_DOCUMENT_ROOT.
'/core/lib/usergroups.lib.php';
44require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
47$langs->loadLangs(array(
'admin',
'members',
'users'));
49$action =
GETPOST(
'action',
'aZ09');
50$backtopage =
GETPOST(
'backtopage',
'alpha');
51$modulepart =
GETPOST(
'modulepart',
'aZ09');
53$value =
GETPOST(
'value',
'alpha');
54$label =
GETPOST(
'label',
'alpha');
56$scandir =
GETPOST(
'scandir',
'alpha');
59if (empty($user->admin)) {
68include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
72if ($action ==
'set_default') {
75} elseif ($action ==
'del_default') {
83} elseif ($action ==
'setdoc') {
88 $conf->global->USER_ADDON_PDF_ODT = $value;
97} elseif ($action ==
'unsetdoc') {
100} elseif (preg_match(
'/set_([a-z0-9_\-]+)/i', $action, $reg)) {
103 header(
"Location: ".$_SERVER[
"PHP_SELF"]);
108} elseif (preg_match(
'/del_([a-z0-9_\-]+)/i', $action, $reg)) {
111 header(
"Location: ".$_SERVER[
"PHP_SELF"]);
116} elseif ($action ==
'sethideinactiveuser') {
118 $status =
GETPOST(
'status',
'alpha');
121 header(
"Location: ".$_SERVER[
"PHP_SELF"]);
135dol_mkdir(DOL_DATA_ROOT.
'/doctemplates/users');
136dol_mkdir(DOL_DATA_ROOT.
'/doctemplates/usergroups');
138$help_url =
'EN:Module_Users|FR:Module_Utilisateurs|ES:Módulo_Usuarios';
139llxHeader(
'', $langs->trans(
"UsersSetup"), $help_url,
'', 0, 0,
'',
'',
'',
'mod-admin page-user');
141$linkback =
'<a href="'.dolBuildUrl(DOL_URL_ROOT.
'/admin/modules.php', [
'restore_lastsearch_values' => 1]).
'">'.
img_picto($langs->trans(
"BackToModuleList"),
'back',
'class="pictofixedwidth"').
'<span class="hideonsmartphone">'.$langs->trans(
"BackToModuleList").
'</span></a>';
143print
load_fiche_titre($langs->trans(
"UsersSetup"), $linkback,
'title_setup');
148print
dol_get_fiche_head($head,
'card', $langs->trans(
"MenuUsersAndGroups"), -1,
'user');
152print
'<div class="div-table-responsive-no-min">';
153print
'<table class="noborder centpercent">';
154print
'<tr class="liste_titre">';
155print
'<td>'.$langs->trans(
"Parameter").
'</td>';
156print
'<td align="center" width="20"> </td>';
157print
'<td align="center" width="100"></td>'.
"\n";
163print
'<tr class="oddeven">';
164print
'<td>'.$langs->trans(
"UserMailRequired").
'</td>';
165print
'<td class="center" width="20"> </td>';
167print
'<td class="center" width="100">';
168if (
$conf->use_javascript_ajax) {
169 print ajax_constantonoff(
'USER_MAIL_REQUIRED');
172 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_USER_MAIL_REQUIRED&token='.newToken().
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
174 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=del_USER_MAIL_REQUIRED&token='.newToken().
'">'.
img_picto($langs->trans(
"Enabled"),
'on').
'</a>';
181print
'<tr class="oddeven">';
182print
'<td>'.$langs->trans(
"UserHideInactive").
'</td>';
183print
'<td class="center" width="20"> </td>';
185print
'<td class="center" width="100">';
186if (
$conf->use_javascript_ajax) {
187 print ajax_constantonoff(
'USER_HIDE_INACTIVE_IN_COMBOBOX');
190 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_USER_HIDE_INACTIVE_IN_COMBOBOX&token='.newToken().
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
192 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=del_USER_HIDE_INACTIVE_IN_COMBOBOX&token='.newToken().
'">'.
img_picto($langs->trans(
"Enabled"),
'on').
'</a>';
204$dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
209$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
210$sql .=
" WHERE type = '".$db->escape($type).
"'";
211$sql .=
" AND entity = ".((int)
$conf->entity);
212$resql =
$db->query($sql);
215 $num_rows =
$db->num_rows($resql);
216 while ($i < $num_rows) {
217 $array =
$db->fetch_array($resql);
218 if (is_array($array)) {
219 array_push($def, $array[0]);
229print
'<div class="div-table-responsive-no-min">';
230print
'<table class="noborder centpercent">';
231print
'<tr class="liste_titre">';
232print
'<td>'.$langs->trans(
"Name").
'</td>';
233print
'<td>'.$langs->trans(
"Description").
'</td>';
234print
'<td align="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
235print
'<td align="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
236print
'<td align="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
237print
'<td align="center" width="80">'.$langs->trans(
"Preview").
'</td>';
242foreach ($dirmodels as $reldir) {
243 foreach (array(
'',
'/doc') as $valdir) {
246 $handle = opendir($dir);
247 if (is_resource($handle)) {
249 while (($file = readdir($handle)) !==
false) {
255 foreach ($filelist as $file) {
256 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
257 if (file_exists($dir.
'/'.$file)) {
258 $name = substr($file, 4,
dol_strlen($file) - 16);
259 $classname = substr($file, 0,
dol_strlen($file) - 12);
261 require_once $dir.
'/'.$file;
262 $module =
new $classname(
$db);
263 '@phan-var-force ModelePDFUser $module';
266 $modulequalified = 1;
267 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
268 $modulequalified = 0;
270 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
271 $modulequalified = 0;
274 if ($modulequalified) {
275 print
'<tr class="oddeven"><td width="100">';
276 print(empty($module->name) ? $name : $module->
name);
278 if (method_exists($module,
'info')) {
279 print $module->info($langs);
281 print $module->description;
286 if (in_array($name, $def)) {
287 print
'<td class="center">'.
"\n";
288 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=del_default&token='.newToken().
'&value='.urlencode($name).
'">';
289 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
293 print
'<td class="center">'.
"\n";
294 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=set_default&token='.newToken().
'&value='.urlencode($name).
'&scandir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">';
295 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
301 print
'<td class="center">';
304 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=unsetdoc&token='.newToken().
'&value='.urlencode($name).
'&scandir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Default"),
'on').
'</a>';
306 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.newToken().
'&value='.urlencode($name).
'&scandir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
311 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
312 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
313 if ($module->type ==
'pdf') {
314 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
316 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
317 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
318 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
321 print
'<td class="center">';
322 print $form->textwithpicto(
'', $htmltooltip, 1,
'info');
326 print
'<td class="center">';
327 if ($module->type ==
'pdf') {
328 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
330 print
img_object($langs->transnoentitiesnoconv(
"PreviewNotAvailable"),
'generic');
addDocumentModel($name, $type, $label='', $description='')
Add document model used by doc generator.
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).
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
delDocumentModel($name, $type)
Delete document model used by doc generator.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
$conf db name
Only used if Module[ID]Name translation string is not found.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
user_admin_prepare_head()
Prepare array with list of tabs.