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.
139 lines
3.7 KiB
139 lines
3.7 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\widgets\base;
|
||
|
|
||
|
use Yii;
|
||
|
use yii\base\View;
|
||
|
use yii\base\Widget;
|
||
|
use yii\base\InvalidCallException;
|
||
|
use yii\helpers\base\Json;
|
||
|
use yii\web\JsExpression;
|
||
|
|
||
|
/**
|
||
|
* BootstrapWidget is the base class for bootstrap widgets.
|
||
|
*
|
||
|
* @author Antonio Ramirez <amigo.cobos@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class BootstrapWidget extends Widget
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @var bool whether to register the asset
|
||
|
*/
|
||
|
public $responsive = true;
|
||
|
|
||
|
/**
|
||
|
* @var array the HTML attributes for the widget container tag.
|
||
|
*/
|
||
|
public $options = array();
|
||
|
|
||
|
/**
|
||
|
* @var string the widget name
|
||
|
*/
|
||
|
protected $name;
|
||
|
|
||
|
/**
|
||
|
* @var string the jQuery selector of the widget
|
||
|
*/
|
||
|
protected $selector;
|
||
|
|
||
|
/**
|
||
|
* Initializes the widget.
|
||
|
*/
|
||
|
public function init()
|
||
|
{
|
||
|
$this->view->registerAssetBundle(($this->responsive ? 'yii/bootstrap' : 'yii/bootstrap-responsive'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Registers plugin events with the API.
|
||
|
* @param string $selector the CSS selector.
|
||
|
* @param string[] $events the JavaScript event configuration (name=>handler).
|
||
|
* @param int $position the position of the JavaScript code.
|
||
|
* @return boolean whether the events were registered.
|
||
|
*/
|
||
|
protected function registerEvents($selector, $events = array(), $position = View::POS_END)
|
||
|
{
|
||
|
if (empty($events))
|
||
|
return;
|
||
|
|
||
|
$script = '';
|
||
|
foreach ($events as $name => $handler) {
|
||
|
$handler = ($handler instanceof JsExpression)
|
||
|
? $handler
|
||
|
: new JsExpression($handler);
|
||
|
|
||
|
$script .= ";jQuery(document).ready(function (){jQuery('{$selector}').on('{$name}', {$handler});});";
|
||
|
}
|
||
|
if (!empty($script))
|
||
|
$this->view->registerJs($script, array('position' => $position), $this->getUniqueScriptId());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Registers a specific Bootstrap plugin using the given selector and options.
|
||
|
* @param string $selector the CSS selector.
|
||
|
* @param array $options the JavaScript options for the plugin.
|
||
|
* @param int $position the position of the JavaScript code.
|
||
|
* @throws \yii\base\InvalidCallException
|
||
|
*/
|
||
|
public function registerPlugin($selector, $options = array(), $position = View::POS_END)
|
||
|
{
|
||
|
if(null === $this->name)
|
||
|
throw new InvalidCallException();
|
||
|
|
||
|
$options = !empty($options) ? Json::encode($options) : '';
|
||
|
$script = ";jQuery(document).ready(function (){jQuery('{$selector}').{$this->name}({$options});});";
|
||
|
$this->view->registerJs($script, array('position'=>$position));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Generates a "somewhat" random id string.
|
||
|
* @return string the id.
|
||
|
* @todo not sure it should be here or
|
||
|
*/
|
||
|
protected function getUniqueScriptId()
|
||
|
{
|
||
|
return uniqid(time() . '#', true);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Adds a new option. If the key does not exists, it will create one, if it exists it will append the value
|
||
|
* and also makes sure the uniqueness of them.
|
||
|
*
|
||
|
* @param string $key
|
||
|
* @param mixed $value
|
||
|
* @param string $glue
|
||
|
* @return array
|
||
|
*/
|
||
|
protected function addOption($key, $value, $glue = ' ')
|
||
|
{
|
||
|
if (isset($this->options[$key])) {
|
||
|
if (!is_array($this->options[$key]))
|
||
|
$this->options[$key] = explode($glue, $this->options[$key]);
|
||
|
$this->options[$key][] = $value;
|
||
|
$this->options[$key] = array_unique($this->options[$key]);
|
||
|
$this->options[$key] = implode($glue, $this->options[$key]);
|
||
|
} else
|
||
|
$this->options[$key] = $value;
|
||
|
return $this->options;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the default value for an item if not set.
|
||
|
* @param string $key the name of the item.
|
||
|
* @param mixed $value the default value.
|
||
|
* @return array
|
||
|
*/
|
||
|
protected function defaultOption($key, $value)
|
||
|
{
|
||
|
if (!isset($this->options[$key]))
|
||
|
$this->options[$key] = $value;
|
||
|
return $this->options;
|
||
|
}
|
||
|
}
|