|
Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/laciasmara.com/public_html/shop/application/libraries/ |
Upload File : |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Cronjob
{
protected $CI;
public function __construct()
{
$this->CI = &get_instance();
$this->CI->load->model('order_m');
}
public function run_tasks()
{
$is_active = FALSE; // Set ke FALSE untuk menonaktifkan
if (!$is_active) {
return; // Keluar dari fungsi tanpa melakukan apa-apa
}
// Check if the task should run (every hour)
$last_run = $this->get_last_run_time();
if (time() - $last_run >= 3600) { // 3600 seconds = 1 hour
// Run the task
$this->CI->order_m->cancel_expired_orders();
// Update last run time
$this->update_last_run_time();
}
}
private function get_last_run_time()
{
// Check from a file or database
if (file_exists(APPPATH . 'cache/cron_last_run.txt')) {
return (int)file_get_contents(APPPATH . 'cache/cron_last_run.txt');
}
return 0;
}
private function update_last_run_time()
{
// Save to file or database
file_put_contents(APPPATH . 'cache/cron_last_run.txt', time());
}
}