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


PHP FormBuilder::select方法代码示例

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


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

示例1: selection

    public function selection($nom, $list = [], $selected = null, $label = null)
    {
        return sprintf('
			<div class="form-group" style="width:200px;">
				%s
				%s
			</div>', $label ? $this->label($nom, $label, ['class' => 'control-label']) : '', parent::select($nom, $list, $selected, ['class' => 'form-control']));
    }
开发者ID:thaida,项目名称:CMS,代码行数:8,代码来源:FormBuilder.php

示例2: select

 public function select($name, $list = [], $selected = null, $options = [])
 {
     return sprintf('
     <div class="input-field col l6 s8 offset-l3 offset-s2">
         %s
         %s
     </div>', parent::select($name, $list, $selected, $options), parent::label($name, null, []));
 }
开发者ID:codificar,项目名称:scaffolder-theme-material,代码行数:8,代码来源:MaterialThemeForm.php

示例3: select

 /**
  * Create a select box field.
  *
  * @param  string  $name
  * @param  string  $label
  * @param  array   $list
  * @param  string  $selected
  * @param  array   $options
  * @return string
  */
 public function select($name, $label = null, $list = [], $selected = null, array $options = [], $extra = null)
 {
     $label = $label === false ? $label : $this->getLabelTitle($label, $name);
     $options = $this->getFieldOptions($options, $name);
     $inputElement = $this->form->select($name, $list, $selected, $options);
     $wrapperOptions = $this->isHorizontal() ? ['class' => $this->getRightColumnClass()] : [];
     $wrapperElement = '<div' . $this->html->attributes($wrapperOptions) . '>' . $inputElement . $this->getFieldError($name) . '</div>';
     return $label ? $this->getFormGroupWithLabel($name, $label, $wrapperElement, $extra) : $this->getFormGroup($name, $wrapperElement, $extra);
 }
开发者ID:jor3l,项目名称:bootstrap-form,代码行数:19,代码来源:BootstrapForm.php

示例4: select

 /**
  * Create a select box field.
  *
  * @param  string  $name
  * @param  string  $label
  * @param  array   $list
  * @param  string  $selected
  * @param  array   $options
  * @return string
  */
 public function select($name, $label = null, $list = [], $selected = null, array $options = [])
 {
     $label = $this->getLabelTitle($label, $name);
     $options = $this->getFieldOptions($options);
     $wrapperOptions = [];
     if ($this->getType() === Type::HORIZONTAL) {
         $wrapperOptions = ['class' => $this->getRightColumnClass()];
     }
     $inputElement = $this->form->select($name, $list, $selected, $options);
     $groupElement = '<div ' . $this->html->attributes($wrapperOptions) . '>' . $inputElement . $this->getFieldError($name) . '</div>';
     return $this->getFormGroupWithLabel($name, $label, $groupElement);
 }
开发者ID:jeylabs,项目名称:larastrap,代码行数:22,代码来源:BootstrapForm.php

示例5: buildControl

 /**
  * Build all control with the css class, label, and input.
  *
  * @param       $type
  * @param       $name
  * @param null  $value
  * @param array $attributes
  * @param array $options
  * @return string
  */
 public function buildControl($type, $name, $value = null, $attributes = [], $options = [])
 {
     switch ($type) {
         case 'select':
             $options = ['' => config('field-builder.select')] + $options;
             return $this->form->select($name, $options, $value, $attributes);
         case 'password':
             return $this->form->password($name, $attributes);
         case 'checkbox':
             return $this->form->checkbox($name, $value, isset($attributes['checked']), $attributes);
         case 'textarea':
             return $this->form->textarea($name, $value, $attributes);
         case 'number':
             return $this->form->number($name, $value, $attributes);
         case 'radio':
             return $this->form->radio($name, $value, $attributes);
         case 'email':
             return $this->form->email($name, $value, $attributes);
         default:
             return $this->form->input($type, $name, $value, $attributes);
     }
 }
开发者ID:socieboy,项目名称:forms,代码行数:32,代码来源:FieldBuilder.php

示例6: select

 /**
  * Create a select box field.
  *
  * @param string $name
  * @param array $list
  * @param string $selected
  * @param array $options
  * @return string 
  * @static 
  */
 public static function select($name, $list = array(), $selected = null, $options = array())
 {
     return \Collective\Html\FormBuilder::select($name, $list, $selected, $options);
 }
开发者ID:alvarobfdev,项目名称:BaseCRUDproject,代码行数:14,代码来源:_ide_helper.php

示例7: plainSelect

 /**
  * Create a plain select box field.
  *
  * @param  string $name
  * @param  array  $list
  * @param  string $selected
  * @param  array  $options
  *
  * @return string
  */
 public function plainSelect($name, $list = [], $selected = null, $options = [])
 {
     return parent::select($name, $list, $selected, $options);
 }
开发者ID:drickferreira,项目名称:enhanced-bootstrap-forms,代码行数:14,代码来源:FormBuilder.php

示例8: select

 /**
  * Create a select box field.
  *
  * @param  string $name
  * @param  array $list
  * @param  string $selected
  * @param  array $options
  * @return string
  */
 public function select($name, $list = [], $selected = null, $options = [])
 {
     return parent::select($name, $list, $selected, $this->appendErrors($name, $options));
 }
开发者ID:timothyvictor,项目名称:laravel5-foundation,代码行数:13,代码来源:FoundationFiveFormBuilder.php

示例9: select

 /**
  * @see Collective\Html\FormBuilder
  */
 public function select($name, $list = [], $selected = null, $options = [])
 {
     $options = $this->converter->convert(Helper::getFormAttribute($name)) + $options;
     return parent::select($name, $list, $selected, $options);
 }
开发者ID:laravel-ardent,项目名称:laravalid,代码行数:8,代码来源:FormBuilder.php

示例10: select

 public function select($name, $list = [], $selected = null, $options = [])
 {
     $options = $this->setOptionClasses($name, $options, ['form-control']);
     $controlHtml = parent::select($name, $list, $selected, $options);
     return $this->renderControl('select', $controlHtml, $name, '', $options);
 }
开发者ID:genealabs,项目名称:laravel-casts,代码行数:6,代码来源:FormBuilder.php

示例11: select

 /**
  * {@inheritdoc}
  * @param string $name
  * @param array  $list
  * @param null   $selected
  * @param array  $attributes
  * @return string
  */
 public function select($name, $list = array(), $selected = null, $attributes = array())
 {
     $attributes['class'] = isset($attributes['class']) ? self::FORM_CONTROL . ' ' . $attributes['class'] : self::FORM_CONTROL;
     return parent::select($name, $list, $selected, $attributes);
 }
开发者ID:JaapMoolenaar,项目名称:bootstrapper,代码行数:13,代码来源:Form.php

示例12: select

 /**
  * Create a select box field.
  *
  * @param  string  $name
  * @param  array   $list
  * @param  string  $selected
  * @param  array   $options
  *
  * @return string
  */
 public function select($name, $list = array(), $selected = null, $options = [])
 {
     $this->addErrorClass($name, $options);
     $tags['input'] = parent::select($name, $list, $selected, $options);
     $tags['error'] = $this->getErrorTag($name);
     return $this->buildTags($tags);
 }
开发者ID:nerea91,项目名称:laravel,代码行数:17,代码来源:Foundation.php

示例13: function

    $element .= '</select>';
    return form_group($element, $name);
});
Form::macro('submitBtn', function ($name = 'Enviar', $class = "btn btn-sm btn-success margin-top") {
    $btn = '<button type="submit" class="' . $class . '"> <span class="glyphicon glyphicon-save" aria-hidden="true"></span> ' . $name . ' </button>';
    return form_group($btn);
});
Form::macro('selectMultipleField', function ($name, $label = NULL, $options = [], $attributes = [], $value = NULL) {
    $attributes = array_merge($attributes, ['multiple' => true]);
    $element = Form::select($name . '[]', $options, $value ? $value : old($name), field_attributes($name, $attributes));
    return field_wrapper($name, $label, $element);
});
Form::macro('selectMultipleFieldClean', function ($name, $label = NULL, $options = [], $value = NULL, $attributes = []) {
    $attributes = array_merge($attributes, ['placeholder' => $label]);
    $attributes = array_merge($attributes, ['multiple' => true]);
    $element = Form::select($name . '[]', $options, $value ? $value : old($name), field_attributes($name, $attributes));
    return form_group($element, $name);
});
Form::macro('radioInline', function ($name, $label = NULL, array $options, $checked = NULL, $attributes = []) {
    $out = $label ? '<label for="' . $name . '">' . $label . '</label>' : '';
    $values = array_keys($options);
    $out .= '<div class="radio">';
    foreach ($values as $value) {
        $out .= '<label class="radio-inline">';
        $out .= Form::radio($name, $value, $checked ? $checked == $value : old($name) == $value, $attributes) . $options[$value];
        $out .= '</label>';
    }
    $out .= '</div>';
    return form_group($out, $name);
});
Form::macro('radioStack', function ($name, $label = NULL, array $options, $checked = NULL, $attributes = []) {
开发者ID:brunoti,项目名称:html-macros,代码行数:31,代码来源:macros.php


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