hasAttributeValue() public method

public hasAttributeValue ( ) : boolean
return boolean
Exemplo n.º 1
0
 /**
  * @param Tag $tag
  * @param Tag $child
  * @return TagRestriction
  */
 private function parseRestrictionChild(Tag $tag, Tag $child)
 {
     if ($child->hasAttributeValue() && ($model = $this->getModel($tag)) instanceof Struct) {
         $model->addMeta($child->getName(), $child->getValueAttributeValue(true));
     } else {
         foreach ($child->getAttributes() as $attribute) {
             $this->parseRestrictionChildAttribute($tag, $child, $attribute);
         }
     }
     return $this;
 }
Exemplo n.º 2
0
 /**
  * @param Tag $tag
  * @param Tag $child
  */
 private function parseRestrictionChild(Tag $tag, Tag $child)
 {
     if ($child->hasAttributeValue() && ($model = $this->getModel($tag)) instanceof Struct) {
         $model->addMeta($child->getName(), $child->getValueAttributeValue(true));
     }
 }