Prado\TComponent::addParsedObject PHP Method

addParsedObject() public method

The object can be either a component or a static text string. This method can be overridden to customize the handling of newly created objects in template. Only framework developers and control developers should use this method. Behaviors may implement the function: public function dyAddParsedObject($object[, $chain]) { } to be executed when addParsedObject is called. All attached behaviors are notified through dyAddParsedObject.
See also: createdOnTemplate
public addParsedObject ( $object )
    public function addParsedObject($object)
    {
        $this->dyAddParsedObject($object);
    }