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;
        }
    }