MaketRandevu/src/application/controllers/errors.php
alextselegidis@gmail.com f0fd08e444 * Updated database structure and added new sample data.
* Regenerated code docs (js + php).
* Added custom error 404 page.
* Added service price and description in the appointment booking wizard.
* Completed Issue #21 - devide services in categories in the appointment booking wizard.
* Completed the backend user management page.
2013-09-13 13:21:03 +00:00

16 lines
No EOL
499 B
PHP

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Errors extends CI_Controller {
public function index() {
$this->e404();
}
public function error404() {
$this->load->model('settings_model');
$view['company_name'] = $this->settings_model->get_setting('company_name');
$this->load->view('general/error404', $view);
}
}
/* End of file errors.php */
/* Location: ./application/controllers/errors.php */