yii\widgets\ActiveField::passwordInput PHP Метод

passwordInput() публичный Метод

This method will generate the name and value tag attributes automatically for the model attribute unless they are explicitly specified in $options.
public passwordInput ( array $options = [] )
$options array the tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. The values will be HTML-encoded using [[Html::encode()]]. If you set a custom `id` for the input element, you may need to adjust the [[$selectors]] accordingly.
    public function passwordInput($options = [])
    {
        $options = array_merge($this->inputOptions, $options);
        $this->adjustLabelFor($options);
        $this->parts['{input}'] = Html::activePasswordInput($this->model, $this->attribute, $options);
        return $this;
    }

Usage Example

Пример #1
0
 /**
  * @inheritdoc
  */
 public function passwordInput($options = [])
 {
     $this->options['tag'] = 'md-input-container';
     $options['title'] = $options['placeholder'] = $this->model->getAttributeLabel($this->attribute);
     $options['ng-model'] = ArrayHelper::remove($options, 'ng-model', 'data.' . $this->attribute);
     return parent::passwordInput($options);
 }
All Usage Examples Of yii\widgets\ActiveField::passwordInput