. * * @filesource events_types.php * @package controllers * Controleur de gestion des events_types. */ include ('./application/libraries/Gvv_Controller.php'); class Events_Types extends Gvv_Controller { // Tout le travail est fait par le parent protected $controller = 'events_types'; protected $model = 'events_types_model'; protected $modification_level = 'ca'; protected $rules = array (); /** * Constructeur */ function __construct() { parent::__construct(); $this->load->library('EventsTypesMetadata'); } /** * (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->run('Foo', 'is_string', 'test events_types'); } }