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


PHP Element::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($name = null, $options = [])
 {
     parent::__construct($name, $options);
     $this->setAttribute('type', 'text');
     $this->setAttribute('pattern', self::CURRENCY_FORMAT);
     $this->setAttribute('data-mask', '$000.00');
 }
开发者ID:PoetikDragon,项目名称:USCSS,代码行数:7,代码来源:Currency.php

示例2: __construct

 public function __construct($name = null, $options = array())
 {
     parent::__construct($name, $options);
     $this->startDateElement = new Date('startdate');
     $this->endDateElement = new Date('enddate');
     $this->currentCheckbox = new Checkbox('current', array('label' => 'Current', 'use_hidden_element' => true, 'value' => 0));
 }
开发者ID:webpants,项目名称:YAWIK,代码行数:7,代码来源:DateRange.php

示例3: __construct

 public function __construct($name = null, $options = [])
 {
     parent::__construct($name, $options);
     $this->setAttribute('type', 'tel');
     $this->setAttribute('pattern', self::PHONE_FORMAT);
     $this->setAttribute('data-mask', '(000) 000-0000');
 }
开发者ID:PoetikDragon,项目名称:USCSS,代码行数:7,代码来源:Phone.php

示例4: __construct

 public function __construct($strName = null, $strValue = null, $arrOption = array())
 {
     parent::__construct($strName, $arrOption);
     if (!empty($strValue)) {
         $this->setValue($strValue);
     }
 }
开发者ID:ualisonaguiar,项目名称:shome2,代码行数:7,代码来源:Html.php

示例5: __construct

 /**
  * Constructor. Add two selects elements
  *
  * @param  null|int|string  $name    Optional name for the element
  * @param  array            $options Optional options for the element
  */
 public function __construct($name = null, $options = array())
 {
     $this->minYear = date('Y') - 100;
     $this->maxYear = date('Y');
     $this->monthElement = new Select('month');
     $this->yearElement = new Select('year');
     parent::__construct($name, $options);
 }
开发者ID:eltonoliveira,项目名称:jenkins,代码行数:14,代码来源:MonthSelect.php

示例6: __construct

 /**
  * Constructor
  *
  * @todo Should we set dojo view helper paths here?
  * @param  mixed $spec
  * @param  mixed $options
  * @return void
  */
 public function __construct($spec, $options = null)
 {
     $this->addPrefixPath('Zend\\Dojo\\Form\\Decorator', 'Zend/Dojo/Form/Decorator', 'decorator');
     parent::__construct($spec, $options);
 }
开发者ID:rexmac,项目名称:zf2,代码行数:13,代码来源:Dijit.php

示例7: __construct

 /**
  * @param  null|int|string  $name    Optional name for the element
  * @param  array            $options Optional options for the element
  */
 public function __construct($name = null, $options = array())
 {
     $this->iterator = new PriorityQueue();
     parent::__construct($name, $options);
 }
开发者ID:gstearmit,项目名称:EshopVegeTable,代码行数:9,代码来源:Fieldset.php

示例8: __construct

 /**
  * @param  null|int|string  $name    Optional name for the element
  * @param  array            $options Optional options for the element
  */
 public function __construct($name = null, $options = array())
 {
     $this->iterator = new PriorityList();
     $this->iterator->isLIFO(false);
     parent::__construct($name, $options);
 }
开发者ID:robertboloc,项目名称:zf2,代码行数:10,代码来源:Fieldset.php

示例9: __construct

 /**
  * Constructor
  *
  * @param null|string|int $name Optional name for the element
  */
 public function __construct($name = null)
 {
     $this->iterator = new PriorityQueue();
     parent::__construct($name);
 }
开发者ID:navassouza,项目名称:zf2,代码行数:10,代码来源:Fieldset.php

示例10: __construct

 public function __construct($secret)
 {
     parent::__construct();
     $this->secret = $secret;
 }
开发者ID:saeven,项目名称:zf2-circlical-recaptcha,代码行数:5,代码来源:Recaptcha.php

示例11: __construct

 /**
  * @param string $name
  */
 public function __construct($name = null)
 {
     parent::__construct($name);
 }
开发者ID:NguyenQuiDuong,项目名称:Funixtest,代码行数:7,代码来源:DisplayGroup.php


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