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


PHP Zend_Form_Element_Checkbox::__construct方法代码示例

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


在下文中一共展示了Zend_Form_Element_Checkbox::__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,代码来源:Checkbox.php

示例2: __construct

 public function __construct($spec, $options = null)
 {
     parent::__construct($spec, $options);
     $this->bsUtils = new Zendstrap_Form_MyBootstrapUtils();
 }
开发者ID:getJv,项目名称:ModuleTeste,代码行数:5,代码来源:Checkbox.php

示例3: __construct

 public function __construct($spec = null, $options = null, $required = false)
 {
     parent::__construct($spec, $options);
     $this->setLabel($options['label'])->setChecked($options['value'])->setRequired($required)->setDescription($options['desc'] ? $options['desc'] : null)->setCheckedValue($options['checkedValue'])->setUncheckedValue($options['uncheckedValue'])->setDecorators(array(new vkNgine_Form_Element_Decorator_Checkbox(array('placement' => $options['placement'], 'labelClass' => 'empty'))));
 }
开发者ID:AlexanderMazaletskiy,项目名称:gym-Tracker-App,代码行数:5,代码来源:Checkbox.php

示例4: __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->setAttrib('label_class', 'radio-inline');
 }
开发者ID:GemsTracker,项目名称:MUtil,代码行数:18,代码来源:Checkbox.php

示例5: __construct

 public function __construct($spec, $options = null)
 {
     parent::__construct($spec, $options);
     $this->setAttrib('class', 'z-form-checkbox');
 }
开发者ID:Konstnantin,项目名称:zf-app,代码行数:5,代码来源:Checkbox.php


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