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.
161 lines
4.7 KiB
161 lines
4.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;
|
||
|
|
||
10 years ago
|
use yii\helpers\ArrayHelper;
|
||
7 years ago
|
use yii\helpers\Url;
|
||
12 years ago
|
|
||
|
/**
|
||
|
* ButtonDropdown renders a group or split button dropdown bootstrap component.
|
||
|
*
|
||
|
* For example,
|
||
|
*
|
||
|
* ```php
|
||
|
* // a button group using Dropdown widget
|
||
11 years ago
|
* echo ButtonDropdown::widget([
|
||
12 years ago
|
* 'label' => 'Action',
|
||
11 years ago
|
* 'dropdown' => [
|
||
|
* 'items' => [
|
||
|
* ['label' => 'DropdownA', 'url' => '/'],
|
||
|
* ['label' => 'DropdownB', 'url' => '#'],
|
||
|
* ],
|
||
|
* ],
|
||
|
* ]);
|
||
12 years ago
|
* ```
|
||
11 years ago
|
* @see http://getbootstrap.com/javascript/#buttons
|
||
|
* @see http://getbootstrap.com/components/#btn-dropdowns
|
||
12 years ago
|
* @author Antonio Ramirez <amigo.cobos@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class ButtonDropdown extends Widget
|
||
|
{
|
||
11 years ago
|
/**
|
||
|
* @var string the button label
|
||
|
*/
|
||
|
public $label = 'Button';
|
||
|
/**
|
||
10 years ago
|
* @var array the HTML attributes for the container tag. The following special options are recognized:
|
||
|
*
|
||
|
* - tag: string, defaults to "div", the name of the container tag.
|
||
|
*
|
||
|
* @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
|
||
|
* @since 2.0.1
|
||
|
*/
|
||
|
public $containerOptions = [];
|
||
|
/**
|
||
11 years ago
|
* @var array the HTML attributes of the button.
|
||
|
* @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
|
||
|
*/
|
||
|
public $options = [];
|
||
|
/**
|
||
|
* @var array the configuration array for [[Dropdown]].
|
||
|
*/
|
||
|
public $dropdown = [];
|
||
|
/**
|
||
7 years ago
|
* @var bool whether to display a group of split-styled button group.
|
||
11 years ago
|
*/
|
||
|
public $split = false;
|
||
|
/**
|
||
|
* @var string the tag to use to render the button
|
||
|
*/
|
||
|
public $tagName = 'button';
|
||
|
/**
|
||
7 years ago
|
* @var bool whether the label should be HTML-encoded.
|
||
11 years ago
|
*/
|
||
|
public $encodeLabel = true;
|
||
8 years ago
|
/**
|
||
|
* @var string name of a class to use for rendering dropdowns withing this widget. Defaults to [[Dropdown]].
|
||
|
* @since 2.0.7
|
||
|
*/
|
||
|
public $dropdownClass = 'yii\bootstrap\Dropdown';
|
||
12 years ago
|
|
||
10 years ago
|
|
||
11 years ago
|
/**
|
||
|
* Renders the widget.
|
||
|
*/
|
||
|
public function run()
|
||
|
{
|
||
10 years ago
|
// @todo use [[options]] instead of [[containerOptions]] and introduce [[buttonOptions]] before 2.1 release
|
||
10 years ago
|
Html::addCssClass($this->containerOptions, ['widget' => 'btn-group']);
|
||
10 years ago
|
$options = $this->containerOptions;
|
||
|
$tag = ArrayHelper::remove($options, 'tag', 'div');
|
||
|
|
||
7 years ago
|
$this->registerPlugin('dropdown');
|
||
10 years ago
|
return implode("\n", [
|
||
10 years ago
|
Html::beginTag($tag, $options),
|
||
10 years ago
|
$this->renderButton(),
|
||
|
$this->renderDropdown(),
|
||
|
Html::endTag($tag)
|
||
|
]);
|
||
11 years ago
|
}
|
||
12 years ago
|
|
||
11 years ago
|
/**
|
||
|
* Generates the button dropdown.
|
||
|
* @return string the rendering result.
|
||
|
*/
|
||
|
protected function renderButton()
|
||
|
{
|
||
10 years ago
|
Html::addCssClass($this->options, ['widget' => 'btn']);
|
||
11 years ago
|
$label = $this->label;
|
||
|
if ($this->encodeLabel) {
|
||
|
$label = Html::encode($label);
|
||
|
}
|
||
7 years ago
|
|
||
11 years ago
|
if ($this->split) {
|
||
|
$options = $this->options;
|
||
|
$this->options['data-toggle'] = 'dropdown';
|
||
10 years ago
|
Html::addCssClass($this->options, ['toggle' => 'dropdown-toggle']);
|
||
7 years ago
|
unset($options['id']);
|
||
11 years ago
|
$splitButton = Button::widget([
|
||
|
'label' => '<span class="caret"></span>',
|
||
|
'encodeLabel' => false,
|
||
|
'options' => $this->options,
|
||
|
'view' => $this->getView(),
|
||
|
]);
|
||
|
} else {
|
||
|
$label .= ' <span class="caret"></span>';
|
||
|
$options = $this->options;
|
||
10 years ago
|
Html::addCssClass($options, ['toggle' => 'dropdown-toggle']);
|
||
11 years ago
|
$options['data-toggle'] = 'dropdown';
|
||
|
$splitButton = '';
|
||
|
}
|
||
12 years ago
|
|
||
7 years ago
|
if (isset($options['href'])) {
|
||
|
if (is_array($options['href'])) {
|
||
|
$options['href'] = Url::to($options['href']);
|
||
|
}
|
||
|
} else {
|
||
|
if ($this->tagName === 'a') {
|
||
|
$options['href'] = '#';
|
||
|
}
|
||
|
}
|
||
|
|
||
11 years ago
|
return Button::widget([
|
||
|
'tagName' => $this->tagName,
|
||
|
'label' => $label,
|
||
|
'options' => $options,
|
||
|
'encodeLabel' => false,
|
||
|
'view' => $this->getView(),
|
||
|
]) . "\n" . $splitButton;
|
||
|
}
|
||
12 years ago
|
|
||
11 years ago
|
/**
|
||
|
* Generates the dropdown menu.
|
||
|
* @return string the rendering result.
|
||
|
*/
|
||
|
protected function renderDropdown()
|
||
|
{
|
||
|
$config = $this->dropdown;
|
||
|
$config['clientOptions'] = false;
|
||
|
$config['view'] = $this->getView();
|
||
8 years ago
|
/** @var Widget $dropdownClass */
|
||
|
$dropdownClass = $this->dropdownClass;
|
||
|
return $dropdownClass::widget($config);
|
||
11 years ago
|
}
|
||
12 years ago
|
}
|