Prado\Web\UI\WebControls\TMetaTagCollection::findMetaTagByID PHP Method

findMetaTagByID() public method

Finds the item whose value is the one being looked for.
public findMetaTagByID ( $id ) : TMetaTag
return TMetaTag the meta tag found, null if not found.
    public function findMetaTagByID($id)
    {
        if (($index = $this->findIndexByID($id)) >= 0) {
            return $this->itemAt($index);
        } else {
            return null;
        }
    }