dolibarr  16.0.5
cron.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.org>
4  * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
5  * Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
6  * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
27 // Dolibarr environment
28 require '../../main.inc.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/cron.lib.php';
31 
32 // Load translation files required by the page
33 $langs->loadLangs(array('admin', 'cron'));
34 
35 if (!$user->admin) {
37 }
38 
39 $actionsave = GETPOST("save", 'alphanohtml');
40 
41 // Save parameters
42 if (!empty($actionsave)) {
43  $i = 0;
44 
45  $db->begin();
46 
47  $i += dolibarr_set_const($db, 'CRON_KEY', GETPOST("CRON_KEY"), 'chaine', 0, '', 0);
48 
49  if ($i >= 1) {
50  $db->commit();
51  setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
52  } else {
53  $db->rollback();
54  setEventMessages($langs->trans("Error"), null, 'errors');
55  }
56 }
57 
58 
59 /*
60  * View
61  */
62 
63 $help_url = '';
64 llxHeader('', '', $help_url);
65 
66 $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
67 print load_fiche_titre($langs->trans("CronSetup"), $linkback, 'title_setup');
68 
69 // Configuration header
70 $head = cronadmin_prepare_head();
71 
72 print '<form name="agendasetupform" action="'.$_SERVER["PHP_SELF"].'" method="post">';
73 print '<input type="hidden" name="token" value="'.newToken().'">';
74 
75 print dol_get_fiche_head($head, 'setup', $langs->trans("Module2300Name"), -1, 'cron');
76 
77 print '<span class="opacitymedium">'.$langs->trans('CronInfo').'</span><br>';
78 
79 print "<br>\n";
80 
81 print '<table class="noborder centpercent">';
82 
83 print '<tr class="liste_titre">';
84 print "<td>".$langs->trans("Parameter")."</td>";
85 print "<td>".$langs->trans("Value")."</td>";
86 print "<td></td>";
87 print "</tr>";
88 
89 print '<tr class="oddeven">';
90 print '<td class="fieldrequired">'.$langs->trans("KeyForCronAccess").'</td>';
91 $disabled = '';
92 if (!empty($conf->global->CRON_DISABLE_KEY_CHANGE)) {
93  $disabled = ' disabled="disabled"';
94 }
95 print '<td>';
96 if (empty($conf->global->CRON_DISABLE_KEY_CHANGE)) {
97  print '<input type="text" class="flat minwidth300"'.$disabled.' id="CRON_KEY" name="CRON_KEY" value="'.(GETPOST('CRON_KEY') ?GETPOST('CRON_KEY') : (!empty($conf->global->CRON_KEY) ? $conf->global->CRON_KEY : '')).'">';
98  if (!empty($conf->use_javascript_ajax)) {
99  print '&nbsp;'.img_picto($langs->trans('Generate'), 'refresh', 'id="generate_token" class="linkobject"');
100  }
101 } else {
102  print (!empty($conf->global->CRON_KEY) ? $conf->global->CRON_KEY : '');
103  print '<input type="hidden" id="CRON_KEY" name="CRON_KEY" value="'.(GETPOST('CRON_KEY') ?GETPOST('CRON_KEY') : (!empty($conf->global->CRON_KEY) ? $conf->global->CRON_KEY : '')).'">';
104 }
105 print '</td>';
106 print '<td>&nbsp;</td>';
107 print '</tr>';
108 
109 print '</table>';
110 
111 print dol_get_fiche_end();
112 
113 print $form->buttonsSaveCancel("Save", '');
114 
115 print '</form>';
116 
117 
118 print '<br><br><br>';
119 
120 //print $langs->trans("UseMenuModuleToolsToAddCronJobs", dol_buildpath('/cron/list.php?leftmenu=admintools', 1)).'<br>';
121 if (!empty($conf->global->CRON_WARNING_DELAY_HOURS)) {
122  print info_admin($langs->trans("WarningCronDelayed", $conf->global->CRON_WARNING_DELAY_HOURS)).'<br>';
123 }
124 
125 print '<br>';
126 
128 
129 
130 print '<br>';
131 
132 if (!empty($conf->use_javascript_ajax)) {
133  print "\n".'<script type="text/javascript">';
134  print '$(document).ready(function () {
135  $("#generate_token").click(function() {
136  console.log("Click done");
137  $.get( "'.DOL_URL_ROOT.'/core/ajax/security.php", {
138  action: \'getrandompassword\',
139  generic: true
140  },
141  function(token) {
142  $("#CRON_KEY").val(token);
143  });
144  });
145  });';
146  print '</script>';
147 }
148 
149 llxFooter();
150 $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
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
$help_url
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:116
dol_print_cron_urls
dol_print_cron_urls()
Show information with URLs to launch jobs.
Definition: cron.lib.php:89
cronadmin_prepare_head
cronadmin_prepare_head()
Return array of tabs to used on pages to setup cron module.
Definition: cron.lib.php:31
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
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