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


PHP FormField::setForm方法代码示例

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


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

示例1: setForm

 public function setForm($form)
 {
     $this->fieldPageID->setForm($form);
     $this->fieldCustomURL->setForm($form);
     $this->fieldTitle->setForm($form);
     $this->fieldLinkmode->setForm($form);
     return parent::setForm($form);
 }
开发者ID:helpfulrobot,项目名称:micschk-silverstripe-namedlinkfield,代码行数:8,代码来源:NamedLinkFormField.php

示例2: setForm

 public function setForm($form)
 {
     foreach ($this->children as $field) {
         $field->setForm($form);
     }
     return parent::setForm($form);
 }
开发者ID:spekulatius,项目名称:ss-focus-area,代码行数:7,代码来源:FocusAreaField.php

示例3: setForm

 public function setForm($form)
 {
     foreach ($this->composite_fields as $type => $field) {
         $field->setForm($form);
     }
     return parent::setForm($form);
 }
开发者ID:helpfulrobot,项目名称:briceburg-silverstripe-flexichoice,代码行数:7,代码来源:FlexiChoiceField.php

示例4: setForm

 public function setForm($form)
 {
     parent::setForm($form);
     foreach ($this->children as $child) {
         $child->setForm($form);
     }
 }
开发者ID:nyeholt,项目名称:silverstripe-denormalised-content,代码行数:7,代码来源:LayerEditorField.php

示例5: setForm

 public function setForm($form)
 {
     parent::setForm($form);
     $this->dateField->setForm($form);
     $this->timeField->setForm($form);
     $this->timezoneField->setForm($form);
     return $this;
 }
开发者ID:jakedaleweb,项目名称:AtomCodeChallenge,代码行数:8,代码来源:DatetimeField.php

示例6: setForm

 public function setForm($form)
 {
     $this->child->setForm($form);
     $this->checkbox->setForm($form);
     if ($this->child instanceof FileField) {
         $form->setEncType(Form::ENC_TYPE_MULTIPART);
     }
     return parent::setForm($form);
 }
开发者ID:helpfulrobot,项目名称:ajshort-silverstripe-memberprofiles,代码行数:9,代码来源:CheckableVisibilityField.php

示例7: setForm

 public function setForm($form)
 {
     foreach ($this->children as $f) {
         if (is_object($f)) {
             $f->setForm($form);
         }
     }
     parent::setForm($form);
     return $this;
 }
开发者ID:miamollie,项目名称:echoAerial,代码行数:10,代码来源:CompositeField.php

示例8: setForm

 public function setForm($form)
 {
     foreach ($this->getChildren() as $field) {
         if ($field instanceof FormField) {
             $field->setForm($form);
         }
     }
     parent::setForm($form);
     return $this;
 }
开发者ID:jacobbuck,项目名称:silverstripe-framework,代码行数:10,代码来源:CompositeField.php

示例9: setForm

 /**
  * Include our children in the form too
  * {@inheritdoc}
  */
 public function setForm($form)
 {
     parent::setForm($form);
     foreach ($this->getChildren() as $childField) {
         $childField->setForm($form);
     }
     return $this;
 }
开发者ID:helpfulrobot,项目名称:betterbrief-silverstripe-autocompletefield,代码行数:12,代码来源:AutocompleteField.php

示例10: setForm

	function setForm($form) {
		foreach($this->children as $f) 
			if(is_object($f)) $f->setForm($form);
			
		parent::setForm($form);
		
		return $this;
	}
开发者ID:redema,项目名称:sapphire,代码行数:8,代码来源:CompositeField.php

示例11: setForm

 function setForm($form)
 {
     $this->fieldSelectedValue->setForm($form);
     $this->fieldAlternativeValue->setForm($form);
     return parent::setForm($form);
 }
开发者ID:helpfulrobot,项目名称:leapfrognz-alternative-field,代码行数:6,代码来源:AlternativeFormField.php

示例12: setForm

 public function setForm($form)
 {
     $this->fieldCurrency->setForm($form);
     $this->fieldAmount->setForm($form);
     return parent::setForm($form);
 }
开发者ID:jacobbuck,项目名称:silverstripe-framework,代码行数:6,代码来源:MoneyField.php

示例13: setForm

 public function setForm($form)
 {
     $form->addExtraClass('.rangeslider-display--form');
     return parent::setForm($form);
 }
开发者ID:helpfulrobot,项目名称:milkyway-multimedia-ss-mwm-formfields,代码行数:5,代码来源:RangeSliderField.php


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