. * * @filesource type_ticket.php * @package controllers * Controleur de gestion des types_ticket. */ include ('./application/libraries/Gvv_Controller.php'); class Types_ticket extends Gvv_Controller { // Tout le travail est fait par le parent protected $controller = 'types_ticket'; protected $model = 'types_ticket_model'; protected $modification_level = 'ca'; protected $rules = array (); /** * Constructeur */ function __construct() { parent::__construct(); } /** * (non-PHPdoc) * * @see Gvv_Controller::form_static_element() */ function form_static_element($action) { parent::form_static_element($action); } /** * Test unitaire */ function test($format = "html") { // parent::test($format); $this->unit_test = TRUE; $this->load->library('unit_test'); $this->unit->run(true, true, "Tests $this->controller"); $this->tests_results($format); } }