dolibarr  16.0.5
agenda_xcal.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2008-2015 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2012-2013 Juanjo Menent <jmenent@2byte.es>
4  * Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <https://www.gnu.org/licenses/>.
19  */
20 
27 require '../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php';
30 
31 
32 if (!$user->admin) {
34 }
35 
36 // Load translation files required by the page
37 $langs->loadLangs(array("admin", "other", "agenda"));
38 
39 $def = array();
40 $actionsave = GETPOST('save', 'alpha');
41 
42 // Sauvegardes parametres
43 if ($actionsave) {
44  $i = 0;
45 
46  $db->begin();
47 
48  $i += dolibarr_set_const($db, 'MAIN_AGENDA_XCAL_EXPORTKEY', trim(GETPOST('MAIN_AGENDA_XCAL_EXPORTKEY', 'alpha')), 'chaine', 0, '', $conf->entity);
49  $i += dolibarr_set_const($db, 'MAIN_AGENDA_EXPORT_PAST_DELAY', trim(GETPOST('MAIN_AGENDA_EXPORT_PAST_DELAY', 'alpha')), 'chaine', 0, '', $conf->entity);
50  $i += dolibarr_set_const($db, 'MAIN_AGENDA_EXPORT_CACHE', trim(GETPOST('MAIN_AGENDA_EXPORT_CACHE', 'alpha')), 'chaine', 0, '', $conf->entity);
51  $i += dolibarr_set_const($db, 'AGENDA_EXPORT_FIX_TZ', trim(GETPOST('AGENDA_EXPORT_FIX_TZ', 'alpha')), 'chaine', 0, '', $conf->entity);
52 
53  if ($i >= 4) {
54  $db->commit();
55  setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
56  } else {
57  $db->rollback();
58  setEventMessages($langs->trans("SaveFailed"), null, 'errors');
59  }
60 }
61 
62 
63 
68 if (!isset($conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY)) {
69  $conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY = 100;
70 }
71 
72 $wikihelp = 'EN:Module_Agenda_En|FR:Module_Agenda|ES:Módulo_Agenda';
73 llxHeader('', $langs->trans("AgendaSetup"), $wikihelp);
74 
75 $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
76 print load_fiche_titre($langs->trans("AgendaSetup"), $linkback, 'title_setup');
77 
78 
79 print '<form name="agendasetupform" action="'.$_SERVER["PHP_SELF"].'" method="post">';
80 print '<input type="hidden" name="token" value="'.newToken().'">';
81 
82 $head = agenda_prepare_head();
83 
84 print dol_get_fiche_head($head, 'xcal', $langs->trans("Agenda"), -1, 'action');
85 
86 print '<span class="opacitymedium">'.$langs->trans("AgendaSetupOtherDesc")."</span><br>\n";
87 print "<br>\n";
88 
89 print '<table class="noborder centpercent">';
90 
91 print '<tr class="liste_titre">';
92 print "<td>".$langs->trans("Parameter")."</td>";
93 print "<td>".$langs->trans("Value")."</td>";
94 //print "<td>".$langs->trans("Examples")."</td>";
95 print "<td>&nbsp;</td>";
96 print "</tr>";
97 
98 print '<tr class="oddeven">';
99 print '<td class="fieldrequired">'.$langs->trans("PasswordTogetVCalExport")."</td>";
100 print '<td><input required="required" type="text" class="flat" id="MAIN_AGENDA_XCAL_EXPORTKEY" name="MAIN_AGENDA_XCAL_EXPORTKEY" value="'.(GETPOST('MAIN_AGENDA_XCAL_EXPORTKEY', 'alpha') ?GETPOST('MAIN_AGENDA_XCAL_EXPORTKEY', 'alpha') : $conf->global->MAIN_AGENDA_XCAL_EXPORTKEY).'" size="40">';
101 if (!empty($conf->use_javascript_ajax)) {
102  print '&nbsp;'.img_picto($langs->trans('Generate'), 'refresh', 'id="generate_token" class="linkobject"');
103 }
104 print '</td>';
105 print "<td>&nbsp;</td>";
106 print "</tr>";
107 
108 print '<tr class="oddeven">';
109 print "<td>".$langs->trans("PastDelayVCalExport")."</td>";
110 print "<td><input type=\"text\" class=\"flat\" name=\"MAIN_AGENDA_EXPORT_PAST_DELAY\" value=\"".(GETPOST('MAIN_AGENDA_EXPORT_PAST_DELAY', 'alpha') ?GETPOST('MAIN_AGENDA_EXPORT_PAST_DELAY', 'alpha') : $conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY)."\" size=\"10\"> ".$langs->trans("days")."</td>";
111 print "<td>&nbsp;</td>";
112 print "</tr>";
113 
114 print '<tr class="oddeven">';
115 print "<td>".$langs->trans("UseACacheDelay")."</td>";
116 print "<td><input type=\"text\" class=\"flat\" name=\"MAIN_AGENDA_EXPORT_CACHE\" value=\"".(GETPOST('MAIN_AGENDA_EXPORT_CACHE', 'alpha') ?GETPOST('MAIN_AGENDA_EXPORT_CACHE', 'alpha') : $conf->global->MAIN_AGENDA_EXPORT_CACHE)."\" size=\"10\"></td>";
117 print "<td>&nbsp;</td>";
118 print "</tr>";
119 
120 print '</table>';
121 
122 print '<br>';
123 
124 print '<table class="noborder centpercent">';
125 
126 print '<tr class="liste_titre">';
127 print '<td width="25%">'.$langs->trans("Parameter")."</td>";
128 print "<td>".$langs->trans("Value")."</td>";
129 print "</tr>";
130 print '<tr class="oddeven">';
131 print '<td>'.$langs->trans("FixTZ")."</td>";
132 print "<td>";
133 print '<input class="flat" type="text" size="4" name="AGENDA_EXPORT_FIX_TZ" value="'.$conf->global->AGENDA_EXPORT_FIX_TZ.'">';
134 print ' &nbsp; '.$langs->trans("FillThisOnlyIfRequired");
135 print "</td>";
136 print "</tr>";
137 
138 print '</table>';
139 
140 print dol_get_fiche_end();
141 
142 print $form->buttonsSaveCancel("Save", '');
143 
144 print "</form>\n";
145 
146 
147 clearstatcache();
148 
149 //if ($mesg) print "<br>$mesg<br>";
150 print "<br>";
151 
152 
153 // Define $urlwithroot
154 $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
155 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
156 //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
157 $getentity = ($conf->entity > 1 ? "&entity=".$conf->entity : "");
158 
159 // Show message
160 $message = '';
161 
162 $urlvcal = '<a href="'.$urlwithroot.'/public/agenda/agendaexport.php?format=vcal'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'" target="_blank" rel="noopener noreferrer">';
163 $urlvcal .= $urlwithroot.'/public/agenda/agendaexport.php?format=vcal'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : 'KEYNOTDEFINED').'</a>';
164 $message .= img_picto('', 'globe').' '.str_replace('{url}', $urlvcal, '<span class="opacitymedium">'.$langs->trans("WebCalUrlForVCalExport", 'vcal', '').'</span>');
165 $message .= '<div class="urllink">';
166 $message .= '<input type="text" id="onlinepaymenturl1" class="quatrevingtpercent" value="'.$urlwithroot.'/public/agenda/agendaexport.php?format=vcal'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'">';
167 if (!empty($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY)) {
168  $message .= ' <a href="'.$urlwithroot.'/public/agenda/agendaexport.php?format=vcal'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'">'.img_picto('', 'download').'</a>';
169 }
170 $message .= '</div>';
171 $message .= ajax_autoselect('onlinepaymenturl1');
172 $message .= '<br>';
173 
174 $urlical = '<a href="'.$urlwithroot.'/public/agenda/agendaexport.php?format=ical&type=event'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'" target="_blank" rel="noopener noreferrer">';
175 $urlical .= $urlwithroot.'/public/agenda/agendaexport.php?format=ical&type=event'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : 'KEYNOTDEFINED').'</a>';
176 $message .= img_picto('', 'globe').' '.str_replace('{url}', $urlical, '<span class="opacitymedium">'.$langs->trans("WebCalUrlForVCalExport", 'ical/ics', '').'</span>');
177 $message .= '<div class="urllink">';
178 $message .= '<input type="text" id="onlinepaymenturl2" class="quatrevingtpercent" value="'.$urlwithroot.'/public/agenda/agendaexport.php?format=ical'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'">';
179 if (!empty($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY)) {
180  $message .= ' <a href="'.$urlwithroot.'/public/agenda/agendaexport.php?format=ical'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'">'.img_picto('', 'download').'</a>';
181 }
182 $message .= '</div>';
183 $message .= ajax_autoselect('onlinepaymenturl2');
184 $message .= '<br>';
185 
186 $urlrss = '<a href="'.$urlwithroot.'/public/agenda/agendaexport.php?format=rss'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'" target="_blank" rel="noopener noreferrer">';
187 $urlrss .= $urlwithroot.'/public/agenda/agendaexport.php?format=rss'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : 'KEYNOTDEFINED').'</a>';
188 $message .= img_picto('', 'globe').' '.str_replace('{url}', $urlrss, '<span class="opacitymedium">'.$langs->trans("WebCalUrlForVCalExport", 'rss', '').'</span>');
189 $message .= '<div class="urllink">';
190 $message .= '<input type="text" id="onlinepaymenturl3" class="quatrevingtpercent" value="'.$urlwithroot.'/public/agenda/agendaexport.php?format=rss'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'">';
191 if (!empty($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY)) {
192  $message .= ' <a href="'.$urlwithroot.'/public/agenda/agendaexport.php?format=rss'.$getentity.'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ?urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) : '...').'">'.img_picto('', 'download').'</a>';
193 }
194 $message .= '</div>';
195 $message .= ajax_autoselect('onlinepaymenturl3');
196 $message .= '<br>';
197 
198 print $message;
199 
200 $message = $langs->trans("AgendaUrlOptions1", $user->login, $user->login).'<br>';
201 $message .= $langs->trans("AgendaUrlOptions3", $user->login, $user->login).'<br>';
202 $message .= $langs->trans("AgendaUrlOptionsNotAdmin", $user->login, $user->login).'<br>';
203 $message .= $langs->trans("AgendaUrlOptions4", $user->login, $user->login).'<br>';
204 $message .= $langs->trans("AgendaUrlOptionsProject", $user->login, $user->login).'<br>';
205 $message .= $langs->trans("AgendaUrlOptionsNotAutoEvent", 'systemauto', 'systemauto').'<br>';
206 $message .= $langs->trans("AgendaUrlOptionsIncludeHolidays", '1', '1').'<br>';
207 
208 print info_admin($message);
209 
210 if (!empty($conf->use_javascript_ajax)) {
211  print "\n".'<script type="text/javascript">';
212  print '$(document).ready(function () {
213  $("#generate_token").click(function() {
214  $.get( "'.DOL_URL_ROOT.'/core/ajax/security.php", {
215  action: \'getrandompassword\',
216  generic: true
217  },
218  function(token) {
219  $("#MAIN_AGENDA_XCAL_EXPORTKEY").val(token);
220  });
221  });
222  });';
223  print '</script>';
224 }
225 
226 // End of page
227 llxFooter();
228 $db->close();
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
load_fiche_titre
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
Definition: functions.lib.php:5204
agenda_prepare_head
agenda_prepare_head()
Prepare array with list of tabs.
Definition: agenda.lib.php:363
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
img_picto
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
Definition: functions.lib.php:3880
$wikihelp
if($actionsave) if(!isset($conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY)) $wikihelp
View.
Definition: agenda_xcal.php:72
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
info_admin
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='')
Show information for admin users or standard users.
Definition: functions.lib.php:4800
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
dolibarr_set_const
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).
Definition: admin.lib.php:627
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
accessforbidden
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
Definition: security.lib.php:933
ajax_autoselect
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
Definition: functions.lib.php:9681
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59