Dropdown.php 2.6 KB
Newer Older
Antonio Ramirez committed
1 2 3 4 5 6 7 8 9 10
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\bootstrap;

use yii\base\InvalidConfigException;
11
use yii\helpers\ArrayHelper;
Antonio Ramirez committed
12 13 14
use yii\helpers\Html;

/**
15
 * Dropdown renders a Bootstrap dropdown menu component.
Antonio Ramirez committed
16
 *
MarsuBoss committed
17
 * @see http://getbootstrap.com/javascript/#dropdowns
Antonio Ramirez committed
18 19 20 21 22 23
 * @author Antonio Ramirez <amigo.cobos@gmail.com>
 * @since 2.0
 */
class Dropdown extends Widget
{
	/**
24 25 26
	 * @var array list of menu items in the dropdown. Each array element can be either an HTML string,
	 * or an array representing a single menu with the following structure:
	 *
Antonio Ramirez committed
27 28
	 * - label: string, required, the label of the item link
	 * - url: string, optional, the url of the item link. Defaults to "#".
29
	 * - visible: boolean, optional, whether this menu item is visible. Defaults to true.
Antonio Ramirez committed
30 31
	 * - linkOptions: array, optional, the HTML attributes of the item link.
	 * - options: array, optional, the HTML attributes of the item.
Alexander Makarov committed
32 33
	 *
	 * To insert divider use `<li role="presentation" class="divider"></li>`.
Antonio Ramirez committed
34
	 */
Alexander Makarov committed
35
	public $items = [];
36 37 38 39
	/**
	 * @var boolean whether the labels for header items should be HTML-encoded.
	 */
	public $encodeLabels = true;
Antonio Ramirez committed
40 41 42 43 44 45 46 47 48


	/**
	 * Initializes the widget.
	 * If you override this method, make sure you call the parent implementation first.
	 */
	public function init()
	{
		parent::init();
49
		Html::addCssClass($this->options, 'dropdown-menu');
Antonio Ramirez committed
50 51 52 53 54 55 56
	}

	/**
	 * Renders the widget.
	 */
	public function run()
	{
57
		echo $this->renderItems($this->items);
Antonio Ramirez committed
58 59 60 61
		$this->registerPlugin('dropdown');
	}

	/**
62 63
	 * Renders menu items.
	 * @param array $items the menu items to be rendered
Antonio Ramirez committed
64
	 * @return string the rendering result.
65
	 * @throws InvalidConfigException if the label option is not specified in one of the items.
Antonio Ramirez committed
66
	 */
67
	protected function renderItems($items)
Antonio Ramirez committed
68
	{
Alexander Makarov committed
69
		$lines = [];
70 71 72 73 74
		foreach ($items as $i => $item) {
			if (isset($item['visible']) && !$item['visible']) {
				unset($items[$i]);
				continue;
			}
Antonio Ramirez committed
75
			if (is_string($item)) {
76
				$lines[] = $item;
Antonio Ramirez committed
77 78 79 80 81
				continue;
			}
			if (!isset($item['label'])) {
				throw new InvalidConfigException("The 'label' option is required.");
			}
82
			$label = $this->encodeLabels ? Html::encode($item['label']) : $item['label'];
Alexander Makarov committed
83 84
			$options = ArrayHelper::getValue($item, 'options', []);
			$linkOptions = ArrayHelper::getValue($item, 'linkOptions', []);
85
			$linkOptions['tabindex'] = '-1';
86
			$content = Html::a($label, ArrayHelper::getValue($item, 'url', '#'), $linkOptions);
87
			$lines[] = Html::tag('li', $content, $options);
Antonio Ramirez committed
88 89
		}

90
		return Html::tag('ul', implode("\n", $lines), $this->options);
Antonio Ramirez committed
91
	}
92
}