MY_Loader::_ci_get_component PHP Method

_ci_get_component() protected method

Get a reference to a specific library or model.
protected _ci_get_component ( string $component ) : boolean
$component string Component name
return boolean
    protected function &_ci_get_component($component)
    {
        $CI = $this->get_instance();
        return $CI->{$component};
    }