Admin_glossary::__construct PHP Метод

__construct() публичный Метод

public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->load->model('users_model');
        $this->load->model('articles_model');
        if (!$this->users_auth->check_role('can_manage_users')) {
            show_error(lang('not_authorized'));
        }
        $this->data->nav = 'articles';
    }