Prado\Web\UI\TControl::getRegisteredObject PHP Метод

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

A component with explicit ID on a template will be registered to the template owner. This method allows you to obtain this component with the ID.
public getRegisteredObject ( $name ) : mixed
Результат mixed the named registered object. Null if object is not found.
    public function getRegisteredObject($name)
    {
        return isset($this->_rf[self::RF_NAMED_OBJECTS][$name]) ? $this->_rf[self::RF_NAMED_OBJECTS][$name] : null;
    }
TControl