当前位置: 首页>>代码示例>>PHP>>正文


PHP Html::passwordInput方法代码示例

本文整理汇总了PHP中yii\bootstrap\Html::passwordInput方法的典型用法代码示例。如果您正苦于以下问题:PHP Html::passwordInput方法的具体用法?PHP Html::passwordInput怎么用?PHP Html::passwordInput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在yii\bootstrap\Html的用法示例。


在下文中一共展示了Html::passwordInput方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: run

 /**
  * @inheritdoc
  */
 public function run()
 {
     parent::init();
     PassfieldAsset::register($this->view);
     Yii::$app->get('i18n')->translations['passfield*'] = ['class' => PhpMessageSource::className(), 'basePath' => __DIR__ . '/messages'];
     if (ArrayHelper::getValue($this->pluginOptions, 'titleShow') === null) {
         $this->pluginOptions['titleShow'] = Yii::t('passfield', 'Show password');
     }
     if (ArrayHelper::getValue($this->pluginOptions, 'titleHide') === null) {
         $this->pluginOptions['titleHide'] = Yii::t('passfield', 'Hide password');
     }
     $pluginOptions = Json::encode($this->pluginOptions);
     $this->view->registerJs(sprintf('$("#%s").passfield(%s)', $this->options['id'], $pluginOptions));
     if ($this->hasModel()) {
         if ($this->form == null) {
             throw new InvalidConfigException(__CLASS__ . '.form property must be specified');
         }
         return $this->form->field($this->model, $this->attribute, ['template' => $this->template])->passwordInput($this->options)->hint($this->hint);
     } else {
         return Html::passwordInput($this->name, $this->value, $this->options);
     }
 }
开发者ID:nsept,项目名称:yii2-passfield,代码行数:25,代码来源:PassfieldWidget.php

示例2:

?>
        <div style="margin-top: 50px;">
            <?php 
echo !empty($passwordInfo) ? Html::tag('div', $passwordInfo, ['class' => 'alert alert-success']) : '';
?>
            <h4><?php 
echo Yii::t('app', 'Change Your Password');
?>
</h4>
            <?php 
echo !empty($passwordError) ? Html::tag('div', $passwordError, ['class' => 'alert alert-danger']) : '';
?>
            <div class="row">
                <div class="col-xs-6">
                    <?php 
echo Html::passwordInput('password', '', ['class' => 'form-control', 'placeholder' => Yii::t('app', 'Enter new password')]);
?>
                </div>
                <div class="col-xs-6">
                    <?php 
echo Html::submitButton(Yii::t('app', 'Update Password'), ['class' => 'btn btn-primary']);
?>
                </div>
            </div>
        </div>
        <?php 
ActiveForm::end();
?>
    </div>
</div>
开发者ID:rcjusto,项目名称:simplestore,代码行数:30,代码来源:profile.php


注:本文中的yii\bootstrap\Html::passwordInput方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。