Exemple #1
0
 /**
  * Constructs the object
  * 
  * @access public
  * @param string $label
  * @param boolean $isMandatory
  * @param string $value
  * @param string $helpText
  * @param array $classes
  * @param string $placeholder
  * @param integer $tabIndex
  */
 public function __construct($key, $label, $isMandatory = false, $value = '', $rows = 5, $helpText = '', $classes = array(), $placeholder = '', $tabIndex = null)
 {
     $this->rows = $rows;
     parent::__construct($key, $label, $isMandatory, $value, $helpText, $classes, $placeholder, $tabIndex);
 }
Exemple #2
0
 public function __constructor($fieldName, $value = '')
 {
     parent::__construct($fieldName, $value);
 }