Esempio n. 1
0
 /**
  * Set the value of the form element object
  *
  * @param  mixed $value
  * @return Input
  */
 public function setValue($value)
 {
     $this->setAttribute('value', $value);
     return parent::setValue($value);
 }
Esempio n. 2
0
 /**
  * Set the value of the form element object
  *
  * @param  mixed $value
  * @return Textarea
  */
 public function setValue($value)
 {
     $this->setNodeValue($value);
     return parent::setValue($value);
 }