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


PHP FormBuilder::checkbox方法代码示例

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


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

示例1: checkbox

 /**
  * Create a Bootstrap checkbox input.
  *
  * @param  string   $name
  * @param  string   $label
  * @param  string   $value
  * @param  bool     $checked
  * @param  bool     $inline
  * @param  array    $options
  * @return string
  */
 public function checkbox($name, $label, $value, $checked = null, $inline = false, array $options = [])
 {
     $labelOptions = $inline ? ['class' => 'checkbox-inline'] : [];
     $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:jeylabs,项目名称:larastrap,代码行数:18,代码来源:BootstrapForm.php

示例2: check

    public function check($name, $label)
    {
        return sprintf('
			<div class="checkbox col-lg-12">
				<label>
			  	%s%s
			  </label>
			</div>', parent::checkbox($name), $label);
    }
开发者ID:nitsmax,项目名称:els,代码行数:9,代码来源:FormBuilder.php

示例3: checkbox

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

示例4: checkHorizontal

    public function checkHorizontal($name, $label, $value)
    {
        return sprintf('
			<div class="form-group">
				<div class="checkbox">
					<label>
						%s%s
					</label>
				</div>
			</div>', parent::checkbox($name, $value), $label);
    }
开发者ID:thaida,项目名称:CMS,代码行数:11,代码来源:FormBuilder.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: 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 \Collective\Html\FormBuilder::checkbox($name, $value, $checked, $options);
 }
开发者ID:alvarobfdev,项目名称:BaseCRUDproject,代码行数:14,代码来源:_ide_helper.php

示例7: 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 = [])
 {
     //Capture Bootstrap classes
     $class = $this->getClasses($name, $options);
     $class = $this->appendClassToOptions('checkbox-inline', $class);
     $object = parent::checkbox($name, $value, $checked, $options);
     return $this->wrapCheckable($label, $class, $object);
 }
开发者ID:drickferreira,项目名称:enhanced-bootstrap-forms,代码行数:19,代码来源:FormBuilder.php

示例8: addCheckbox

 /**
  * Add a checkbox column.
  *
  * @param  array $attributes
  * @return $this
  */
 public function addCheckbox(array $attributes = [])
 {
     $attributes = array_merge(['defaultContent' => '<input type="checkbox" ' . $this->html->attributes($attributes) . '/>', 'title' => $this->form->checkbox('', '', false, ['id' => 'dataTablesCheckbox']), 'data' => 'checkbox', 'name' => 'checkbox', 'orderable' => false, 'searchable' => false, 'exportable' => false, 'printable' => true, 'width' => '10px'], $attributes);
     $this->collection->push(new Column($attributes));
     return $this;
 }
开发者ID:rikardote,项目名称:agenda,代码行数:12,代码来源:Builder.php

示例9: checkbox

 public function checkbox($name, $value = 1, $checked = null, $options = [])
 {
     $additionalClasses = $this->usesBootstrap4() ? 'form-check-input' : '';
     $options = $this->setOptionClasses($name, $options, [$additionalClasses]);
     $label = $options['label'];
     $controlOptions = $this->getControlOptions(collect($options), ['form-control', 'placeholder']);
     $controlHtml = parent::checkbox($name, $value, $checked, $controlOptions->toArray()) . " {$label}";
     return $this->renderControl('checkbox', $controlHtml, $name, $value, $options);
 }
开发者ID:genealabs,项目名称:laravel-casts,代码行数:9,代码来源:FormBuilder.php

示例10: 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 = [])
 {
     $prefix = $value == 1 ? $this->hidden($name, '0') : '';
     $checkable = $prefix . parent::checkbox($name, $value, $checked, $options);
     return $this->wrapInlineCheckable($label, 'checkbox', $checkable);
 }
开发者ID:summmmit,项目名称:web,代码行数:17,代码来源:BootstrapFormBuilder.php

示例11: inlineCheckbox

 /**
  * Create an inline checkbox
  *
  * @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 = array())
 {
     return $this->wrapInlineCheckable($label, 'checkbox', parent::checkbox($name, $value, $checked, $options));
 }
开发者ID:core-system,项目名称:bootstrap-form,代码行数:14,代码来源:BootstrapFormBuilder.php

示例12: foreach

    $out = $label ? '<label for="' . $name . '">' . $label . '</label>' : '';
    $values = array_keys($options);
    foreach ($values as $value) {
        $out .= '<div class="radio">';
        $out .= '<label>';
        $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('checkboxField', function ($name, $label = NULL, $value = 1, $checked = NULL, $attributes = []) {
    $out = '<div class="checkbox';
    $out .= field_error($name) . '">';
    $out .= '<label>';
    $out .= Form::checkbox($name, $value, $checked ? $checked : old($name), $attributes) . $label;
    $out .= '</div>';
    return $out;
});
Form::macro('delete', function ($route, $id, $text = '', $tooltip = false, $icon = true) {
    $model = explode('.', $route);
    $model = ucfirst(substr($model[1], 0, -1));
    $tooltip = $tooltip ? $tooltip : 'Deletar ' . $model;
    $out = Form::open(['route' => [$route . '.destroy', $id], 'method' => 'DELETE', 'data-id' => $id, 'style' => 'display: inline-block']);
    $out .= '<button data-toggle="tooltip" data-placement="top" data-original-title="' . $tooltip . '" type="submit" data-id="' . $id . '" class="btn btn-danger btn-sm ' . ($icon ? 'btn-fw' : '') . '">';
    $out .= $icon ? '<i class="fa fa-times"></i> &nbsp;' . $text : $text;
    $out .= '</button>';
    $out .= Form::close();
    return $out;
});
Form::macro('undelete', function ($route, $id, $text = '', $tooltip = false) {
开发者ID:brunoti,项目名称:html-macros,代码行数:31,代码来源:macros.php


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