array( * array( * 'label' => 'Home', * 'url' => '/', * 'linkOptions' => array(...), * 'active' => true, * ), * array( * 'label' => 'Dropdown', * 'items' => array( * array( * 'label' => 'DropdownA', * 'url' => '#', * ), * array( * 'label' => 'DropdownB', * 'url' => '#', * ), * ), * ), * ), * )); * ``` * * @see http://twitter.github.io/bootstrap/components.html#nav * @author Antonio Ramirez * @since 2.0 */ class Nav extends Widget { /** * @var array list of items in the nav widget. Each array element represents a single * menu item with the following structure: * * - label: string, required, the nav item label. * - url: optional, the item's URL. Defaults to "#". * - linkOptions: array, optional, the HTML attributes of the item's link. * - options: array, optional, the HTML attributes of the item container (LI). * - active: boolean, optional, whether the item should be on active state or not. * - items: array, optional, the configuration of specify the item's dropdown menu. You can optionally set this as * a string (ie. `'items'=> Dropdown::widget(array(...))` * - important: there is an issue with sub-dropdown menus, and as of 3.0, bootstrap won't support sub-dropdown. * * **Note:** Optionally, you can also use a plain string instead of an array element. * * @see https://github.com/twitter/bootstrap/issues/5050#issuecomment-11741727 * @see [[Dropdown]] */ public $items = array(); /** * @var boolean whether the nav items labels should be HTML-encoded. */ public $encodeLabels = true; /** * Initializes the widget. */ public function init() { parent::init(); $this->addCssClass($this->options, 'nav'); } /** * Renders the widget. */ public function run() { echo $this->renderItems(); $this->getView()->registerAssetBundle('yii/bootstrap'); } /** * Renders widget items. */ public function renderItems() { $items = array(); foreach ($this->items as $item) { $items[] = $this->renderItem($item); } return Html::tag('ul', implode("\n", $items), $this->options); } /** * Renders a widget's item. * @param mixed $item the item to render. * @return string the rendering result. * @throws InvalidConfigException */ public function renderItem($item) { if (is_string($item)) { return $item; } if (!isset($item['label'])) { throw new InvalidConfigException("The 'label' option is required."); } $label = $this->encodeLabels ? Html::encode($item['label']) : $item['label']; $options = ArrayHelper::getValue($item, 'options', array()); $dropdown = ArrayHelper::getValue($item, 'items'); $url = Html::url(ArrayHelper::getValue($item, 'url', '#')); $linkOptions = ArrayHelper::getValue($item, 'linkOptions', array()); if(ArrayHelper::getValue($item, 'active')) { $this->addCssClass($options, 'active'); } if ($dropdown !== null) { $linkOptions['data-toggle'] = 'dropdown'; $this->addCssClass($options, 'dropdown'); $this->addCssClass($urlOptions, 'dropdown-toggle'); $label .= ' ' . Html::tag('b', '', array('class' => 'caret')); $dropdown = is_string($dropdown) ? $dropdown : Dropdown::widget(array('items' => $item['items'], 'clientOptions' => false)); } return Html::tag('li', Html::a($label, $url, $linkOptions) . $dropdown, $options); } }