32require
'../main.inc.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/agenda.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formactions.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/class/defaultvalues.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/comm/action/class/actioncomm.class.php';
52$langs->loadLangs(array(
'admin',
'other',
'agenda',
'users'));
54$action =
GETPOST(
'action',
'aZ09');
55$value =
GETPOST(
'value',
'alpha');
56$label =
GETPOST(
'label',
'alpha');
57$modulepart =
GETPOST(
'modulepart',
'aZ09');
59$param =
GETPOST(
'param',
'alpha');
60$cancel =
GETPOST(
'cancel',
'alpha');
61$scandir =
GETPOST(
'scan_dir',
'alpha');
72include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
75if (preg_match(
'/set_([a-z0-9_\-]+)/i', $action, $reg)) {
79 header(
"Location: ".$_SERVER[
"PHP_SELF"]);
86if (preg_match(
'/del_([a-z0-9_\-]+)/i', $action, $reg)) {
89 header(
"Location: ".$_SERVER[
"PHP_SELF"]);
95if ($action ==
'set') {
96 $getDefaultFilter =
GETPOST(
'AGENDA_DEFAULT_FILTER_TYPE');
97 $defaultfilter = (is_array($getDefaultFilter)) ? implode(
',', $getDefaultFilter) : $getDefaultFilter;
104 $result = $defaultValues->fetchAll(
'',
'', 0, 0, array(
't.page' =>
'comm/action/card.php',
't.param' =>
'complete',
't.user_id' =>
'0',
't.type' =>
'createform',
't.entity' =>
$conf->entity));
105 if (!is_array($result) && $result < 0) {
107 } elseif (count($result) > 0) {
108 foreach ($result as $defval) {
109 $defaultValues->id = $defval->id;
110 $resultDel = $defaultValues->delete($user);
111 if ($resultDel < 0) {
116 $defaultValues->type =
'createform';
117 $defaultValues->entity =
$conf->entity;
118 $defaultValues->user_id = 0;
119 $defaultValues->page =
'comm/action/card.php';
120 $defaultValues->param =
'complete';
121 $defaultValues->value =
GETPOST(
'AGENDA_EVENT_DEFAULT_STATUS');
122 $resultCreat = $defaultValues->create($user);
123 if ($resultCreat < 0) {
128} elseif ($action ==
'specimen') {
129 $modele =
GETPOST(
'module',
'alpha');
132 $action->initAsSpecimen();
133 $specimenthirdparty =
new Societe($db);
134 $specimenthirdparty->initAsSpecimen();
135 $action->thirdparty = $specimenthirdparty;
140 $dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
141 foreach ($dirmodels as $reldir) {
142 $file =
dol_buildpath($reldir.
"core/modules/action/doc/pdf_".$modele.
".modules.php", 0);
143 if (file_exists($file)) {
144 $classname =
"pdf_".$modele;
149 if ($classname !==
'') {
152 $module =
new $classname($db, $action);
153 '@phan-var-force pdf_standard_actions $module';
155 if ($module->write_file($action, $langs) > 0) {
156 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=action&file=SPECIMEN.pdf");
164 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
166} elseif ($action ==
'setmodel') {
170} elseif ($action ==
'del') {
173 if (
$conf->global->ACTION_EVENT_ADDON_PDF ==
"$value") {
177} elseif ($action ==
'setdoc') {
182 $conf->global->ACTION_EVENT_ADDON_PDF = $value;
200$dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
202$wikihelp =
'EN:Module_Agenda_En|FR:Module_Agenda|ES:Módulo_Agenda|DE:Modul_Terminplanung';
203llxHeader(
'', $langs->trans(
"AgendaSetup"), $wikihelp,
'', 0, 0,
'',
'',
'',
'mod-admin page-agenda_other');
205$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
206print
load_fiche_titre($langs->trans(
"AgendaSetup"), $linkback,
'title_setup');
223$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
224$sql .=
" WHERE type = 'action'";
225$sql .=
" AND entity = ".((int)
$conf->entity);
227$resql = $db->query($sql);
230 $num_rows = $db->num_rows($resql);
231 while ($i < $num_rows) {
232 $array = $db->fetch_array($resql);
233 if (is_array($array)) {
234 array_push($def, $array[0]);
245 print
'<table class="noborder centpercent">'.
"\n";
246 print
'<tr class="liste_titre">'.
"\n";
247 print
'<td width="100">'.$langs->trans(
"Name").
'</td>'.
"\n";
248 print
'<td>'.$langs->trans(
"Description").
'</td>'.
"\n";
249 print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>'.
"\n";
250 print
'<td class="center" width="60">'.$langs->trans(
"Default").
'</td>'.
"\n";
251 print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
252 print
'<td class="center" width="40">'.$langs->trans(
"Preview").
'</td>';
257 $specimenthirdparty =
new Societe($db);
258 $specimenthirdparty->initAsSpecimen();
260 foreach ($dirmodels as $reldir) {
264 $handle = opendir($dir);
265 if (is_resource($handle)) {
266 while (($file = readdir($handle)) !==
false) {
267 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
268 $name = substr($file, 4,
dol_strlen($file) - 16);
269 $classname = substr($file, 0,
dol_strlen($file) - 12);
270 require_once $dir.
'/'.$file;
271 $module =
new $classname($db,
new ActionComm($db));
273 '@phan-var-force ModeleAction $module';
275 print
'<tr class="oddeven">'.
"\n";
277 print(empty($module->name) ? $name : $module->
name);
280 require_once $dir.
'/'.$file;
281 $module =
new $classname($db, $specimenthirdparty);
282 '@phan-var-force ModeleAction $module';
283 if (method_exists($module,
'info')) {
284 print $module->info($langs);
286 print $module->description;
291 if (in_array($name, $def)) {
292 print
'<td class="center">'.
"\n";
293 if (
$conf->global->ACTION_EVENT_ADDON_PDF !=
"$name") {
294 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.
newToken().
'&value='.$name.
'&scan_dir='.$module->scandir.
'&label='.urlencode($module->name).
'&type=action">';
295 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
298 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
302 print
'<td class="center">'.
"\n";
303 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setmodel&token='.
newToken().
'&value='.$name.
'&scan_dir='.$module->scandir.
'&label='.urlencode($module->name).
'&type=action">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
308 print
'<td class="center">';
309 if (
$conf->global->ACTION_EVENT_ADDON_PDF ==
"$name") {
310 print
img_picto($langs->trans(
"Default"),
'on');
312 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'&type=action"" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
317 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
318 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
319 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
320 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
321 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
322 print
'<td class="center">';
323 print
$form->textwithpicto(
'', $htmltooltip, 1, 0);
325 print
'<td class="center">';
326 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
336 print
'</table><br>';
342print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" name="agenda">';
343print
'<input type="hidden" name="token" value="'.newToken().
'">';
344print
'<input type="hidden" name="action" value="set">';
346print
'<table class="noborder allwidth">'.
"\n";
347print
'<tr class="liste_titre">'.
"\n";
348print
'<td>'.$langs->trans(
"Parameters").
'</td>'.
"\n";
349print
'<td class="center"> </td>'.
"\n";
350print
'<td class="right"></td>'.
"\n";
354print
'<tr class="oddeven">'.
"\n";
355$htmltext = $langs->trans(
"ThisValueCanOverwrittenOnUserLevel", $langs->transnoentitiesnoconv(
"UserGUISetup"));
356print
'<td>'.$form->textwithpicto($langs->trans(
"AGENDA_DEFAULT_VIEW"), $htmltext).
'</td>'.
"\n";
357print
'<td class="center"> </td>'.
"\n";
358print
'<td class="right">'.
"\n";
359$tmplist = array(
'' =>
' ',
'show_list' => $langs->trans(
"ViewList"),
'show_month' => $langs->trans(
"ViewCal"),
'show_week' => $langs->trans(
"ViewWeek"),
'show_day' => $langs->trans(
"ViewDay"),
'show_peruser' => $langs->trans(
"ViewPerUser"));
361print
'</td></tr>'.
"\n";
365print
'<tr class="oddeven">'.
"\n";
366print
'<td>'.$langs->trans(
"AGENDA_USE_EVENT_TYPE").
'</td>'.
"\n";
367print
'<td class="center"> </td>'.
"\n";
368print
'<td class="right">'.
"\n";
371 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_AGENDA_USE_EVENT_TYPE&token='.
newToken().
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
373 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=del_AGENDA_USE_EVENT_TYPE&token='.
newToken().
'">'.
img_picto($langs->trans(
"Enabled"),
'switch_on').
'</a>';
375print
'</td></tr>'.
"\n";
378 print
'<!-- AGENDA_USE_EVENT_TYPE_DEFAULT -->';
379 print
'<tr class="oddeven">'.
"\n";
380 print
'<td>'.$langs->trans(
"AGENDA_USE_EVENT_TYPE_DEFAULT").
'</td>'.
"\n";
381 print
'<td class="center"> </td>'.
"\n";
382 print
'<td class="right nowrap">'.
"\n";
383 print $formactions->select_type_actions(
getDolGlobalString(
'AGENDA_USE_EVENT_TYPE_DEFAULT'),
"AGENDA_USE_EVENT_TYPE_DEFAULT",
'systemauto', 0, 1, 0, 1,
'minwidth300', 1);
384 print
'</td></tr>'.
"\n";
388print
'<tr class="oddeven">'.
"\n";
389print
'<td>'.$langs->trans(
"AGENDA_EVENT_DEFAULT_STATUS").
'</td>'.
"\n";
390print
'<td class="center"> </td>'.
"\n";
391print
'<td class="right nowrap">'.
"\n";
394$result = $defaultValues->fetchAll(
'',
'', 0, 0, array(
't.page' =>
'comm/action/card.php',
't.param' =>
'complete',
't.user_id' =>
'0',
't.type' =>
'createform',
't.entity' =>
$conf->entity));
395if (!is_array($result) && $result < 0) {
397} elseif (count($result) > 0) {
398 $defval = reset($result)->value;
400$formactions->form_select_status_action(
'agenda', $defval, 1,
"AGENDA_EVENT_DEFAULT_STATUS", 0, 1,
'maxwidth200 onrightofpage');
401print
'</td></tr>'.
"\n";
404print
'<tr class="oddeven">'.
"\n";
405print
'<td>'.$langs->trans(
"AGENDA_DEFAULT_FILTER_TYPE").
'</td>'.
"\n";
406print
'<td class="center"> </td>'.
"\n";
407print
'<td class="right nowrap">'.
"\n";
413print $formactions->select_type_actions(
getDolGlobalString(
'AGENDA_DEFAULT_FILTER_TYPE'),
"AGENDA_DEFAULT_FILTER_TYPE",
'', (
getDolGlobalString(
'AGENDA_USE_EVENT_TYPE') ? -1 : 1), 1, $multiselect, 1,
'minwidth300', 1);
414print
'</td></tr>'.
"\n";
418print
'<tr class="oddeven">'.
"\n";
419print
'<td>'.$langs->trans(
"AGENDA_DEFAULT_FILTER_STATUS").
'</td>'.
"\n";
420print
'<td class="center"> </td>'.
"\n";
421print
'<td class="right">'.
"\n";
422$formactions->form_select_status_action(
'agenda',
getDolGlobalString(
'AGENDA_DEFAULT_FILTER_STATUS'), 1,
'AGENDA_DEFAULT_FILTER_STATUS', 1, 2,
'minwidth100');
423print
'</td></tr>'.
"\n";
427print
$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.
agenda_prepare_head()
Prepare array with list of tabs.
if(preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) if(preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) if($action=='set') elseif( $action=='specimen') elseif($action=='setmodel') elseif( $action=='del') elseif($action=='setdoc') $form
View.
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.
Class to manage agenda events (actions)
Class to manage third parties objects (customers, suppliers, prospects...)
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_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.
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...
$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.