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


PHP Zend_Form_Element_Password::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($spec, $options = array())
 {
     $options = array_merge($options, array('disableLoadDefaultDecorators' => true));
     parent::__construct($spec, $options);
     $this->_decorator = new Monkeys_Form_Decorator_Composite();
     $this->addDecorator($this->_decorator);
 }
开发者ID:sdgdsffdsfff,项目名称:auth-center,代码行数:7,代码来源:Password.php

示例2: __construct

 public function __construct($spec, $aOptions = array())
 {
     if (isset($aOptions['ajax'])) {
         $this->_ajax = $aOptions['ajax'];
         unset($aOptions['ajax']);
     }
     parent::__construct($spec, $aOptions);
 }
开发者ID:netixx,项目名称:Stock,代码行数:8,代码来源:Password.php

示例3: __construct

 public function __construct($spec = null, $options = null, $required = false)
 {
     parent::__construct($spec, $options);
     $this->setLabel($options['label'])->setRequired($required)->setAttrib('class', $options['class'])->addValidator('Alnum')->setDescription(isset($options['desc']) ? $options['desc'] : null)->addValidator('StringLength', false, array(6, 256));
     if (isset($options['removeDecorators'])) {
         $this->removeDecorator('HtmlTag')->removeDecorator('Label');
     } else {
         $this->setDecorators(array(new vkNgine_Form_Element_Decorator_Text()));
     }
 }
开发者ID:AlexanderMazaletskiy,项目名称:gym-Tracker-App,代码行数:10,代码来源:Password.php

示例4: __construct

 /**
  * Contructeur, prend le nom interne, le titre et la description du champ.
  * 
  * @param string $internalName
  * @param string $label
  * @param string $description
  */
 public function __construct($internalName, $label, $description)
 {
     parent::__construct($internalName);
     $this->setLabel($label)->setDescription($description);
     $this->setAttrib('size', '32')->addValidator('stringLength', false, array(6, 32))->addFilter('StripTags');
 }
开发者ID:esandre,项目名称:CoeurDeTruffes,代码行数:13,代码来源:PasswordField.php

示例5: __construct

 /**
  * Constructor
  *
  * $spec may be:
  * - string: name of element
  * - array: options with which to configure element
  * - \Zend_Config: \Zend_Config with options for configuring element
  *
  * @param  string|array|\Zend_Config $spec
  * @param  array|\Zend_Config $options
  * @return void
  * @throws \Zend_Form_Exception if no element name after initialization
  */
 public function __construct($spec, $options = null)
 {
     parent::__construct($spec, $options);
     $this->addClass($this->_elementClass);
 }
开发者ID:GemsTracker,项目名称:MUtil,代码行数:18,代码来源:Password.php


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