This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/task/classes/Model/Task.php

33 lines
777 B
PHP
Raw Normal View History

2013-10-10 02:44:53 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class supports Tasks
*
* @package Task
* @category Models
* @author Deon George
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Model_Task extends ORM {
2013-10-10 02:44:53 +00:00
protected $_display_filters = array(
'date_run'=>array(
2014-08-25 04:41:07 +00:00
array('Site::Datetime',array(':value')),
2013-10-10 02:44:53 +00:00
),
);
2013-05-02 09:52:19 +00:00
private function _cron() {
return new Cron(sprintf('%s %s %s %s %s',$this->int_min,$this->int_hour,$this->int_month_day,$this->int_month,$this->int_week_day),$this->command);
2013-10-10 02:44:53 +00:00
}
2013-05-02 09:52:19 +00:00
/**
* Calculate next run date
*/
public function next_run($format=FALSE) {
$x = $this->_cron()->next($this->date_run);
2013-10-10 02:44:53 +00:00
2014-08-25 04:41:07 +00:00
return $format ? Site::Datetime($x) : $x;
2013-10-10 02:44:53 +00:00
}
}
?>