本文整理汇总了PHP中Collective\Html\FormBuilder::radio方法的典型用法代码示例。如果您正苦于以下问题:PHP FormBuilder::radio方法的具体用法?PHP FormBuilder::radio怎么用?PHP FormBuilder::radio使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Collective\Html\FormBuilder
的用法示例。
在下文中一共展示了FormBuilder::radio方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: radio
/**
* Create a Bootstrap radio input.
*
* @param string $name
* @param string $label
* @param string $value
* @param bool $checked
* @param bool $inline
* @param array $options
* @return string
*/
public function radio($name, $label, $value, $checked = null, $inline = false, array $options = [])
{
$labelOptions = $inline ? ['class' => 'radio-inline'] : [];
$inputElement = $this->form->radio($name, $value, $checked, $options);
$labelElement = '<label ' . $this->html->attributes($labelOptions) . '>' . $inputElement . $label . '</label>';
return $inline ? $labelElement : '<div class="radio">' . $labelElement . '</div>';
}
示例2: radio
public function radio($name, $value = null, $checked = null, $options = [])
{
return sprintf('
<div class="input-field col l6 s8 offset-l3 offset-s2">
%s
%s
</div>', parent::radio($name, $value, $checked, $options), parent::label($options['id'], $value, []));
}
示例3: 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);
}
}
示例4: radio
/**
* Create a radio button input field.
*
* @param string $name
* @param mixed $value
* @param bool $checked
* @param array $options
* @return string
* @static
*/
public static function radio($name, $value = null, $checked = null, $options = array())
{
return \Collective\Html\FormBuilder::radio($name, $value, $checked, $options);
}
示例5: inlineRadio
/**
* Create an inline radio button input field.
*
* @param string $name
* @param mixed $value
* @param mixed $label
* @param bool $checked
* @param array $options
*
* @return string
*/
public function inlineRadio($name, $value = null, $label = null, $checked = null, $options = [])
{
//Capture label
$label = $this->getLabel($name, $options, false);
//Capture Bootstrap classes
$class = $this->getClasses($name, $options);
$class = $this->appendClassToOptions('radio-inline', $class);
$object = parent::radio($name, $value, $checked, $options);
return $this->wrapCheckable($label, $class, $object);
}
示例6: wrappedRadio
/**
* @param $name
* @param $labelText
* @param null $value
* @param null $checked
* @param array $options
* @return string
*/
public function wrappedRadio($name, $labelText, $value = null, $checked = null, $options = [])
{
return $this->wrapWithLabel($name, $labelText, $options, parent::radio($name, $value, $checked, $this->appendErrors($name, $options)));
}
示例7: radio
public function radio($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::radio($name, $value, $checked, $controlOptions->toArray()) . " {$label}";
return $this->renderControl('radio', $controlHtml, $name, $value, $options);
}
示例8: inlineRadio
/**
* Create an inline radio button input field.
*
* @param string $name
* @param mixed $value
* @param mixed $label
* @param bool $checked
* @param array $options
*
* @return string
*/
public function inlineRadio($name, $value = null, $label = null, $checked = null, $options = [])
{
$checkable = parent::radio($name, $value, $checked, $options);
return $this->wrapInlineCheckable($label, 'radio', $checkable);
}
示例9: inlineRadio
/**
* Create an inline radio button
*
* @param string $name
* @param mixed $value
* @param mixed $label
* @param bool $checked
* @param array $options
* @return string
*/
public function inlineRadio($name, $value = null, $label = null, $checked = null, $options = array())
{
return $this->wrapInlineCheckable($label, 'radio', parent::radio($name, $value, $checked, $options));
}
示例10: foreach
$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 = []) {
$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);