Esempio n. 1
0
 public function addElement(Element $element)
 {
     $this->elementList[$element->getName()] = $element;
     return $this;
 }
Esempio n. 2
0
 public function attach(Element $element)
 {
     $attribute = new SimpleAttribute('for', $element->getId());
     $this->addAttribute($attribute);
     return $this;
 }