本文整理汇总了PHP中Collective\Html\FormBuilder::file方法的典型用法代码示例。如果您正苦于以下问题:PHP FormBuilder::file方法的具体用法?PHP FormBuilder::file怎么用?PHP FormBuilder::file使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Collective\Html\FormBuilder
的用法示例。
在下文中一共展示了FormBuilder::file方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: file
public function file($name, $options = [])
{
$options = $this->setOptionClasses($name, $options, ['form-control form-control-file']);
$controlOptions = $this->getControlOptions(collect($options), ['placeholder']);
$controlHtml = parent::file($name, $controlOptions->toArray());
return $this->renderControl('file', $controlHtml, $name, '', $options);
}
示例2: file
/**
* Create a file input field.
*
* @param string $name
* @param array $options
* @return string
* @static
*/
public static function file($name, $options = array())
{
return \Collective\Html\FormBuilder::file($name, $options);
}
示例3: function
$element = Form::password($name, field_attributes($name, $attributes));
return form_group($element, $name);
});
Form::macro('textareaField', function ($name, $label = NULL, $value = NULL, $attributes = []) {
$attributes = array_merge($attributes, ['rows' => 4]);
$element = Form::textarea($name, $value ? $value : old($name), field_attributes($name, $attributes));
return field_wrapper($name, $label, $element);
});
Form::macro('tinymce', function ($name, $label = NULL, $value = NULL, $attributes = []) {
$attributes = array_merge($attributes, ['rows' => 4, 'data-tinymce' => 'true']);
$element = Form::textarea($name, $value ? $value : old($name), field_attributes($name, $attributes));
$element .= Form::hidden($name . '_text', $value ? $value : old($name), ['id' => $name . '_text']);
return field_wrapper($name, $label, $element);
});
Form::macro('fileField', function ($name, $label = NULL, $attributes = []) {
$element = '<p>' . Form::file($name, field_attributes($name, $attributes, true)) . '</p>';
return field_wrapper($name, $label, $element);
});
Form::macro('textareaFieldClean', function ($name, $label = NULL, $value = NULL, $attributes = []) {
$attributes = array_merge($attributes, ['placeholder' => $label, 'rows' => 4]);
$element = Form::textarea($name, $value ? $value : old($name), field_attributes($name, $attributes));
return form_group($element, $name);
});
Form::macro('selectFieldClean', function ($name, $label = NULL, $options, $value = NULL, $attributes = []) {
$attributes = array_merge($attributes, ['placeholder' => $label]);
$element = Form::select($name, $options, $value ? $value : old($name), field_attributes($name, $attributes));
return form_group($element, $name);
});
Form::macro('selectizeClean', function ($name, $label = NULL, $options, $attributes = [], $value = NULL) {
$attributes = array_merge($attributes, ['data-selectize' => 'true', 'placeholder' => $label]);
$element = Form::select($name, $options, $value ? $value : old($name), field_attributes($name, $attributes));