Commit 6ca204a0 by Alexander Kochetov

yii\bootstrap\* another refactioring

parent b317c082
...@@ -79,7 +79,7 @@ class Alert extends Widget ...@@ -79,7 +79,7 @@ class Alert extends Widget
$this->initOptions(); $this->initOptions();
echo Html::beginTag('div', $this->options) . "\n"; echo Html::beginTag('div', $this->htmlOptions) . "\n";
echo $this->renderBodyBegin() . "\n"; echo $this->renderBodyBegin() . "\n";
} }
...@@ -136,11 +136,11 @@ class Alert extends Widget ...@@ -136,11 +136,11 @@ class Alert extends Widget
*/ */
protected function initOptions() protected function initOptions()
{ {
$this->options = array_merge(array( $this->htmlOptions = array_merge(array(
'class' => 'fade in', 'class' => 'fade in',
), $this->options); ), $this->htmlOptions);
$this->addCssClass($this->options, 'alert'); $this->addCssClass($this->htmlOptions, 'alert');
if ($this->closeButton !== null) { if ($this->closeButton !== null) {
$this->closeButton = array_merge(array( $this->closeButton = array_merge(array(
......
...@@ -105,7 +105,7 @@ class Modal extends Widget ...@@ -105,7 +105,7 @@ class Modal extends Widget
$this->initOptions(); $this->initOptions();
echo $this->renderToggleButton() . "\n"; echo $this->renderToggleButton() . "\n";
echo Html::beginTag('div', $this->options) . "\n"; echo Html::beginTag('div', $this->htmlOptions) . "\n";
echo $this->renderHeader() . "\n"; echo $this->renderHeader() . "\n";
echo $this->renderBodyBegin() . "\n"; echo $this->renderBodyBegin() . "\n";
} }
...@@ -212,14 +212,14 @@ class Modal extends Widget ...@@ -212,14 +212,14 @@ class Modal extends Widget
*/ */
protected function initOptions() protected function initOptions()
{ {
$this->options = array_merge(array( $this->htmlOptions = array_merge(array(
'class' => 'modal hide', 'class' => 'modal hide',
), $this->options); ), $this->htmlOptions);
$this->addCssClass($this->options, 'modal'); $this->addCssClass($this->htmlOptions, 'modal');
$this->pluginOptions = array_merge(array( $this->options = array_merge(array(
'show' => false, 'show' => false,
), $this->pluginOptions); ), $this->options);
if ($this->closeButton !== null) { if ($this->closeButton !== null) {
$this->closeButton = array_merge(array( $this->closeButton = array_merge(array(
...@@ -234,7 +234,7 @@ class Modal extends Widget ...@@ -234,7 +234,7 @@ class Modal extends Widget
'data-toggle' => 'modal', 'data-toggle' => 'modal',
), $this->toggleButton); ), $this->toggleButton);
if (!isset($this->toggleButton['data-target']) && !isset($this->toggleButton['href'])) { if (!isset($this->toggleButton['data-target']) && !isset($this->toggleButton['href'])) {
$this->toggleButton['data-target'] = '#' . $this->options['id']; $this->toggleButton['data-target'] = '#' . $this->htmlOptions['id'];
} }
} }
} }
......
...@@ -19,10 +19,9 @@ use yii\helpers\Html; ...@@ -19,10 +19,9 @@ use yii\helpers\Html;
* *
* ```php * ```php
* echo TypeAhead::widget(array( * echo TypeAhead::widget(array(
* 'form' => $form,
* 'model' => $model, * 'model' => $model,
* 'attribute' => 'country', * 'attribute' => 'country',
* 'pluginOptions' => array( * 'options' => array(
* 'source' => array('USA', 'ESP'), * 'source' => array('USA', 'ESP'),
* ), * ),
* )); * ));
...@@ -33,7 +32,7 @@ use yii\helpers\Html; ...@@ -33,7 +32,7 @@ use yii\helpers\Html;
* ```php * ```php
* echo TypeAhead::widget(array( * echo TypeAhead::widget(array(
* 'name' => 'country', * 'name' => 'country',
* 'pluginOptions' => array( * 'options' => array(
* 'source' => array('USA', 'ESP'), * 'source' => array('USA', 'ESP'),
* ), * ),
* )); * ));
...@@ -77,17 +76,17 @@ class TypeAhead extends Widget ...@@ -77,17 +76,17 @@ class TypeAhead extends Widget
* If [[model]] is null or not from an [[Model]] instance, then the field will be rendered according to * If [[model]] is null or not from an [[Model]] instance, then the field will be rendered according to
* the [[name]] attribute. * the [[name]] attribute.
* @return string the rendering result * @return string the rendering result
* @throws InvalidConfigException when none of the required attributes are set to render the textInput. That is, * @throws InvalidConfigException when none of the required attributes are set to render the textInput.
* if [[model]] and [[attribute]] are not set, then [[name]] is required. * That is, if [[model]] and [[attribute]] are not set, then [[name]] is required.
*/ */
public function renderField() public function renderField()
{ {
if ($this->model instanceof Model && $this->attribute !== null) { if ($this->model instanceof Model && $this->attribute !== null) {
return Html::activeTextInput($this->model, $this->attribute, $this->options); return Html::activeTextInput($this->model, $this->attribute, $this->htmlOptions);
} elseif ($this->name !== null) { } elseif ($this->name !== null) {
return Html::textInput($this->name, $this->value, $this->options); return Html::textInput($this->name, $this->value, $this->htmlOptions);
} else { } else {
throw new InvalidConfigException('Either "name" or "model" and "attribute" properties must be specified.'); throw new InvalidConfigException("Either 'name' or 'model' and 'attribute' properties must be specified.");
} }
} }
} }
...@@ -28,21 +28,21 @@ class Widget extends \yii\base\Widget ...@@ -28,21 +28,21 @@ class Widget extends \yii\base\Widget
/** /**
* @var array the HTML attributes for the widget container tag. * @var array the HTML attributes for the widget container tag.
*/ */
public $options = array(); public $htmlOptions = array();
/** /**
* @var array the options for the underlying Bootstrap JS plugin. * @var array the options for the underlying Bootstrap JS plugin.
* Please refer to the corresponding Bootstrap plugin Web page for possible options. * Please refer to the corresponding Bootstrap plugin Web page for possible options.
* For example, [this page](http://twitter.github.io/bootstrap/javascript.html#modals) shows * For example, [this page](http://twitter.github.io/bootstrap/javascript.html#modals) shows
* how to use the "Modal" plugin and the supported options (e.g. "remote"). * how to use the "Modal" plugin and the supported options (e.g. "remote").
*/ */
public $pluginOptions = array(); public $options = array();
/** /**
* @var array the event handlers for the underlying Bootstrap JS plugin. * @var array the event handlers for the underlying Bootstrap JS plugin.
* Please refer to the corresponding Bootstrap plugin Web page for possible events. * Please refer to the corresponding Bootstrap plugin Web page for possible events.
* For example, [this page](http://twitter.github.io/bootstrap/javascript.html#modals) shows * For example, [this page](http://twitter.github.io/bootstrap/javascript.html#modals) shows
* how to use the "Modal" plugin and the supported events (e.g. "shown"). * how to use the "Modal" plugin and the supported events (e.g. "shown").
*/ */
public $pluginEvents = array(); public $events = array();
/** /**
...@@ -69,15 +69,15 @@ class Widget extends \yii\base\Widget ...@@ -69,15 +69,15 @@ class Widget extends \yii\base\Widget
$view->registerAssetBundle(static::$responsive ? 'yii/bootstrap/responsive' : 'yii/bootstrap'); $view->registerAssetBundle(static::$responsive ? 'yii/bootstrap/responsive' : 'yii/bootstrap');
$view->registerAssetBundle("yii/bootstrap/$name"); $view->registerAssetBundle("yii/bootstrap/$name");
if ($this->pluginOptions !== false) { if ($this->options !== false) {
$options = empty($this->pluginOptions) ? '' : Json::encode($this->pluginOptions); $options = empty($this->options) ? '' : Json::encode($this->options);
$js = "jQuery('#$id').$name($options);"; $js = "jQuery('#$id').$name($options);";
$view->registerJs($js); $view->registerJs($js);
} }
if (!empty($this->pluginEvents)) { if (!empty($this->events)) {
$js = array(); $js = array();
foreach ($this->pluginEvents as $event => $handler) { foreach ($this->events as $event => $handler) {
$js[] = "jQuery('#$id').on('$event', $handler);"; $js[] = "jQuery('#$id').on('$event', $handler);";
} }
$view->registerJs(implode("\n", $js)); $view->registerJs(implode("\n", $js));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment