array('class'=>'nav-tabs'), * 'items' => array( * array( * 'header' => 'One', * 'content' => 'Anim pariatur cliche...', * ), * array( * 'header' => 'Two', * 'headerOptions' => array(...), * 'content' => 'Anim pariatur cliche...', * 'options' => array('id'=>'myveryownID'), * ), * array( * 'header' => 'Dropdown', * 'items' => array( * array( * 'header' => '@Dropdown1', * 'content' => 'Anim pariatur cliche...', * ), * ), * ), * ), * )); * ``` * * @see http://twitter.github.io/bootstrap/javascript.html#tabs * @author Antonio Ramirez * @since 2.0 */ class Tabs extends Widget { /** * @var array list of tabs in the tabs widget. Each array element represents a single * tab with the following structure: * * ```php * array( * // required, the header (HTML) of the tab * 'header' => 'Tab label', * // optional the HTML attributes of the tab header `LI` tag container * 'headerOptions'=> array(...), * // required, the content (HTML) of the tab * 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...', * // optional the HTML attributes of the tab content container * 'options'=> array(...), * // optional, an array of items so to dipslay a dropdown menu on the tab header * // ***Important*** if `items` is set, then `content` will be ignored * 'items'=> array(...) * ) * ``` */ public $items = array(); /** * Initializes the widget. */ public function init() { parent::init(); $this->addCssClass($this->options, 'nav'); } /** * Renders the widget. */ public function run() { echo $this->renderHeaders($this->items, $this->options) . "\n"; echo Html::beginTag('div', array('class' => 'tab-content')) . "\n"; echo $this->renderContents($this->items) . "\n"; echo Html::endTag('div') . "\n"; $this->registerPlugin('tab'); } /** * @param array $items the items to render in the header. * @param array $options the HTML attributes of the menu container. * @param integer $index the starting index of header item. Used to set ids. * @return string the rendering result. * @throws InvalidConfigException */ protected function renderHeaders($items, $options = array(), $index = 0) { $headers = array(); foreach ($items as $item) { if (!isset($item['header'])) { throw new InvalidConfigException("The 'header' option is required."); } $headerOptions = ArrayHelper::getValue($item, 'headerOptions', array()); if ($index === 0) { $this->addCssClass($headerOptions, 'active'); } if (isset($item['items'])) { $this->getView()->registerAssetBundle("yii/bootstrap/dropdown"); $this->addCssClass($headerOptions, 'dropdown'); $headers[] = Html::tag( 'li', Html::a($item['header'] . ' ', "#", array( 'class' => 'dropdown-toggle', 'data-toggle' => 'dropdown' )) . $this->renderHeaders($item['items'], array('class' => 'dropdown-menu'), $index++), $headerOptions ); } else { $contentOptions = ArrayHelper::getValue($item, 'options', array()); $id = ArrayHelper::getValue($contentOptions, 'id', $this->options['id'] . '-tab' . $index++); $headers[] = Html::tag('li', Html::a($item['header'], "#$id", array('data-toggle' => 'tab')), $headerOptions); } } return Html::tag('ul', implode("\n", $headers), $options); } /** * Renders tabs contents as specified on [[items]]. * @param array $items the items to get the contents from. * @param integer $index the starting index (for recursion) * @return string the rendering result. * @throws InvalidConfigException */ protected function renderContents($items, $index = 0) { $contents = array(); foreach ($items as $item) { if (!isset($item['content']) && !isset($item['items'])) { throw new InvalidConfigException("The 'content' option is required."); } $options = ArrayHelper::getValue($item, 'options', array()); $this->addCssClass($options, 'tab-pane'); if (isset($item['items'])) { $contents[] = $this->renderContents($item['items'], $index++); } else { if ($index === 0) { $this->addCssClass($options, 'active'); } $options['id'] = ArrayHelper::getValue($options, 'id', $this->options['id'] . '-tab' . $index++); $contents[] = Html::tag('div', $item['content'], $options); } } return implode("\n", $contents); } }