Browse Source

Cosmetic code move

tags/2.0.0-beta
Alexander Kochetov 12 years ago
parent
commit
fb9dbdb236
  1. 8
      framework/yii/jui/Accordion.php

8
framework/yii/jui/Accordion.php

@ -82,17 +82,13 @@ class Accordion extends Widget
if (!isset($item['header'])) {
throw new InvalidConfigException("The 'header' option is required.");
}
$headerOptions = ArrayHelper::getValue($item, 'headerOptions', array());
$sections[] = Html::tag('h3', $item['header'], $headerOptions);
if (!isset($item['content'])) {
throw new InvalidConfigException("The 'content' option is required.");
}
$headerOptions = ArrayHelper::getValue($item, 'headerOptions', array());
$sections[] = Html::tag('h3', $item['header'], $headerOptions);
$options = ArrayHelper::getValue($item, 'options', array());
$sections[] = Html::tag('div', $item['content'], $options);;
}
return implode("\n", $sections);

Loading…
Cancel
Save