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.

168 lines
5.0 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;
use yii\base\InvalidConfigException;
use yii\helpers\base\ArrayHelper;
use yii\helpers\Html;
/**
* Tabs renders a Tab bootstrap javascript component.
*
* For example:
*
* ```php
* echo Tabs::widget(array(
* 'options' => 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 <amigo.cobos@gmail.com>
* @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.
12 years ago
* @param integer $index the starting index of header item. Used to set ids.
12 years ago
* @return string the rendering result.
* @throws InvalidConfigException
*/
12 years ago
protected function renderHeaders($items, $options = array(), $index = 0)
12 years ago
{
$headers = array();
12 years ago
foreach ($items as $item) {
12 years ago
if (!isset($item['header'])) {
throw new InvalidConfigException("The 'header' option is required.");
}
$headerOptions = ArrayHelper::getValue($item, 'headerOptions', array());
12 years ago
if ($index === 0) {
12 years ago
$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'] . ' <b class="caret"></b>', "#", array(
'class' => 'dropdown-toggle',
'data-toggle' => 'dropdown'
)) .
12 years ago
$this->renderHeaders($item['items'], array('class' => 'dropdown-menu'), $index++),
12 years ago
$headerOptions
);
} else {
12 years ago
12 years ago
$contentOptions = ArrayHelper::getValue($item, 'options', array());
12 years ago
$id = ArrayHelper::getValue($contentOptions, 'id', $this->options['id'] . '-tab' . $index++);
12 years ago
$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.
12 years ago
* @param integer $index the starting index (for recursion)
12 years ago
* @return string the rendering result.
* @throws InvalidConfigException
*/
12 years ago
protected function renderContents($items, $index = 0)
12 years ago
{
$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'])) {
12 years ago
$contents[] = $this->renderContents($item['items'], $index++);
12 years ago
} else {
12 years ago
if ($index === 0) {
$this->addCssClass($options, 'active');
}
$options['id'] = ArrayHelper::getValue($options, 'id', $this->options['id'] . '-tab' . $index++);
12 years ago
$contents[] = Html::tag('div', $item['content'], $options);
}
}
return implode("\n", $contents);
}
}