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


PHP CheckboxField::Field方法代码示例

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


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

示例1: Field

 /**
  * (non-PHPdoc)
  * @see sapphire/forms/FormField#Field()
  */
 function Field()
 {
     if ($this->isReadonly()) {
         $nullableCheckbox = new CheckboxField_Readonly($this->getIsNullId());
     } else {
         $nullableCheckbox = new CheckboxField($this->getIsNullId());
     }
     $nullableCheckbox->setValue(is_null($this->dataValue()));
     return $this->valueField->Field() . ' ' . $nullableCheckbox->Field() . '&nbsp;<span>' . $this->getIsNullLabel() . '</span>';
 }
开发者ID:SustainableCoastlines,项目名称:loveyourwater,代码行数:14,代码来源:NullableField.php

示例2: Field

 /**
  * @param array $properties
  * @return HTMLText
  */
 public function Field($properties = array())
 {
     $this->addExtraClass('prettycheckablefield')->setAttribute('data-prettycheckableconfig', Convert::array2json($this->pretty_checkable_config));
     //allow for not including default styles
     if ($this->config()->get('require_css') == true) {
         Requirements::css(PRETTY_CHECKABLE_FIELD_THIRDPARTY . '/prettyCheckable-2.1.2/dist/prettyCheckable.css');
     }
     Requirements::javascript(PRETTY_CHECKABLE_FIELD_THIRDPARTY . '/prettyCheckable-2.1.2/dist/prettyCheckable.min.js');
     Requirements::javascript(PRETTY_CHECKABLE_FIELD_JAVASCRIPT . '/pretty.checkable.box.field.js');
     return parent::Field($properties);
 }
开发者ID:muskie9,项目名称:silverstripe-pretty-checkable-field,代码行数:15,代码来源:PrettyCheckableBoxField.php

示例3: Field

 /**
  * @param array $properties
  *
  * @return string
  */
 public function Field($properties = array())
 {
     if ($this->isReadonly()) {
         $nullableCheckbox = new CheckboxField_Readonly($this->getIsNullId());
     } else {
         $nullableCheckbox = new CheckboxField($this->getIsNullId());
     }
     $nullableCheckbox->setValue(is_null($this->dataValue()));
     return sprintf('%s %s&nbsp;<span>%s</span>', $this->valueField->Field(), $nullableCheckbox->Field(), $this->getIsNullLabel());
 }
开发者ID:ntd,项目名称:sapphire,代码行数:15,代码来源:NullableField.php

示例4: Field

 public function Field($properties = array())
 {
     Requirements::css(SWITCHFIELD_PATH . '/css/switchfield.css');
     return parent::Field($properties);
 }
开发者ID:vyg,项目名称:silverstripe-switchfield,代码行数:5,代码来源:SwitchField.php


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