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


PHP Form_Button::make方法代码示例

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


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

示例1: render

 /**
  * Render the form as HTML
  */
 public function render()
 {
     // Create the view
     $this->layout($this->layout);
     // Separate hidden and displayed fields
     $fields = array();
     $hidden = array();
     // Are we using a twitter bootstrap layout?
     $bootstrap = strrpos($this->layout->view, 'bootstrap') !== false;
     // This is an extra iteration of the fields, but oh well
     $this->assign_values();
     foreach ($this->fields as $field) {
         // Add bootstrap classes if appropriate
         if ($bootstrap && $field->label) {
             $field->label->add_class('control-label');
         }
         // Is it hidden?
         // @todo: this prevents hidden fields from being
         // usable inside multi-field, but I think that's okay
         if ($field->is_hidden()) {
             $hidden[] = $field;
         } else {
             if (!isset($field->label)) {
                 $field->label(ucwords(str_replace('_', ' ', $field->name)));
                 // Retroactively apply required class to label
                 if ($field->is_required()) {
                     $field->label->add_class('required');
                 }
             }
             $fields[] = $field;
         }
     }
     // Make the buttons
     $buttons = array();
     if (!is_array($this->buttons)) {
         $this->buttons = array();
     } elseif (!count($this->buttons)) {
         $this->buttons = array(Form_Button::make('Cancel')->attr('type', 'button')->attr('class', 'btn'), Form_Button::make('Submit')->attr('type', 'submit')->attr('class', 'btn btn-primary'));
     }
     foreach ($this->buttons as $key => $val) {
         if (is_int($key) && is_array($val)) {
             $buttons[] = Form_Button::make()->parse_config($val);
         } elseif (is_int($key) && is_a($val, 'Squi\\Form_Button')) {
             $buttons[] = $val;
         } elseif (is_int($key)) {
             $buttons[] = Form_Button::make($val)->attr('class', 'btn');
         } elseif (is_string($key) && is_array($val)) {
             $buttons[] = Form_Button::make($key)->parse_config($val);
         } elseif (is_string($key) && is_string($val)) {
             $buttons[] = Form_Button::make($key)->attr('name', $val)->attr('class', 'btn');
         }
     }
     return $this->layout->with('form', $this)->with('fields', $fields)->with('hidden', $hidden)->with('buttons', $buttons)->render();
 }
开发者ID:SerdarSanri,项目名称:laravel-squi,代码行数:57,代码来源:form.php


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