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


PHP Zend_Validate_StringLength::getMin方法代码示例

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


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

示例1: init

 public function init()
 {
     $oTradutor = $this->getTranslator();
     $oBaseUrlHelper = new Zend_View_Helper_BaseUrl();
     $this->setName('formLiberacaoUsuario');
     $this->setAction($oBaseUrlHelper->baseUrl('/default/cadastro-eventual/confirmar'));
     $this->setMethod('post');
     $oElm = $this->createElement('text', 'hash', array('divspan' => 9));
     $oElm->setLabel('Código Verificação:');
     $oElm->setAttrib('class', 'span7');
     $oElm->setRequired(TRUE);
     $oElm->removeDecorator('errors');
     $this->addElement($oElm);
     $oElm = $this->createElement('text', 'cnpjcpf', array('divspan' => 9));
     $oElm->setLabel('CPF / CNPJ:');
     $oElm->setAttrib('class', 'span3 mask-cpf-cnpj');
     $oElm->setAttrib('maxlength', 18);
     $oElm->addValidator(new DBSeller_Validator_CpfCnpj());
     $oElm->addFilter(new Zend_Filter_Digits());
     $oElm->setRequired(TRUE);
     $oElm->removeDecorator('errors');
     $this->addElement($oElm);
     $oValidaTamanhoCampo = new Zend_Validate_StringLength();
     $oValidaTamanhoCampo->setMin('6');
     $sMensagemValidacao = $oTradutor->_(sprintf('Os campos "<b>Senha</b>" e "<b>Confirme a Senha</b>" devem possuir no mínimo %s caracteres.', $oValidaTamanhoCampo->getMin()));
     $oElm = $this->createElement('password', 'senha', array('divspan' => 9));
     $oElm->setLabel('Senha:');
     $oElm->setAttrib('minlength', $oValidaTamanhoCampo->getMin());
     $oElm->addValidator(new Zend_Validate_Identical('senharepetida'));
     $oElm->setAttrib('message-error', $sMensagemValidacao);
     $oElm->setAttrib('class', 'span3');
     $oElm->setRequired(TRUE);
     $oElm->addValidator($oValidaTamanhoCampo);
     $oElm->removeDecorator('errors');
     $this->addElement($oElm);
     $oElm = $this->createElement('password', 'senharepetida', array('divspan' => 10));
     $oElm->setLabel('Confirme a Senha:');
     $oElm->setAttrib('class', 'span3');
     $oElm->setAttrib('minlength', $oValidaTamanhoCampo->getMin());
     $oElm->addValidator(new Zend_Validate_Identical('senha'));
     $oElm->addValidator($oValidaTamanhoCampo);
     $oElm->setRequired(TRUE);
     $oElm->removeDecorator('errors');
     $this->addElement($oElm);
     $this->addDisplayGroup(array('hash', 'cnpjcpf', 'senha', 'senharepetida'), 'dados_liberacao', array('legend' => 'Confirme seu Cadastro'));
     $this->addElement('submit', 'confirmar', array('label' => 'Confirmar', 'style' => 'margin-left:30px', 'buttonType' => Twitter_Bootstrap_Form_Element_Submit::BUTTON_PRIMARY));
 }
开发者ID:arendasistemasintegrados,项目名称:mateusleme,代码行数:47,代码来源:LiberacaoCadastro.php

示例2: init

 public function init()
 {
     $oBaseUrlHelper = new Zend_View_Helper_BaseUrl();
     $this->setName('formRecuperarSenha');
     $this->setAction($oBaseUrlHelper->baseUrl('/auth/login/recuperar-senha-post'));
     $this->setMethod('post');
     $oElm = $this->createElement('text', 'hash', array('divspan' => 9));
     $oElm->setLabel('Código Verificação:');
     $oElm->setAttrib('class', 'span7');
     $oElm->setRequired(TRUE);
     $oElm->removeDecorator('errors');
     $this->addElement($oElm);
     $oElm = $this->createElement('text', 'email', array('divspan' => 9));
     $oElm->setLabel('Email:');
     $oElm->setAttrib('class', 'span7');
     $oElm->setAttrib('maxlength', 100);
     $oElm->addValidator(new Zend_Validate_EmailAddress());
     $oElm->setRequired(TRUE);
     $oElm->removeDecorator('errors');
     $this->addElement($oElm);
     $oValidaTamanhoCampo = new Zend_Validate_StringLength();
     $oValidaTamanhoCampo->setMin('6');
     $sMensagemValidacao = 'Os campos "<b>Senha</b>" e "<b>Confirme a Senha</b>" devem ser maiores de ';
     $sMensagemValidacao .= " {$oValidaTamanhoCampo->getMin()} caracteres.";
     $oElm = $this->createElement('password', 'senha', array('divspan' => 9));
     $oElm->setLabel('Senha:');
     $oElm->addValidator(new Zend_Validate_Identical('senharepetida'));
     $oElm->setAttrib('message-error', $sMensagemValidacao);
     $oElm->setAttrib('class', 'span3');
     $oElm->setAttrib('minlength', $oValidaTamanhoCampo->getMin());
     $oElm->setRequired(TRUE);
     $oElm->addValidator($oValidaTamanhoCampo);
     $oElm->removeDecorator('errors');
     $this->addElement($oElm);
     $oElm = $this->createElement('password', 'senharepetida', array('divspan' => 9));
     $oElm->setLabel('Confirme a Senha:');
     $oElm->setAttrib('class', 'span3');
     $oElm->setAttrib('minlength', $oValidaTamanhoCampo->getMin());
     $oElm->addValidator(new Zend_Validate_Identical('senha'));
     $oElm->addValidator($oValidaTamanhoCampo);
     $oElm->setRequired(TRUE);
     $oElm->removeDecorator('errors');
     $this->addElement($oElm);
     $this->addDisplayGroup(array('hash', 'email', 'senha', 'senharepetida'), 'dados_liberacao', array('legend' => 'Recuperação de Senha'));
     $this->addElement('submit', 'confirmar', array('label' => 'Confirmar', 'class' => 'span2', 'style' => 'margin-left:30px', 'buttonType' => Twitter_Bootstrap_Form_Element_Submit::BUTTON_PRIMARY));
 }
开发者ID:arendasistemasintegrados,项目名称:mateusleme,代码行数:46,代码来源:RecuperarSenha.php

示例3: getLength

 /**
  * Set length
  *
  * @return int
  */
 public function getLength()
 {
     return parent::getMin();
 }
开发者ID:nemphys,项目名称:magento2,代码行数:9,代码来源:KeyLength.php

示例4: testGetMin

 /**
  * Ensures that getMin() returns expected default value
  *
  * @return void
  */
 public function testGetMin()
 {
     $this->assertEquals(0, $this->_validator->getMin());
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:9,代码来源:StringLengthTest.php


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