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


PHP Field::__toString方法代码示例

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


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

示例1: __toString

 /**
  * Prints out Field wrapped in ControlGroup
  *
  * @return string A form field
  */
 public function __toString()
 {
     // Dry syntax (hidden fields, plain fields)
     if (static::$field->type == 'hidden' or static::form()->type == 'search' or static::form()->type == 'inline') {
         $html = static::$field->__toString();
     } elseif (static::$useBootstrap and static::form()->type) {
         $html = $this->control()->wrapField(static::$field);
     } else {
         $html = \Form::label(static::$field->name, static::$field->label);
         $html .= static::$field;
     }
     // Destroy field instance
     static::$field = null;
     return $html;
 }
开发者ID:nigobo,项目名称:laravel-play,代码行数:20,代码来源:Former.php

示例2: __toString

 /**
  * Prints out Field wrapped in ControlGroup
  *
  * @return string A form field
  */
 public function __toString()
 {
     if (static::$form and !static::$form->isOpened()) {
         return static::form()->__toString();
     }
     // Dry syntax (hidden fields, plain fields)
     if (static::$field->isUnwrappable()) {
         $html = static::$field->__toString();
     } elseif (Framework::isnt(null) and static::$form) {
         $html = $this->control()->wrapField(static::$field);
     } else {
         $html = Framework::label(static::$field);
         $html .= static::$field;
     }
     return $html;
 }
开发者ID:iyoworks,项目名称:former,代码行数:21,代码来源:Former.php

示例3: __toString

 /**
  * Prints out Field wrapped in ControlGroup
  *
  * @return string A form field
  */
 public function __toString()
 {
     // Dry syntax (hidden fields, plain fields)
     if (static::$field->type == 'hidden' or static::form()->type == 'search' or static::form()->type == 'inline') {
         $html = static::$field->__toString();
     } elseif (Framework::isnt(null) and static::$form) {
         $html = $this->control()->wrapField(static::$field);
     } else {
         // Get label
         $label = static::$field->label;
         $labelText = is_array($label) ? array_get($label, 'label') : $label;
         $labelAttributes = is_array($label) ? array_get($label, 'attributes') : array();
         $html = \Form::label(static::$field->name, $labelText, $labelAttributes);
         $html .= static::$field;
     }
     return $html;
 }
开发者ID:raftalks,项目名称:former,代码行数:22,代码来源:Former.php


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