Prado\Web\UI\WebControls\TMetaTagCollection::findMetaTagByID PHP 메소드

findMetaTagByID() 공개 메소드

Finds the item whose value is the one being looked for.
public findMetaTagByID ( $id ) : TMetaTag
리턴 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;
        }
    }