22 lines
421 B
PHP
Executable File
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();
|
|
}
|
|
}
|