Esempio n. 1
0
 public function __construct($name, $label, $imagePath = '')
 {
     parent::__construct($name, $label);
     $this->imagePath = $imagePath;
 }
Esempio n. 2
0
 public function __construct($name, $label, $maxLength = NULL)
 {
     parent::__construct($name, $label);
     $this->maxLength = $maxLength === NULL ? $this->maxLength : (int) $maxLength;
 }