Articles::__construct PHP Method

__construct() public method

Constructor
public __construct ( ) : void
return 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');
        }
    }