28require 
'../main.inc.php';
 
   29require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
 
   30require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
 
   31require_once DOL_DOCUMENT_ROOT.
'/holiday/class/holiday.class.php';
 
   32require_once DOL_DOCUMENT_ROOT.
'/core/lib/holiday.lib.php';
 
   35$langs->loadLangs(array(
"admin", 
"errors", 
"holiday"));
 
   41$action = 
GETPOST(
'action', 
'aZ09');
 
   42$value = 
GETPOST(
'value', 
'alpha');
 
   43$modulepart = 
GETPOST(
'modulepart', 
'aZ09');  
 
   45$label = 
GETPOST(
'label', 
'alpha');
 
   46$scandir = 
GETPOST(
'scan_dir', 
'alpha');
 
   50  $conf->global->HOLIDAY_ADDON = 
'mod_holiday_madonna';
 
   58include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
 
   60if ($action == 
'updateMask') {
 
   61  $maskconst = 
GETPOST(
'maskconstholiday', 
'aZ09');
 
   62  $maskvalue = 
GETPOST(
'maskholiday', 
'alpha');
 
   63  if ($maskconst && preg_match(
'/_MASK$/', $maskconst)) {
 
   64    $res = 
dolibarr_set_const($db, $maskconst, $maskvalue, 
'chaine', 0, 
'', $conf->entity);
 
   76} elseif ($action == 
'specimen') { 
 
   77  $modele = 
GETPOST(
'module', 
'alpha');
 
   80  $holiday->initAsSpecimen();
 
   86  $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
 
   87  foreach ($dirmodels as $reldir) {
 
   88    $file = 
dol_buildpath($reldir.
"core/modules/holiday/doc/pdf_".$modele.
".modules.php", 0);
 
   89    if (file_exists($file)) {
 
   91      $classname = 
"pdf_".$modele;
 
   99    $module = 
new $classname($db);
 
  101    if ($module->write_file($holiday, $langs) > 0) {
 
  102      header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=holiday&file=SPECIMEN.pdf");
 
  110    dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
 
  112} elseif ($action == 
'set') {
 
  115} elseif ($action == 
'del') {
 
  118    if ($conf->global->HOLIDAY_ADDON_PDF == 
"$value") {
 
  122} elseif ($action == 
'setdoc') {
 
  124  if (
dolibarr_set_const($db, 
"HOLIDAY_ADDON_PDF", $value, 
'chaine', 0, 
'', $conf->entity)) {
 
  127    $conf->global->HOLIDAY_ADDON_PDF = $value;
 
  135} elseif ($action == 
'setmod') {
 
  140} elseif ($action == 
'set_other') {
 
  141  $freetext = 
GETPOST(
'HOLIDAY_FREE_TEXT', 
'restricthtml'); 
 
  142  $res1 = 
dolibarr_set_const($db, 
"HOLIDAY_FREE_TEXT", $freetext, 
'chaine', 0, 
'', $conf->entity);
 
  144  $draft = 
GETPOST(
'HOLIDAY_DRAFT_WATERMARK', 
'alpha');
 
  145  $res2 = 
dolibarr_set_const($db, 
"HOLIDAY_DRAFT_WATERMARK", trim($draft), 
'chaine', 0, 
'', $conf->entity);
 
  147  if (!($res1 > 0) || !($res2 > 0)) {
 
  163$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
 
  167$form = 
new Form($db);
 
  169$linkback = 
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php">'.$langs->trans(
"BackToModuleList").
'</a>';
 
  170print 
load_fiche_titre($langs->trans(
"HolidaySetup"), $linkback, 
'title_setup');
 
  182print 
'<div class="div-table-responsive-no-min">';
 
  183print 
'<table class="noborder centpercent">';
 
  184print 
'<tr class="liste_titre">';
 
  185print 
'<td width="100">'.$langs->trans(
"Name").
'</td>';
 
  186print 
'<td>'.$langs->trans(
"Description").
'</td>';
 
  187print 
'<td>'.$langs->trans(
"Example").
'</td>';
 
  188print 
'<td align="center" width="60">'.$langs->trans(
"Status").
'</td>';
 
  189print 
'<td align="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
 
  194foreach ($dirmodels as $reldir) {
 
  198    $handle = opendir($dir);
 
  199    if (is_resource($handle)) {
 
  200      while (($file = readdir($handle)) !== 
false) {
 
  201        if (substr($file, 0, 12) == 
'mod_holiday_' && substr($file, 
dol_strlen($file) - 3, 3) == 
'php') {
 
  202          $file = substr($file, 0, 
dol_strlen($file) - 4);
 
  204          require_once $dir.$file.
'.php';
 
  206          $module = 
new $file($db);
 
  209          if ($module->version == 
'development' && 
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
 
  212          if ($module->version == 
'experimental' && 
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
 
  216          if ($module->isEnabled()) {
 
  217            print 
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
 
  218            print $module->info($langs);
 
  222            print 
'<td class="nowrap">';
 
  223            $tmp = $module->getExample();
 
  224            if (preg_match(
'/^Error/', $tmp)) {
 
  225              $langs->load(
"errors");
 
  226              print 
'<div class="error">'.$langs->trans($tmp).
'</div>';
 
  227            } elseif ($tmp == 
'NotConfigured') {
 
  228              print 
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
 
  234            print 
'<td class="center">';
 
  235            if ($conf->global->HOLIDAY_ADDON == 
"$file") {
 
  236              print 
img_picto($langs->trans(
"Activated"), 
'switch_on');
 
  238              print 
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmod&token='.newToken().
'&value='.urlencode($file).
'">';
 
  239              print 
img_picto($langs->trans(
"Disabled"), 
'switch_off');
 
  245            $holiday->initAsSpecimen();
 
  249            $htmltooltip .= 
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
 
  250            $nextval = $module->getNextValue($mysoc, $holiday);
 
  251            if (
"$nextval" != $langs->trans(
"NotAvailable")) {  
 
  252              $htmltooltip .= 
''.$langs->trans(
"NextValue").
': ';
 
  254                if (preg_match(
'/^Error/', $nextval) || $nextval == 
'NotConfigured') {
 
  255                  $nextval = $langs->trans($nextval);
 
  257                $htmltooltip .= $nextval.
'<br>';
 
  259                $htmltooltip .= $langs->trans($module->error).
'<br>';
 
  263            print 
'<td class="center">';
 
  264            print $form->textwithpicto(
'', $htmltooltip, 1, 0);
 
  292  $sql .= 
" FROM ".MAIN_DB_PREFIX.
"document_model";
 
  293  $sql .= 
" WHERE type = '".$db->escape($type).
"'";
 
  294  $sql .= 
" AND entity = ".$conf->entity;
 
  295  $resql = $db->query($sql);
 
  298    $num_rows = $db->num_rows($resql);
 
  299    while ($i < $num_rows) {
 
  300      $array = $db->fetch_array($resql);
 
  301      array_push($def, $array[0]);
 
  309  print 
'<div class="div-table-responsive-no-min">';
 
  310  print 
'<table class="noborder centpercent">';
 
  311  print 
'<tr class="liste_titre">';
 
  312  print 
'<td>'.$langs->trans(
"Name").
'</td>';
 
  313  print 
'<td>'.$langs->trans(
"Description").
'</td>';
 
  314  print 
'<td align="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
 
  315  print 
'<td align="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
 
  316  print 
'<td align="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
 
  317  print 
'<td align="center" width="80">'.$langs->trans(
"Preview").
'</td>';
 
  322  foreach ($dirmodels as $reldir) {
 
  323    foreach (array(
'', 
'/doc') as $valdir) {
 
  324      $realpath = $reldir.
"core/modules/holiday".$valdir;
 
  328        $handle = opendir($dir);
 
  329        if (is_resource($handle)) {
 
  330          while (($file = readdir($handle)) !== 
false) {
 
  336          foreach ($filelist as $file) {
 
  337            if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
 
  338              if (file_exists($dir.
'/'.$file)) {
 
  339                $name = substr($file, 4, 
dol_strlen($file) - 16);
 
  340                $classname = substr($file, 0, 
dol_strlen($file) - 12);
 
  342                require_once $dir.
'/'.$file;
 
  343                $module = 
new $classname($db);
 
  345                $modulequalified = 1;
 
  346                if ($module->version == 
'development' && 
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
 
  347                  $modulequalified = 0;
 
  349                if ($module->version == 
'experimental' && 
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
 
  350                  $modulequalified = 0;
 
  353                if ($modulequalified) {
 
  354                  print 
'<tr class="oddeven"><td width="100">';
 
  355                  print(empty($module->name) ? $name : $module->
name);
 
  357                  if (method_exists($module, 
'info')) {
 
  358                    print $module->info($langs);
 
  360                    print $module->description;
 
  365                  if (in_array($name, $def)) {
 
  366                    print 
'<td class="center">'.
"\n";
 
  367                    print 
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.newToken().
'&value='.urlencode($name).
'">';
 
  368                    print 
img_picto($langs->trans(
"Enabled"), 
'switch_on');
 
  372                    print 
'<td class="center">'.
"\n";
 
  373                    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>';
 
  378                  print 
'<td class="center">';
 
  379                  if ($conf->global->HOLIDAY_ADDON_PDF == $name) {
 
  380                    print 
img_picto($langs->trans(
"Default"), 
'on');
 
  382                    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>';
 
  387                  $htmltooltip = 
''.$langs->trans(
"Name").
': '.$module->name;
 
  388                  $htmltooltip .= 
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
 
  389                  if ($module->type == 
'pdf') {
 
  390                    $htmltooltip .= 
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
 
  392                  $htmltooltip .= 
'<br>'.$langs->trans(
"Path").
': '.preg_replace(
'/^\//', 
'', $realpath).
'/'.$file;
 
  394                  $htmltooltip .= 
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
 
  395                  $htmltooltip .= 
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
 
  396                  $htmltooltip .= 
'<br>'.$langs->trans(
"PaymentMode").
': '.
yn($module->option_modereg, 1, 1);
 
  397                  $htmltooltip .= 
'<br>'.$langs->trans(
"PaymentConditions").
': '.
yn($module->option_condreg, 1, 1);
 
  398                  $htmltooltip .= 
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
 
  399                  $htmltooltip .= 
'<br>'.$langs->trans(
"WatermarkOnDraftOrders").
': '.
yn($module->option_draft_watermark, 1, 1);
 
  402                  print 
'<td class="center">';
 
  403                  print $form->textwithpicto(
'', $htmltooltip, 1, 0);
 
  407                  print 
'<td class="center">';
 
  408                  if ($module->type == 
'pdf') {
 
  409                    print 
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"), 
'pdf').
'</a>';
 
  411                    print 
img_object($langs->trans(
"PreviewNotAvailable"), 
'generic');
 
  435print 
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
 
  436print 
'<input type="hidden" name="token" value="'.newToken().
'">';
 
  437print 
'<input type="hidden" name="action" value="set_other">';
 
  441print 
'<div class="div-table-responsive-no-min">';
 
  442print 
'<table class="noborder centpercent">';
 
  443print 
'<tr class="liste_titre">';
 
  444print 
'<td>'.$langs->trans(
"Parameter").
'</td>';
 
  445print 
'<td align="center" width="60">'.$langs->trans(
"Value").
'</td>';
 
  453if (!isset($conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY)) {
 
  454  $conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY = 1;
 
  456if (!isset($conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY)) {
 
  457  $conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY = 1;
 
  467print 
'<tr class="oddeven">';
 
  468print 
"<td>".$langs->trans(
"XIsAUsualNonWorkingDay", $langs->transnoentitiesnoconv(
"Monday")).
"</td>";
 
  469print 
'<td class="center">';
 
  470if ($conf->use_javascript_ajax) {
 
  471  print ajax_constantonoff(
'MAIN_NON_WORKING_DAYS_INCLUDE_MONDAY', array(), 
null, 0);
 
  474    print 
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_other&token='.newToken().
'&MAIN_NON_WORKING_DAYS_INCLUDE_MONDAY=1">'.
img_picto($langs->trans(
"Enabled"), 
'on').
'</a>';
 
  476    print 
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_other&token='.newToken().
'&MAIN_NON_WORKING_DAYS_INCLUDE_MONDAY=0">'.
img_picto($langs->trans(
"Disabled"), 
'off').
'</a>';
 
  483print 
'<tr class="oddeven">';
 
  484print 
"<td>".$langs->trans(
"XIsAUsualNonWorkingDay", $langs->transnoentitiesnoconv(
"Friday")).
"</td>";
 
  485print 
'<td class="center">';
 
  486if ($conf->use_javascript_ajax) {
 
  487  print ajax_constantonoff(
'MAIN_NON_WORKING_DAYS_INCLUDE_FRIDAY', array(), 
null, 0);
 
  490    print 
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_other&token='.newToken().
'&MAIN_NON_WORKING_DAYS_INCLUDE_FRIDAY=1">'.
img_picto($langs->trans(
"Enabled"), 
'on').
'</a>';
 
  492    print 
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_other&token='.newToken().
'&MAIN_NON_WORKING_DAYS_INCLUDE_FRIDAY=0">'.
img_picto($langs->trans(
"Disabled"), 
'off').
'</a>';
 
  499print 
'<tr class="oddeven">';
 
  500print 
"<td>".$langs->trans(
"XIsAUsualNonWorkingDay", $langs->transnoentitiesnoconv(
"Saturday")).
"</td>";
 
  501print 
'<td class="center">';
 
  502if ($conf->use_javascript_ajax) {
 
  503  print ajax_constantonoff(
'MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY', array(), 
null, 0, 0, 0, 2, 0, 1);
 
  506    print 
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_other&token='.newToken().
'&MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY=1">'.
img_picto($langs->trans(
"Enabled"), 
'on').
'</a>';
 
  508    print 
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_other&token='.newToken().
'&MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY=0">'.
img_picto($langs->trans(
"Disabled"), 
'off').
'</a>';
 
  515print 
'<tr class="oddeven">';
 
  516print 
"<td>".$langs->trans(
"XIsAUsualNonWorkingDay", $langs->transnoentitiesnoconv(
"Sunday")).
"</td>";
 
  517print 
'<td class="center">';
 
  518if ($conf->use_javascript_ajax) {
 
  519  print ajax_constantonoff(
'MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY', array(), 
null, 0, 0, 0, 2, 0, 1);
 
  522    print 
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_other&token='.newToken().
'&MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY=1">'.
img_picto($langs->trans(
"Enabled"), 
'on').
'</a>';
 
  524    print 
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_other&token='.newToken().
'&MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY=0">'.
img_picto($langs->trans(
"Disabled"), 
'off').
'</a>';
 
  532  $substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
 
  533  $htmltext = 
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
 
  534  foreach ($substitutionarray as $key => $val) {
 
  535    $htmltext .= $key.
'<br>';
 
  539  print 
'<tr class="oddeven"><td colspan="2">';
 
  540  print $form->textwithpicto($langs->trans(
"FreeLegalTextOnHolidays"), $langs->trans(
"AddCRIfTooLong").
'<br><br>'.$htmltext, 1, 
'help', 
'', 0, 2, 
'tooltiphelp');
 
  542  $variablename = 
'HOLIDAY_FREE_TEXT';
 
  544    print 
'<textarea name="'.$variablename.
'" class="flat" cols="120">'.
getDolGlobalString($variablename).
'</textarea>';
 
  546    include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
 
  548    print $doleditor->Create();
 
  550  print 
'</td></tr>'.
"\n";
 
  554  print 
'<tr class="oddeven"><td>';
 
  555  print $form->textwithpicto($langs->trans(
"WatermarkOnDraftHolidayCards"), $htmltext, 1, 
'help', 
'', 0, 2, 
'watermarktooltip').
'<br>';
 
  557  print 
'<input class="flat minwidth200" type="text" name="HOLIDAY_DRAFT_WATERMARK" value="'.dol_escape_htmltag(
getDolGlobalString(
'HOLIDAY_DRAFT_WATERMARK')).
'">';
 
  558  print 
'</td></tr>'.
"\n";
 
  564print $form->buttonsSaveCancel(
"Save", 
'');
 
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()
Empty header.
 
Class to manage a WYSIWYG editor.
 
Class of the module paid holiday.
 
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
 
yn($yesno, $case=1, $color=0)
Return yes or no in current language.
 
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_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
 
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
 
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.
 
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
 
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
 
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
 
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
 
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
 
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
 
holiday_admin_prepare_head()
Return array head with list of tabs to view object informations.
 
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.