- set used-ticket-cycle directly as INTERVAL for the cronjob

This commit is contained in:
Michael Kaufmann (d00p)
2010-10-12 06:21:08 +00:00
parent 9787089615
commit 3f0a491f8c
3 changed files with 48 additions and 14 deletions

View File

@@ -0,0 +1,44 @@
<?php
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
* For the full copyright and license information, please view the COPYING
* file that was distributed with this source code. You can also view the
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
*
* @copyright (c) the authors
* @author Froxlor team <team@froxlor.org> (2010-)
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
* @package Functions
* @version $Id$
*/
function setCycleOfCronjob($fieldname, $fielddata, $newfieldvalue, $allnewfieldvalues)
{
global $settings, $db;
switch($newfieldvalue)
{
case 0:
$interval = 'DAY';
break;
case 1:
$interval = 'WEEK';
break;
case 2:
$interval = 'MONTH';
break;
case 3:
$interval = 'YEAR';
break;
default:
$interval = 'MONTH';
break;
}
$db->query("UPDATE `cronjobs_run` SET `interval` = '1 ".$interval."' WHERE `cronfile` = 'cron_used_tickets_reset.php';");
return array(FORMFIELDS_PLAUSIBILITY_CHECK_OK);
}