Prado\TComponent::createdOnTemplate PHP Method

createdOnTemplate() public method

When this method is invoked, the component's properties have been initialized. The default implementation of this method will invoke the potential parent component's {@link addParsedObject}. This method can be overridden. Behaviors may implement the function: public function dyCreatedOnTemplate($parent, $chain) { return $chain->dyCreatedOnTemplate($parent); //example } to be executed when createdOnTemplate is called. All attached behaviors are notified through dyCreatedOnTemplate.
See also: addParsedObject
public createdOnTemplate ( $parent )
    public function createdOnTemplate($parent)
    {
        $parent = $this->dyCreatedOnTemplate($parent);
        $parent->addParsedObject($this);
    }