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