MY_Loader::_ci_get_component PHP Метод

_ci_get_component() защищенный Метод

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