33require
'../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/usergroups.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
39$langs->loadLangs(array(
"admin",
"members",
"users"));
46$action =
GETPOST(
'action',
'aZ09');
47$value =
GETPOST(
'value',
'alpha');
48$modulepart =
GETPOST(
'modulepart',
'aZ09');
56include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
58if ($action ==
'set_default') {
61} elseif ($action ==
'del_default') {
69} elseif ($action ==
'setdoc') {
71 if (
dolibarr_set_const($db,
"USERGROUP_ADDON_PDF_ODT", $value,
'chaine', 0,
'', $conf->entity)) {
74 $conf->global->USERGROUP_ADDON_PDF_ODT = $value;
83} elseif (preg_match(
'/set_([a-z0-9_\-]+)/i', $action, $reg)) {
86 header(
"Location: ".$_SERVER[
"PHP_SELF"]);
91} elseif (preg_match(
'/del_([a-z0-9_\-]+)/i', $action, $reg)) {
94 header(
"Location: ".$_SERVER[
"PHP_SELF"]);
104$help_url =
'EN:Module_Users|FR:Module_Utilisateurs|ES:Módulo_Usuarios';
105llxHeader(
'', $langs->trans(
"UsersSetup"), $help_url,
'', 0, 0,
'',
'',
'',
'mod-admin page-usergroup');
107$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
108print
load_fiche_titre($langs->trans(
"UsersSetup"), $linkback,
'title_setup');
113print
dol_get_fiche_head($head,
'usergroupcard', $langs->trans(
"MenuUsersAndGroups"), -1,
'user');
116$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
118$form =
new Form($db);
123$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
124$sql .=
" WHERE type = '".$db->escape($type).
"'";
125$sql .=
" AND entity = ".$conf->entity;
126$resql = $db->query($sql);
129 $num_rows = $db->num_rows($resql);
130 while ($i < $num_rows) {
131 $array = $db->fetch_array($resql);
132 if (is_array($array)) {
133 array_push($def, $array[0]);
143print
'<table class="noborder centpercent">';
144print
'<tr class="liste_titre">';
145print
'<td>'.$langs->trans(
"Name").
'</td>';
146print
'<td>'.$langs->trans(
"Description").
'</td>';
147print
'<td align="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
148print
'<td align="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
149print
'<td align="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
150print
'<td align="center" width="80">'.$langs->trans(
"Preview").
'</td>';
155foreach ($dirmodels as $reldir) {
156 foreach (array(
'',
'/doc') as $valdir) {
157 $dir =
dol_buildpath($reldir.
"core/modules/usergroup".$valdir);
159 $handle = opendir($dir);
160 if (is_resource($handle)) {
162 while (($file = readdir($handle)) !==
false) {
168 foreach ($filelist as $file) {
169 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
170 if (file_exists($dir.
'/'.$file)) {
171 $name = substr($file, 4,
dol_strlen($file) - 16);
172 $classname = substr($file, 0,
dol_strlen($file) - 12);
174 require_once $dir.
'/'.$file;
175 $module =
new $classname($db);
176 '@phan-var-force ModelePDFUserGroup $module';
178 $modulequalified = 1;
179 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
180 $modulequalified = 0;
182 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
183 $modulequalified = 0;
186 if ($modulequalified) {
187 print
'<tr class="oddeven"><td width="100">';
188 print(empty($module->name) ? $name : $module->
name);
190 if (method_exists($module,
'info')) {
191 print $module->info($langs);
193 print $module->description;
198 if (in_array($name, $def)) {
199 print
'<td class="center">'.
"\n";
200 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=del_default&token='.
newToken().
'&value='.urlencode($name).
'">';
201 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
205 print
'<td class="center">'.
"\n";
206 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=set_default&token='.
newToken().
'&value='.urlencode($name).
'&scandir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
211 print
'<td class="center">';
213 print
img_picto($langs->trans(
"Default"),
'on');
215 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>';
220 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
221 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
222 if ($module->type ==
'pdf') {
223 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
225 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
226 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
227 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
230 print
'<td class="center">';
231 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
235 print
'<td class="center">';
236 if ($module->type ==
'pdf') {
237 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
239 print
img_object($langs->trans(
"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.
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.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
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)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
$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.