From 8582f46d1abf0b279d1abc325a795adb565b242b Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Sun, 26 May 2013 19:15:36 +0400 Subject: [PATCH] Example from comments changed --- framework/yii/jui/Accordion.php | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/framework/yii/jui/Accordion.php b/framework/yii/jui/Accordion.php index e12972a..1a83f28 100644 --- a/framework/yii/jui/Accordion.php +++ b/framework/yii/jui/Accordion.php @@ -25,11 +25,27 @@ use yii\helpers\Html; * ), * array( * 'header' => 'Section 2', - * 'headerOptions' => array(...), + * 'headerOptions' => array( + * 'tag' => 'h3', + * ), * 'content' => 'Sed non urna. Phasellus eu ligula. Vestibulum sit amet purus...', - * 'options' => array(...), + * 'options' => array( + * 'tag' => 'div', + * ), * ), * ), + * 'options' => array( + * 'tag' => 'div', + * ), + * 'itemOptions' => array( + * 'tag' => 'div', + * ), + * 'headerOptions' => array( + * 'tag' => 'h3', + * ), + * 'clientOptions' => array( + * 'collapsible' => false, + * ), * )); * ``` * @@ -40,18 +56,15 @@ use yii\helpers\Html; class Accordion extends Widget { /** - * @var array. - * @todo comments. + * @var array list of collapsible sections. */ public $items = array(); /** - * @var array. - * @todo comments. + * @var array list of individual collabsible section default options. */ public $itemOptions = array(); /** - * @var array. - * @todo comments. + * @var array list of individual collabsible section header default options. */ public $headerOptions = array();