本文整理汇总了PHP中FormHelper::password方法的典型用法代码示例。如果您正苦于以下问题:PHP FormHelper::password方法的具体用法?PHP FormHelper::password怎么用?PHP FormHelper::password使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormHelper
的用法示例。
在下文中一共展示了FormHelper::password方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testPassword
public function testPassword()
{
//test where valueOrArray is array
$html = $this->object->password('element', array('arbitrary' => 'arbitrary', 'class' => 'test-class'));
$this->assertAttributes($html, array('class' => array('test-class', 'ccm-input-password'), 'arbitrary' => 'arbitrary', 'type' => 'password'));
//test where valueOrArray is value
$html = $this->object->password('element', 'value', array('arbitrary' => 'arbitrary', 'class' => 'test-class'));
$this->assertAttributes($html, array('class' => array('test-class', 'ccm-input-password'), 'value' => 'value', 'arbitrary' => 'arbitrary', 'type' => 'password'));
}
示例2: array
<?php
FormHelper::create('loginForm');
FormHelper::input('email', "E-mail", Request::post('email'), array('placeholder' => 'Digite o seu e-mail', 'style' => 'max-width:400px', 'validation' => array('regex' => FormHelper::EMAIL, 'message' => 'Digite um <strong>E-mail</strong> válido.')));
FormHelper::password('password', "Senha", Request::post('password'), array('placeholder' => 'Digite o sua senha', 'style' => 'max-width:400px;', 'validation' => array('regex' => FormHelper::NOT_EMPTY, 'message' => 'Digite uma <strong>Senha</strong> para logar.')));
?>
<br/><?php
FormHelper::startGroup();
FormHelper::submitAjax("Enviar", "auth", array('class' => 'button'));
FormHelper::endGroup();
FormHelper::end();
示例3:
</label>
<div class="col-sm-10">
<?php
echo FormHelper::textbox('Login', $this->getModel()->Login);
?>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="password_field"><?php
echo $this->getModel()->fieldTitle('Password');
?>
</label>
<div class="col-sm-10">
<?php
echo FormHelper::password('Password');
?>
</div>
</div>
<div class="form-group">
<div class="controls">
<div class="col-sm-offset-2 col-sm-10 checkbox-group">
<label class="col-sm-10" for="field_RememberMe">
<?php
echo FormHelper::checkbox('RememberMe');
?>
<?php
echo $this->getModel()->fieldTitle('RememberMe');
?>
</label>
示例4: testInputPassword
public function testInputPassword()
{
$this->assertEqual(FormHelper::password('name', 'value', array('class' => 'myClass')), '<input type="password" name="name" class="myClass" value="value" id="name">');
$this->assertEqual(FormHelper::password('name', $this->Model, array('class' => 'myClass')), '<input type="password" name="name" class="myClass" value="obj" id="name">');
}
示例5: render
public function render()
{
echo FormHelper::password($this->getAlias(), $this->getValue(), array('class' => 'TextboxField', 'id' => 'field_' . $this->getAlias()));
}