當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。