27require
'../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/mrp/class/mo.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/mrp/lib/mrp_mo.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/mrp/lib/mrp.lib.php';
44$langs->loadLangs(array(
'admin',
'errors',
'mrp',
'other'));
50$action =
GETPOST(
'action',
'aZ09');
51$value =
GETPOST(
'value',
'alpha');
52$modulepart =
GETPOST(
'modulepart',
'aZ09');
54$label =
GETPOST(
'label',
'alpha');
55$scandir =
GETPOST(
'scan_dir',
'alpha');
64include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
66if ($action ==
'updateMask') {
67 $maskconstmrp =
GETPOST(
'maskconstMo',
'aZ09');
68 $maskmrp =
GETPOST(
'maskMo',
'alpha');
72 if ($maskconstmrp && preg_match(
'/_MASK$/', $maskconstmrp)) {
85} elseif ($action ==
'specimen') {
86 $modele =
GETPOST(
'module',
'alpha');
89 $mo->initAsSpecimen();
94 $dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
95 foreach ($dirmodels as $reldir) {
96 $file =
dol_buildpath($reldir.
"core/modules/mrp/doc/pdf_".$modele.
".modules.php", 0);
97 if (file_exists($file)) {
98 $classname =
"pdf_".$modele;
103 if ($classname !==
'') {
106 $module =
new $classname($db);
107 '@phan-var-force ModelePDFMo $module';
109 if ($module->write_file($mo, $langs) > 0) {
110 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=mrp&file=SPECIMEN.pdf");
118 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
120} elseif ($action ==
'set') {
123} elseif ($action ==
'del') {
126 if (
$conf->global->MRP_MO_ADDON_PDF ==
"$value") {
130} elseif ($action ==
'setdoc') {
135 $conf->global->MRP_MO_ADDON_PDF = $value;
143} elseif ($action ==
'setmod') {
148} elseif ($action ==
'set_MRP_MO_DRAFT_WATERMARK') {
149 $draft =
GETPOST(
"MRP_MO_DRAFT_WATERMARK");
161} elseif ($action ==
'set_MRP_MO_FREE_TEXT') {
162 $freetext =
GETPOST(
"MRP_MO_FREE_TEXT",
'restricthtml');
182$form =
new Form($db);
184$dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
186llxHeader(
"", $langs->trans(
"MrpSetupPage"),
'',
'', 0, 0,
'',
'',
'',
'mod-admin page-mrp');
188$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
189print
load_fiche_titre($langs->trans(
"MrpSetupPage"), $linkback,
'title_setup');
201print
'<table class="noborder centpercent">';
202print
'<tr class="liste_titre">';
203print
'<td>'.$langs->trans(
"Name").
'</td>';
204print
'<td>'.$langs->trans(
"Description").
'</td>';
205print
'<td class="nowrap">'.$langs->trans(
"Example").
'</td>';
206print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
207print
'<td class="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
212foreach ($dirmodels as $reldir) {
216 $handle = opendir($dir);
217 if (is_resource($handle)) {
218 while (($file = readdir($handle)) !==
false) {
219 if (substr($file, 0, 7) ==
'mod_mo_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
220 $file = substr($file, 0,
dol_strlen($file) - 4);
222 require_once $dir.$file.
'.php';
224 $module =
new $file($db);
226 '@phan-var-force ModeleNumRefMos $module';
229 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
232 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
236 if ($module->isEnabled()) {
237 print
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
238 print $module->info($langs);
242 print
'<td class="nowrap">';
243 $tmp = $module->getExample();
244 if (preg_match(
'/^Error/', $tmp)) {
245 $langs->load(
"errors");
246 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
247 } elseif ($tmp ==
'NotConfigured') {
248 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
254 print
'<td class="center">';
255 if (
$conf->global->MRP_MO_ADDON == $file) {
256 print
img_picto($langs->trans(
"Activated"),
'switch_on');
258 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmod&token='.
newToken().
'&value='.urlencode($file).
'">';
259 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
265 $mrp->initAsSpecimen();
269 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
271 $nextval = $module->getNextValue($mysoc, $mrp);
272 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
273 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
275 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
276 $nextval = $langs->trans($nextval);
278 $htmltooltip .= $nextval.
'<br>';
280 $htmltooltip .= $langs->trans($module->error).
'<br>';
284 print
'<td class="center">';
285 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
296print
"</table><br>\n";
308$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
309$sql .=
" WHERE type = '".$db->escape($type).
"'";
310$sql .=
" AND entity = ".$conf->entity;
311$resql = $db->query($sql);
314 $num_rows = $db->num_rows($resql);
315 while ($i < $num_rows) {
316 $array = $db->fetch_array($resql);
317 if (is_array($array)) {
318 array_push($def, $array[0]);
327print
"<table class=\"noborder\" width=\"100%\">\n";
328print
"<tr class=\"liste_titre\">\n";
329print
'<td>'.$langs->trans(
"Name").
'</td>';
330print
'<td>'.$langs->trans(
"Description").
'</td>';
331print
'<td class="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
332print
'<td class="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
333print
'<td class="center" width="38">'.$langs->trans(
"ShortInfo").
'</td>';
334print
'<td class="center" width="38">'.$langs->trans(
"Preview").
'</td>';
339foreach ($dirmodels as $reldir) {
340 foreach (array(
'',
'/doc') as $valdir) {
341 $realpath = $reldir.
"core/modules/mrp".$valdir;
345 $handle = opendir($dir);
346 if (is_resource($handle)) {
348 while (($file = readdir($handle)) !==
false) {
354 foreach ($filelist as $file) {
355 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
356 if (file_exists($dir.
'/'.$file)) {
357 $name = substr($file, 4,
dol_strlen($file) - 16);
358 $classname = substr($file, 0,
dol_strlen($file) - 12);
360 require_once $dir.
'/'.$file;
361 $module =
new $classname($db);
363 '@phan-var-force ModelePDFMo $module';
365 $modulequalified = 1;
366 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
367 $modulequalified = 0;
369 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
370 $modulequalified = 0;
373 if ($modulequalified) {
374 print
'<tr class="oddeven"><td width="100">';
375 print(empty($module->name) ? $name : $module->
name);
377 if (method_exists($module,
'info')) {
378 print $module->info($langs);
380 print $module->description;
385 if (in_array($name, $def)) {
386 print
'<td class="center">'.
"\n";
387 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.
newToken().
'&value='.urlencode($name).
'">';
388 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
392 print
'<td class="center">'.
"\n";
393 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=set&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
398 print
'<td class="center">';
399 if (
$conf->global->MRP_MO_ADDON_PDF == $name) {
400 print
img_picto($langs->trans(
"Default"),
'on');
402 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
407 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
408 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
409 if ($module->type ==
'pdf') {
410 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
412 $htmltooltip .=
'<br>'.$langs->trans(
"Path").
': '.preg_replace(
'/^\//',
'', $realpath).
'/'.$file;
414 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
415 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
416 $htmltooltip .=
'<br>'.$langs->trans(
"WatermarkOnDraftMOs").
': '.
yn($module->option_draft_watermark, 1, 1);
419 print
'<td class="center">';
420 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
424 print
'<td class="center">';
425 if ($module->type ==
'pdf') {
426 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
428 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
450print
'<table class="noborder centpercent">';
451print
'<tr class="liste_titre">';
452print
'<td>'.$langs->trans(
"Parameter").
'</td>';
453print
'<td class="center" width="60">'.$langs->trans(
"Value").
'</td>';
454print
"<td> </td>\n";
458$substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
459$htmltext =
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
460foreach ($substitutionarray as $key => $val) {
461 $htmltext .= $key.
'<br>';
465print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
466print
'<input type="hidden" name="token" value="'.newToken().
'">';
467print
'<input type="hidden" name="action" value="set_MRP_MO_FREE_TEXT">';
468print
'<tr class="oddeven"><td colspan="2">';
469print $form->textwithpicto($langs->trans(
"FreeLegalTextOnMOs"), $langs->trans(
"AddCRIfTooLong").
'<br><br>'.$htmltext, 1,
'help',
'', 0, 2,
'freetexttooltip').
'<br>';
470$variablename =
'MRP_MO_FREE_TEXT';
472 print
'<textarea name="'.$variablename.
'" class="flat" cols="120">'.
getDolGlobalString($variablename).
'</textarea>';
474 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
476 print $doleditor->Create();
478print
'</td><td class="right">';
479print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
485print
"<form method=\"post\" action=\"".$_SERVER[
"PHP_SELF"].
"\">";
486print
'<input type="hidden" name="token" value="'.newToken().
'">';
487print
"<input type=\"hidden\" name=\"action\" value=\"set_MRP_MO_DRAFT_WATERMARK\">";
488print
'<tr class="oddeven"><td>';
489print $form->textwithpicto($langs->trans(
"WatermarkOnDraftMOs"), $htmltext, 1,
'help',
'', 0, 2,
'watermarktooltip').
'<br>';
491print
'<input class="flat minwidth200" type="text" name="MRP_MO_DRAFT_WATERMARK" value="'.dol_escape_htmltag(
getDolGlobalString(
'MRP_MO_DRAFT_WATERMARK')).
'">';
492print
'</td><td class="right">';
493print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
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.
Class to manage a WYSIWYG editor.
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)
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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_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.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
mrpAdminPrepareHead()
Prepare admin pages header.
pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0, $include=null)
Return array of possible substitutions for PDF content (without external module substitutions).
$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.