Browse Source

Final

tags/2.0.0-alpha
Alexander Kochetov 12 years ago
parent
commit
f50e8f6bfc
  1. 53
      framework/yii/jui/Tabs.php

53
framework/yii/jui/Tabs.php

@ -19,13 +19,15 @@ use yii\helpers\Html;
* ```php * ```php
* echo Tabs::widget(array( * echo Tabs::widget(array(
* 'items' => array( * 'items' => array(
* 'One' => array( * array(
* 'header' => 'One',
* 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...', * 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...',
* 'contentOptions' => array(...),
* ), * ),
* 'Two' => array( * array(
* 'content' => 'Sed non urna. Phasellus eu ligula. Vestibulum sit amet purus...', * 'header' => 'Two',
* 'headerOptions' => array(...), * 'headerOptions' => array(...),
* 'content' => 'Sed non urna. Phasellus eu ligula. Vestibulum sit amet purus...',
* 'options' => array(...),
* ), * ),
* ), * ),
* )); * ));
@ -42,12 +44,13 @@ class Tabs extends Widget
* tab with the following structure: * tab with the following structure:
* *
* ```php * ```php
* // item key is the actual tab header label * array(
* 'Tab header label' => array( * // required, the header (HTML) of the tab
* 'header' => 'Tab label',
* // required, the content (HTML) of the tab * // required, the content (HTML) of the tab
* 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...', * 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...',
* // optional the HTML attributes of the tab content container * // optional the HTML attributes of the tab content container
* 'contentOptions'=> array(...), * 'options'=> array(...),
* // optional the HTML attributes of the tab header container * // optional the HTML attributes of the tab header container
* 'headerOptions'=> array(...), * 'headerOptions'=> array(...),
* ) * )
@ -63,7 +66,7 @@ class Tabs extends Widget
{ {
echo Html::beginTag('div', $this->options) . "\n"; echo Html::beginTag('div', $this->options) . "\n";
echo $this->renderHeaders() . "\n"; echo $this->renderHeaders() . "\n";
echo $this->renderItems() . "\n"; echo $this->renderContents() . "\n";
echo Html::endTag('div') . "\n"; echo Html::endTag('div') . "\n";
$this->registerWidget('tabs'); $this->registerWidget('tabs');
} }
@ -71,40 +74,46 @@ class Tabs extends Widget
/** /**
* Renders tabs headers as specified on [[items]]. * Renders tabs headers as specified on [[items]].
* @return string the rendering result. * @return string the rendering result.
* @throws InvalidConfigException.
*/ */
protected function renderHeaders() protected function renderHeaders()
{ {
$headers = array(); $headers = array();
$index = 0; foreach ($this->items as $n => $item) {
foreach ($this->items as $header => $item) { $options = ArrayHelper::getValue($item, 'options', array());
$id = $this->options['id'] . '-tab' . ++$index; $id = isset($options['id']) ? $options['id'] : $this->options['id'] . '-tab' . $n;
if (isset($item['header'])) {
$headerOptions = ArrayHelper::getValue($item, 'headerOptions', array()); $headerOptions = ArrayHelper::getValue($item, 'headerOptions', array());
$headers[] = Html::tag('li', Html::a($header, "#$id"), $headerOptions); $headers[] = Html::tag('li', Html::a($item['header'], "#$id"), $headerOptions);
} else {
throw new InvalidConfigException("The 'header' option is required.");
}
} }
return Html::tag('ul', implode("\n", $headers)); return Html::tag('ul', implode("\n", $headers));
} }
/** /**
* Renders tabs items as specified on [[items]]. * Renders tabs contents as specified on [[items]].
* @return string the rendering result. * @return string the rendering result.
* @throws InvalidConfigException. * @throws InvalidConfigException.
*/ */
protected function renderItems() protected function renderContents()
{ {
$items = array(); $contents = array();
$index = 0; foreach ($this->items as $n => $item) {
foreach ($this->items as $item) { $id = $this->options['id'] . '-tab' . $n;
$id = $this->options['id'] . '-tab' . ++$index;
if (isset($item['content'])) { if (isset($item['content'])) {
$contentOptions = ArrayHelper::getValue($item, 'contentOptions', array()); $options = ArrayHelper::getValue($item, 'options', array());
$contentOptions['id'] = $id; if (!isset($options['id'])) {
$items[] = Html::tag('div', $item['content'], $contentOptions); $options['id'] = $id;
}
$contents[] = Html::tag('div', $item['content'], $options);
} else { } else {
throw new InvalidConfigException("The 'content' option is required."); throw new InvalidConfigException("The 'content' option is required.");
} }
} }
return implode("\n", $items); return implode("\n", $contents);
} }
} }

Loading…
Cancel
Save