Files
2026-03-11 15:29:37 +07:00

22 lines
421 B
PHP
Executable File

<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Error404 extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->model('wallet_model');
}
public function index()
{
$this->load->view('nodata');
}
public function cron()
{
$this->wallet_model->updatekadaluarsa();
}
}