Prado\Web\UI\WebControls\THead::addParsedObject PHP Method

addParsedObject() public method

This method adds TMetaTag components into the {@link getMetaTags MetaTags} collection of the head control.
See also: createdOnTemplate
public addParsedObject ( $object )
    public function addParsedObject($object)
    {
        if ($object instanceof TMetaTag) {
            $this->getMetaTags()->add($object);
        } else {
            parent::addParsedObject($object);
        }
    }