Articles::__construct PHP Méthode

__construct() public méthode

Constructor
public __construct ( ) : void
Résultat void
    public function __construct()
    {
        parent::__construct();
        log_message('debug', 'Articles Controller Initialized');
        // Load the categories model
        $this->load->model('categories/categories_model');
        $this->load->model('users/users_model');
        $this->load->model('articles_model');
        $this->load->helper('date');
        if ($this->events->active('fields')) {
            $this->_fields_active = TRUE;
            $this->load->model('fields/fields_model');
        }
    }