function fillRestrictions() { parent::fillRestrictions(); if ($this->min !== NULL) { $this->setRestriction('min', $this->min); } if ($this->max !== NULL) { $this->setRestriction('max', $this->max); } }
function fillAttributes() { parent::fillAttributes(); $this->setAttribute('type', 'password'); }
function fillAttributes() { parent::fillAttributes(); $this->setAttribute('cols', $this->cols); $this->setAttribute('rows', $this->rows); }