yii2-bootstrap5/src/ActiveForm.php

140 lines
4.0 KiB
PHP
Raw Normal View History

2021-02-10 05:04:59 +08:00
<?php
declare(strict_types=1);
namespace yii\bootstrap5;
use yii\base\InvalidConfigException;
/**
* A Bootstrap 4 enhanced version of [[\yii\widgets\ActiveForm]].
*
* This class mainly adds the [[layout]] property to choose a Bootstrap 4 form layout.
* So for example to render a horizontal form you would:
*
* ```php
* use yii\bootstrap5\ActiveForm;
*
* $form = ActiveForm::begin(['layout' => 'horizontal'])
* ```
*
* This will set default values for the [[ActiveField]]
* to render horizontal form fields. In particular the [[ActiveField::template|template]]
* is set to `{label} {beginWrapper} {input} {error} {endWrapper} {hint}` and the
* [[ActiveField::horizontalCssClasses|horizontalCssClasses]] are set to:
*
* ```php
* [
* 'offset' => 'offset-sm-3',
* 'label' => 'col-sm-3',
* 'wrapper' => 'col-sm-6',
* 'error' => '',
* 'hint' => 'col-sm-3',
* ]
* ```
*
* To get a different column layout in horizontal mode you can modify those options
* through [[fieldConfig]]:
*
* ```php
* $form = ActiveForm::begin([
* 'layout' => 'horizontal',
* 'fieldConfig' => [
* 'template' => "{label}\n{beginWrapper}\n{input}\n{hint}\n{error}\n{endWrapper}",
* 'horizontalCssClasses' => [
* 'label' => 'col-sm-4',
* 'offset' => 'offset-sm-4',
* 'wrapper' => 'col-sm-8',
* 'error' => '',
* 'hint' => '',
* ],
* ],
* ]);
* ```
*
* @see ActiveField for details on the [[fieldConfig]] options
* @see https://getbootstrap.com/docs/5.0/components/forms/
*
* @author Michael Härtl <haertl.mike@gmail.com>
* @author Simon Karlen <simi.albi@outlook.com>
*/
class ActiveForm extends \yii\widgets\ActiveForm
{
/**
* Default form layout
*/
const LAYOUT_DEFAULT = 'default';
/**
* Horizontal form layout
*/
const LAYOUT_HORIZONTAL = 'horizontal';
/**
* Inline form layout
*/
const LAYOUT_INLINE = 'inline';
2021-07-12 23:22:29 +08:00
/**
* Floating labels form layout
*/
const LAYOUT_FLOATING = 'floating';
2021-02-10 05:04:59 +08:00
/**
* @var string the default field class name when calling [[field()]] to create a new field.
* @see fieldConfig
*/
public $fieldClass = ActiveField::class;
/**
* @var array HTML attributes for the form tag. Default is `[]`.
*/
public $options = [];
/**
* @var string the form layout. Either [[LAYOUT_DEFAULT]], [[LAYOUT_HORIZONTAL]] or [[LAYOUT_INLINE]].
* By choosing a layout, an appropriate default field configuration is applied. This will
* render the form fields with slightly different markup for each layout. You can
* override these defaults through [[fieldConfig]].
* @see ActiveField for details on Bootstrap 4 field configuration
*/
public string $layout = self::LAYOUT_DEFAULT;
/**
* @var string the CSS class that is added to a field container when the associated attribute has validation error.
*/
public $errorCssClass = 'is-invalid';
/**
* {@inheritdoc}
*/
public $successCssClass = 'is-valid';
/**
* {@inheritdoc}
*/
public $errorSummaryCssClass = 'alert alert-danger';
/**
* {@inheritdoc}
*/
public $validationStateOn = self::VALIDATION_STATE_ON_INPUT;
/**
* {@inheritdoc}
* @throws InvalidConfigException
*/
public function init()
{
2021-07-12 23:22:29 +08:00
if (!in_array($this->layout, [self::LAYOUT_DEFAULT, self::LAYOUT_HORIZONTAL, self::LAYOUT_INLINE, self::LAYOUT_FLOATING])) {
2021-02-10 05:04:59 +08:00
throw new InvalidConfigException('Invalid layout type: ' . $this->layout);
}
if ($this->layout === self::LAYOUT_INLINE) {
Html::addCssClass($this->options, ['widget' => 'form-inline']);
}
parent::init();
}
/**
2021-07-12 23:22:29 +08:00
* {@inheritDoc}
* @return ActiveField|\yii\widgets\ActiveField
2021-02-10 05:04:59 +08:00
*/
2021-07-12 23:22:29 +08:00
public function field($model, $attribute, $options = []): ActiveField
2021-02-10 05:04:59 +08:00
{
return parent::field($model, $attribute, $options);
}
}