You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					424 lines
				
				16 KiB
			
		
		
			
		
	
	
					424 lines
				
				16 KiB
			| 
											12 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
|  |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
|  |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | namespace yii\bootstrap;
 | ||
|  | 
 | ||
|  | use yii\helpers\ArrayHelper;
 | ||
|  | 
 | ||
|  | /**
 | ||
| 
											12 years ago
										 |  * A Bootstrap 3 enhanced version of [[\yii\widgets\ActiveField]].
 | ||
| 
											12 years ago
										 |  *
 | ||
| 
											12 years ago
										 |  * This class adds some useful features to [[\yii\widgets\ActiveField|ActiveField]] to render all
 | ||
| 
											12 years ago
										 |  * sorts of Bootstrap 3 form fields in different form layouts:
 | ||
|  |  *
 | ||
|  |  * - [[inputTemplate]] is an optional template to render complex inputs, for example input groups
 | ||
| 
											12 years ago
										 |  * - [[horizontalCssClasses]] defines the CSS grid classes to add to label, wrapper, error and hint
 | ||
| 
											12 years ago
										 |  *   in horizontal forms
 | ||
|  |  * - [[inline]]/[[inline()]] is used to render inline [[checkboxList()]] and [[radioList()]]
 | ||
|  |  * - [[enableError]] can be set to `false` to disable to the error
 | ||
|  |  * - [[enableLabel]] can be set to `false` to disable to the label
 | ||
| 
											8 years ago
										 |  * - [[label()]] can be used with a `bool` argument to enable/disable the label
 | ||
| 
											12 years ago
										 |  *
 | ||
|  |  * There are also some new placeholders that you can use in the [[template]] configuration:
 | ||
|  |  *
 | ||
|  |  * - `{beginLabel}`: the opening label tag
 | ||
|  |  * - `{labelTitle}`: the label title for use with `{beginLabel}`/`{endLabel}`
 | ||
|  |  * - `{endLabel}`: the closing label tag
 | ||
|  |  * - `{beginWrapper}`: the opening wrapper tag
 | ||
|  |  * - `{endWrapper}`: the closing wrapper tag
 | ||
|  |  *
 | ||
|  |  * The wrapper tag is only used for some layouts and form elements.
 | ||
|  |  *
 | ||
|  |  * Note that some elements use slightly different defaults for [[template]] and other options.
 | ||
| 
											12 years ago
										 |  * You may want to override those predefined templates for checkboxes, radio buttons, checkboxLists
 | ||
|  |  * and radioLists in the [[\yii\widgets\ActiveForm::fieldConfig|fieldConfig]] of the
 | ||
|  |  * [[\yii\widgets\ActiveForm]]:
 | ||
|  |  *
 | ||
|  |  * - [[checkboxTemplate]] the template for checkboxes in default layout
 | ||
|  |  * - [[radioTemplate]] the template for radio buttons in default layout
 | ||
|  |  * - [[horizontalCheckboxTemplate]] the template for checkboxes in horizontal layout
 | ||
|  |  * - [[horizontalRadioTemplate]] the template for radio buttons in horizontal layout
 | ||
|  |  * - [[inlineCheckboxListTemplate]] the template for inline checkboxLists
 | ||
|  |  * - [[inlineRadioListTemplate]] the template for inline radioLists
 | ||
| 
											12 years ago
										 |  *
 | ||
|  |  * Example:
 | ||
|  |  *
 | ||
|  |  * ```php
 | ||
|  |  * use yii\bootstrap\ActiveForm;
 | ||
|  |  *
 | ||
| 
											11 years ago
										 |  * $form = ActiveForm::begin(['layout' => 'horizontal']);
 | ||
| 
											12 years ago
										 |  *
 | ||
|  |  * // Form field without label
 | ||
|  |  * echo $form->field($model, 'demo', [
 | ||
|  |  *     'inputOptions' => [
 | ||
|  |  *         'placeholder' => $model->getAttributeLabel('demo'),
 | ||
|  |  *     ],
 | ||
|  |  * ])->label(false);
 | ||
|  |  *
 | ||
|  |  * // Inline radio list
 | ||
|  |  * echo $form->field($model, 'demo')->inline()->radioList($items);
 | ||
|  |  *
 | ||
|  |  * // Control sizing in horizontal mode
 | ||
|  |  * echo $form->field($model, 'demo', [
 | ||
|  |  *     'horizontalCssClasses' => [
 | ||
|  |  *         'wrapper' => 'col-sm-2',
 | ||
|  |  *     ]
 | ||
|  |  * ]);
 | ||
|  |  *
 | ||
| 
											12 years ago
										 |  * // With 'default' layout you would use 'template' to size a specific field:
 | ||
| 
											11 years ago
										 |  * echo $form->field($model, 'demo', [
 | ||
|  |  *     'template' => '{label} <div class="row"><div class="col-sm-4">{input}{error}{hint}</div></div>'
 | ||
|  |  * ]);
 | ||
| 
											12 years ago
										 |  *
 | ||
| 
											11 years ago
										 |  * // Input group
 | ||
|  |  * echo $form->field($model, 'demo', [
 | ||
|  |  *     'inputTemplate' => '<div class="input-group"><span class="input-group-addon">@</span>{input}</div>',
 | ||
|  |  * ]);
 | ||
| 
											12 years ago
										 |  *
 | ||
| 
											11 years ago
										 |  * ActiveForm::end();
 | ||
|  |  * ```
 | ||
| 
											12 years ago
										 |  *
 | ||
|  |  * @see \yii\bootstrap\ActiveForm
 | ||
|  |  * @see http://getbootstrap.com/css/#forms
 | ||
|  |  *
 | ||
|  |  * @author Michael Härtl <haertl.mike@gmail.com>
 | ||
|  |  * @since 2.0
 | ||
|  |  */
 | ||
|  | class ActiveField extends \yii\widgets\ActiveField
 | ||
|  | {
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * @var bool whether to render [[checkboxList()]] and [[radioList()]] inline.
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public $inline = false;
 | ||
|  |     /**
 | ||
| 
											12 years ago
										 |      * @var string|null optional template to render the `{input}` placeholder content
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public $inputTemplate;
 | ||
|  |     /**
 | ||
|  |      * @var array options for the wrapper tag, used in the `{beginWrapper}` placeholder
 | ||
|  |      */
 | ||
|  |     public $wrapperOptions = [];
 | ||
|  |     /**
 | ||
|  |      * @var null|array CSS grid classes for horizontal layout. This must be an array with these keys:
 | ||
|  |      *  - 'offset' the offset grid class to append to the wrapper if no label is rendered
 | ||
|  |      *  - 'label' the label grid class
 | ||
|  |      *  - 'wrapper' the wrapper grid class
 | ||
|  |      *  - 'error' the error grid class
 | ||
|  |      *  - 'hint' the hint grid class
 | ||
|  |      */
 | ||
| 
											8 years ago
										 |     public $horizontalCssClasses = [];
 | ||
| 
											12 years ago
										 |     /**
 | ||
| 
											12 years ago
										 |      * @var string the template for checkboxes in default layout
 | ||
|  |      */
 | ||
|  |     public $checkboxTemplate = "<div class=\"checkbox\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n{error}\n{hint}\n</div>";
 | ||
|  |     /**
 | ||
|  |      * @var string the template for radios in default layout
 | ||
|  |      */
 | ||
|  |     public $radioTemplate = "<div class=\"radio\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n{error}\n{hint}\n</div>";
 | ||
|  |     /**
 | ||
|  |      * @var string the template for checkboxes in horizontal layout
 | ||
|  |      */
 | ||
|  |     public $horizontalCheckboxTemplate = "{beginWrapper}\n<div class=\"checkbox\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n</div>\n{error}\n{endWrapper}\n{hint}";
 | ||
|  |     /**
 | ||
|  |      * @var string the template for radio buttons in horizontal layout
 | ||
|  |      */
 | ||
|  |     public $horizontalRadioTemplate = "{beginWrapper}\n<div class=\"radio\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n</div>\n{error}\n{endWrapper}\n{hint}";
 | ||
|  |     /**
 | ||
|  |      * @var string the template for inline checkboxLists
 | ||
|  |      */
 | ||
|  |     public $inlineCheckboxListTemplate = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}";
 | ||
|  |     /**
 | ||
|  |      * @var string the template for inline radioLists
 | ||
|  |      */
 | ||
|  |     public $inlineRadioListTemplate = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}";
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * @var bool whether to render the error. Default is `true` except for layout `inline`.
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public $enableError = true;
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * @var bool whether to render the label. Default is `true`.
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public $enableLabel = true;
 | ||
|  | 
 | ||
| 
											11 years ago
										 | 
 | ||
| 
											12 years ago
										 |     /**
 | ||
| 
											8 years ago
										 |      * {@inheritdoc}
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public function __construct($config = [])
 | ||
|  |     {
 | ||
|  |         $layoutConfig = $this->createLayoutConfig($config);
 | ||
|  |         $config = ArrayHelper::merge($layoutConfig, $config);
 | ||
| 
											11 years ago
										 |         parent::__construct($config);
 | ||
| 
											12 years ago
										 |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * {@inheritdoc}
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public function render($content = null)
 | ||
|  |     {
 | ||
|  |         if ($content === null) {
 | ||
|  |             if (!isset($this->parts['{beginWrapper}'])) {
 | ||
|  |                 $options = $this->wrapperOptions;
 | ||
|  |                 $tag = ArrayHelper::remove($options, 'tag', 'div');
 | ||
|  |                 $this->parts['{beginWrapper}'] = Html::beginTag($tag, $options);
 | ||
|  |                 $this->parts['{endWrapper}'] = Html::endTag($tag);
 | ||
|  |             }
 | ||
| 
											12 years ago
										 |             if ($this->enableLabel === false) {
 | ||
| 
											12 years ago
										 |                 $this->parts['{label}'] = '';
 | ||
|  |                 $this->parts['{beginLabel}'] = '';
 | ||
|  |                 $this->parts['{labelTitle}'] = '';
 | ||
|  |                 $this->parts['{endLabel}'] = '';
 | ||
|  |             } elseif (!isset($this->parts['{beginLabel}'])) {
 | ||
|  |                 $this->renderLabelParts();
 | ||
|  |             }
 | ||
| 
											12 years ago
										 |             if ($this->enableError === false) {
 | ||
| 
											12 years ago
										 |                 $this->parts['{error}'] = '';
 | ||
|  |             }
 | ||
|  |             if ($this->inputTemplate) {
 | ||
|  |                 $input = isset($this->parts['{input}']) ?
 | ||
|  |                     $this->parts['{input}'] : Html::activeTextInput($this->model, $this->attribute, $this->inputOptions);
 | ||
|  |                 $this->parts['{input}'] = strtr($this->inputTemplate, ['{input}' => $input]);
 | ||
|  |             }
 | ||
|  |         }
 | ||
|  |         return parent::render($content);
 | ||
|  |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * {@inheritdoc}
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public function checkbox($options = [], $enclosedByLabel = true)
 | ||
|  |     {
 | ||
|  |         if ($enclosedByLabel) {
 | ||
|  |             if (!isset($options['template'])) {
 | ||
| 
											12 years ago
										 |                 $this->template = $this->form->layout === 'horizontal' ?
 | ||
| 
											12 years ago
										 |                     $this->horizontalCheckboxTemplate : $this->checkboxTemplate;
 | ||
| 
											12 years ago
										 |             } else {
 | ||
|  |                 $this->template = $options['template'];
 | ||
|  |                 unset($options['template']);
 | ||
| 
											12 years ago
										 |             }
 | ||
| 
											11 years ago
										 |             if (isset($options['label'])) {
 | ||
|  |                 $this->parts['{labelTitle}'] = $options['label'];
 | ||
|  |             }
 | ||
| 
											12 years ago
										 |             if ($this->form->layout === 'horizontal') {
 | ||
|  |                 Html::addCssClass($this->wrapperOptions, $this->horizontalCssClasses['offset']);
 | ||
|  |             }
 | ||
| 
											12 years ago
										 |             $this->labelOptions['class'] = null;
 | ||
|  |         }
 | ||
|  | 
 | ||
| 
											11 years ago
										 |         return parent::checkbox($options, false);
 | ||
| 
											12 years ago
										 |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * {@inheritdoc}
 | ||
| 
											12 years ago
										 |      */
 | ||
| 
											12 years ago
										 |     public function radio($options = [], $enclosedByLabel = true)
 | ||
|  |     {
 | ||
|  |         if ($enclosedByLabel) {
 | ||
|  |             if (!isset($options['template'])) {
 | ||
|  |                 $this->template = $this->form->layout === 'horizontal' ?
 | ||
|  |                     $this->horizontalRadioTemplate : $this->radioTemplate;
 | ||
|  |             } else {
 | ||
|  |                 $this->template = $options['template'];
 | ||
|  |                 unset($options['template']);
 | ||
|  |             }
 | ||
| 
											11 years ago
										 |             if (isset($options['label'])) {
 | ||
|  |                 $this->parts['{labelTitle}'] = $options['label'];
 | ||
|  |             }
 | ||
| 
											12 years ago
										 |             if ($this->form->layout === 'horizontal') {
 | ||
|  |                 Html::addCssClass($this->wrapperOptions, $this->horizontalCssClasses['offset']);
 | ||
|  |             }
 | ||
|  |             $this->labelOptions['class'] = null;
 | ||
|  |         }
 | ||
|  | 
 | ||
| 
											11 years ago
										 |         return parent::radio($options, false);
 | ||
| 
											12 years ago
										 |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * {@inheritdoc}
 | ||
| 
											12 years ago
										 |      */
 | ||
| 
											12 years ago
										 |     public function checkboxList($items, $options = [])
 | ||
|  |     {
 | ||
|  |         if ($this->inline) {
 | ||
|  |             if (!isset($options['template'])) {
 | ||
| 
											12 years ago
										 |                 $this->template = $this->inlineCheckboxListTemplate;
 | ||
| 
											12 years ago
										 |             } else {
 | ||
|  |                 $this->template = $options['template'];
 | ||
|  |                 unset($options['template']);
 | ||
| 
											12 years ago
										 |             }
 | ||
|  |             if (!isset($options['itemOptions'])) {
 | ||
|  |                 $options['itemOptions'] = [
 | ||
|  |                     'labelOptions' => ['class' => 'checkbox-inline'],
 | ||
|  |                 ];
 | ||
|  |             }
 | ||
| 
											8 years ago
										 |         } elseif (!isset($options['item'])) {
 | ||
| 
											10 years ago
										 |             $itemOptions = isset($options['itemOptions']) ? $options['itemOptions'] : [];
 | ||
| 
											8 years ago
										 |             $encode = ArrayHelper::getValue($options, 'encode', true);
 | ||
|  |             $options['item'] = function ($index, $label, $name, $checked, $value) use ($itemOptions, $encode) {
 | ||
|  |                 $options = array_merge([
 | ||
|  |                     'label' => $encode ? Html::encode($label) : $label,
 | ||
|  |                     'value' => $value
 | ||
|  |                 ], $itemOptions);
 | ||
| 
											10 years ago
										 |                 return '<div class="checkbox">' . Html::checkbox($name, $checked, $options) . '</div>';
 | ||
| 
											11 years ago
										 |             };
 | ||
| 
											12 years ago
										 |         }
 | ||
|  |         parent::checkboxList($items, $options);
 | ||
|  |         return $this;
 | ||
|  |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * {@inheritdoc}
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public function radioList($items, $options = [])
 | ||
|  |     {
 | ||
|  |         if ($this->inline) {
 | ||
|  |             if (!isset($options['template'])) {
 | ||
| 
											12 years ago
										 |                 $this->template = $this->inlineRadioListTemplate;
 | ||
| 
											12 years ago
										 |             } else {
 | ||
|  |                 $this->template = $options['template'];
 | ||
|  |                 unset($options['template']);
 | ||
| 
											12 years ago
										 |             }
 | ||
|  |             if (!isset($options['itemOptions'])) {
 | ||
|  |                 $options['itemOptions'] = [
 | ||
|  |                     'labelOptions' => ['class' => 'radio-inline'],
 | ||
|  |                 ];
 | ||
|  |             }
 | ||
| 
											11 years ago
										 |         }  elseif (!isset($options['item'])) {
 | ||
| 
											10 years ago
										 |             $itemOptions = isset($options['itemOptions']) ? $options['itemOptions'] : [];
 | ||
| 
											8 years ago
										 |             $encode = ArrayHelper::getValue($options, 'encode', true);
 | ||
|  |             $options['item'] = function ($index, $label, $name, $checked, $value) use ($itemOptions, $encode) {
 | ||
|  |                 $options = array_merge([
 | ||
|  |                     'label' => $encode ? Html::encode($label) : $label,
 | ||
|  |                     'value' => $value
 | ||
|  |                 ], $itemOptions);
 | ||
| 
											10 years ago
										 |                 return '<div class="radio">' . Html::radio($name, $checked, $options) . '</div>';
 | ||
| 
											11 years ago
										 |             };
 | ||
| 
											12 years ago
										 |         }
 | ||
|  |         parent::radioList($items, $options);
 | ||
|  |         return $this;
 | ||
|  |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
| 
											11 years ago
										 |      * Renders Bootstrap static form control.
 | ||
|  |      * @param array $options the tag options in terms of name-value pairs. These will be rendered as
 | ||
|  |      * the attributes of the resulting tag. There are also a special options:
 | ||
| 
											11 years ago
										 |      *
 | ||
| 
											8 years ago
										 |      * - encode: bool, whether value should be HTML-encoded or not.
 | ||
| 
											11 years ago
										 |      *
 | ||
| 
											11 years ago
										 |      * @return $this the field object itself
 | ||
| 
											11 years ago
										 |      * @since 2.0.5
 | ||
| 
											10 years ago
										 |      * @see http://getbootstrap.com/css/#forms-controls-static
 | ||
| 
											11 years ago
										 |      */
 | ||
|  |     public function staticControl($options = [])
 | ||
|  |     {
 | ||
|  |         $this->adjustLabelFor($options);
 | ||
|  |         $this->parts['{input}'] = Html::activeStaticControl($this->model, $this->attribute, $options);
 | ||
|  |         return $this;
 | ||
|  |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * {@inheritdoc}
 | ||
| 
											12 years ago
										 |      */
 | ||
|  |     public function label($label = null, $options = [])
 | ||
|  |     {
 | ||
|  |         if (is_bool($label)) {
 | ||
|  |             $this->enableLabel = $label;
 | ||
| 
											12 years ago
										 |             if ($label === false && $this->form->layout === 'horizontal') {
 | ||
| 
											12 years ago
										 |                 Html::addCssClass($this->wrapperOptions, $this->horizontalCssClasses['offset']);
 | ||
|  |             }
 | ||
|  |         } else {
 | ||
| 
											12 years ago
										 |             $this->enableLabel = true;
 | ||
| 
											12 years ago
										 |             $this->renderLabelParts($label, $options);
 | ||
|  |             parent::label($label, $options);
 | ||
|  |         }
 | ||
|  |         return $this;
 | ||
|  |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
| 
											8 years ago
										 |      * @param bool $value whether to render a inline list
 | ||
| 
											11 years ago
										 |      * @return $this the field object itself
 | ||
| 
											12 years ago
										 |      * Make sure you call this method before [[checkboxList()]] or [[radioList()]] to have any effect.
 | ||
|  |      */
 | ||
|  |     public function inline($value = true)
 | ||
|  |     {
 | ||
| 
											11 years ago
										 |         $this->inline = (bool) $value;
 | ||
| 
											12 years ago
										 |         return $this;
 | ||
|  |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
|  |      * @param array $instanceConfig the configuration passed to this instance's constructor
 | ||
|  |      * @return array the layout specific default configuration for this instance
 | ||
|  |      */
 | ||
|  |     protected function createLayoutConfig($instanceConfig)
 | ||
|  |     {
 | ||
|  |         $config = [
 | ||
|  |             'hintOptions' => [
 | ||
|  |                 'tag' => 'p',
 | ||
|  |                 'class' => 'help-block',
 | ||
|  |             ],
 | ||
|  |             'errorOptions' => [
 | ||
|  |                 'tag' => 'p',
 | ||
| 
											12 years ago
										 |                 'class' => 'help-block help-block-error',
 | ||
| 
											12 years ago
										 |             ],
 | ||
|  |             'inputOptions' => [
 | ||
|  |                 'class' => 'form-control',
 | ||
|  |             ],
 | ||
|  |         ];
 | ||
|  | 
 | ||
|  |         $layout = $instanceConfig['form']->layout;
 | ||
|  | 
 | ||
| 
											12 years ago
										 |         if ($layout === 'horizontal') {
 | ||
| 
											12 years ago
										 |             $config['template'] = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}";
 | ||
| 
											8 years ago
										 |             $cssClasses = array_merge([
 | ||
| 
											12 years ago
										 |                 'offset' => 'col-sm-offset-3',
 | ||
|  |                 'label' => 'col-sm-3',
 | ||
|  |                 'wrapper' => 'col-sm-6',
 | ||
|  |                 'error' => '',
 | ||
|  |                 'hint' => 'col-sm-3',
 | ||
| 
											8 years ago
										 |             ], $this->horizontalCssClasses);
 | ||
| 
											12 years ago
										 |             if (isset($instanceConfig['horizontalCssClasses'])) {
 | ||
|  |                 $cssClasses = ArrayHelper::merge($cssClasses, $instanceConfig['horizontalCssClasses']);
 | ||
|  |             }
 | ||
|  |             $config['horizontalCssClasses'] = $cssClasses;
 | ||
|  |             $config['wrapperOptions'] = ['class' => $cssClasses['wrapper']];
 | ||
| 
											12 years ago
										 |             $config['labelOptions'] = ['class' => 'control-label ' . $cssClasses['label']];
 | ||
| 
											8 years ago
										 |             $config['errorOptions']['class'] = 'help-block help-block-error ' . $cssClasses['error'];
 | ||
|  |             $config['hintOptions']['class'] = 'help-block ' . $cssClasses['hint'];
 | ||
| 
											12 years ago
										 |         } elseif ($layout === 'inline') {
 | ||
| 
											12 years ago
										 |             $config['labelOptions'] = ['class' => 'sr-only'];
 | ||
|  |             $config['enableError'] = false;
 | ||
|  |         }
 | ||
|  | 
 | ||
|  |         return $config;
 | ||
|  |     }
 | ||
|  | 
 | ||
|  |     /**
 | ||
|  |      * @param string|null $label the label or null to use model label
 | ||
|  |      * @param array $options the tag options
 | ||
|  |      */
 | ||
|  |     protected function renderLabelParts($label = null, $options = [])
 | ||
|  |     {
 | ||
|  |         $options = array_merge($this->labelOptions, $options);
 | ||
| 
											12 years ago
										 |         if ($label === null) {
 | ||
| 
											12 years ago
										 |             if (isset($options['label'])) {
 | ||
|  |                 $label = $options['label'];
 | ||
|  |                 unset($options['label']);
 | ||
|  |             } else {
 | ||
|  |                 $attribute = Html::getAttributeName($this->attribute);
 | ||
| 
											11 years ago
										 |                 $label = Html::encode($this->model->getAttributeLabel($attribute));
 | ||
| 
											12 years ago
										 |             }
 | ||
|  |         }
 | ||
| 
											11 years ago
										 |         if (!isset($options['for'])) {
 | ||
|  |             $options['for'] = Html::getInputId($this->model, $this->attribute);
 | ||
|  |         }
 | ||
| 
											12 years ago
										 |         $this->parts['{beginLabel}'] = Html::beginTag('label', $options);
 | ||
|  |         $this->parts['{endLabel}'] = Html::endTag('label');
 | ||
| 
											11 years ago
										 |         if (!isset($this->parts['{labelTitle}'])) {
 | ||
|  |             $this->parts['{labelTitle}'] = $label;
 | ||
|  |         }
 | ||
| 
											12 years ago
										 |     }
 | ||
|  | }
 |