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


PHP FormBuilder::checkbox方法代码示例

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


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

示例1: checkbox

 /**
  * Create a checkbox input field.
  *
  * @param  string $name
  * @param  mixed $value
  * @param  bool $checked
  * @param  array $options
  * @return string
  */
 public function checkbox($name, $value = 1, $checked = null, $options = array())
 {
     $label = array_get($options, 'label', $this->translationDomain ? $this->translationDomain . '.' . $name : $name);
     unset($options['label']);
     $label = \Lang::get($label);
     return '<div class="checkbox"><label>' . $this->form->checkbox($name, $value, $checked, $options) . $label . '</label></div>';
 }
开发者ID:Junyue,项目名称:zidisha2,代码行数:16,代码来源:BootstrapFormBuilder.php

示例2: checkbox

 /**
  * Create a Bootstrap checkbox input.
  *
  * @param  string   $name
  * @param  string   $label
  * @param  string   $value
  * @param  boolean  $checked
  * @param  boolean  $inline
  * @param  boolean  $wrapper
  * @param  array    $options
  * @return string
  */
 public function checkbox($name, $label, $value, $checked = null, $inline = false, $options = array())
 {
     $labelOptions = $inline ? array('class' => 'checkbox-inline') : array();
     $inputElement = $this->form->checkbox($name, $value, $checked, $options);
     $labelElement = '<label ' . $this->html->attributes($labelOptions) . '>' . $inputElement . $label . '</label>';
     return $inline ? $labelElement : '<div class="checkbox">' . $labelElement . '</div>';
 }
开发者ID:Javier-Rotelli,项目名称:bootstrap-form,代码行数:19,代码来源:BootstrapForm.php

示例3: prepareColumns

 /**
  * Prepare data grid columns.
  *
  * @param  bool  $results
  * @return array
  */
 protected function prepareColumns($model)
 {
     $el = [];
     foreach ($this->dataGridColumns as $attributes) {
         $type = array_pull($attributes, 'type');
         if ($type) {
             if ($type === 'a') {
                 $elementContent = '<%= r.' . array_pull($attributes, 'content') . ' %>';
                 $link = $this->html->decode($this->html->link('#', $elementContent, $attributes));
                 $link = str_replace('href="#"', 'href="<%= r.edit_uri %>"', $link);
                 $el[] = $link;
             } elseif ($type === 'checkbox') {
                 $checkBoxName = array_pull($attributes, 'name');
                 $value = array_pull($attributes, 'value');
                 $value = '<%= r.' . $value . ' %>';
                 $el[] = $this->html->decode($this->form->checkbox($checkBoxName, $value, null, $attributes));
             }
         } else {
             $el[] = '<%= r.' . array_pull($attributes, 'content') . ' %>';
         }
     }
     return $el;
 }
开发者ID:sohailaammarocs,项目名称:lfc,代码行数:29,代码来源:DataGridGenerator.php

示例4: checkbox

 /**
  * Create a checkbox input field.
  *
  * @param string $name
  * @param mixed $value
  * @param bool $checked
  * @param array $options
  * @return string 
  * @static 
  */
 public static function checkbox($name, $value = 1, $checked = null, $options = array())
 {
     return \Illuminate\Html\FormBuilder::checkbox($name, $value, $checked, $options);
 }
开发者ID:nmkr,项目名称:basic-starter,代码行数:14,代码来源:_ide_helper.php

示例5: checkbox

 /**
  * Create a HTML checkbox input element.
  *
  * @param  string  $name
  * @param  string  $label
  * @param  string  $value
  * @param  bool    $checked
  * @param  array   $attributes
  * @return string
  */
 public function checkbox($name, $label = '', $value = '1', $checked = false, $attributes = array())
 {
     $checked = $this->calculateValue($name, $checked);
     $attributes = $this->setAttributes($name, $attributes, false);
     $field = parent::checkbox($name, $value, $checked, $attributes);
     return $this->buildWrapper($field, $name, $label, true);
 }
开发者ID:jarnstedt,项目名称:former,代码行数:17,代码来源:Former.php

示例6: checkbox

 /**
  * Generate a checkbox input field
  *
  * @param string $name
  * @param string $value
  * @param array  $options
  *
  * @return string
  */
 public function checkbox($name, $value = null, $options = [])
 {
     $checked = $value === 1 || $value === "1" || $value === true ? true : null;
     return $this->formBuilder->checkbox($name, 1, $checked, $options);
 }
开发者ID:kamaroly,项目名称:shift,代码行数:14,代码来源:FieldBuilder.php

示例7: checkboxField

 /**
  * @param Field $field
  * @return string
  */
 public function checkboxField(Field $field)
 {
     return $this->builder->checkbox($field->name, $field->value, $field->checked, $field->getAttributes());
 }
开发者ID:iyoworks,项目名称:form-builder,代码行数:8,代码来源:LaravelFormRenderer.php

示例8: inlineCheckbox

 /**
  * Create an inline checkbox input field.
  *
  * @param  string $name
  * @param  mixed  $value
  * @param  mixed  $label
  * @param  bool   $checked
  * @param  array  $options
  *
  * @return string
  */
 public function inlineCheckbox($name, $value = 1, $label = null, $checked = null, $options = [])
 {
     $checkable = parent::checkbox($name, $value, $checked, $options);
     return $this->wrapInlineCheckable($label, 'checkbox', $checkable);
 }
开发者ID:nterms,项目名称:laravel-bootstrap-forms,代码行数:16,代码来源:FormBuilder.php

示例9: checkbox

 /**
  * Create a checkbox input field.
  *
  * @param  string  $name
  * @param  mixed   $value
  * @param  bool    $checked
  * @param  array   $options
  * @return string
  */
 public function checkbox($name, $value = 1, $checked = null, $options = array())
 {
     $this->appendReadOnly($options);
     return parent::checkbox($name, $value, $checked, $options);
 }
开发者ID:leitom,项目名称:role,代码行数:14,代码来源:FormBuilder.php


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