Browse Source

Example from comments changed

tags/2.0.0-beta
Alexander Kochetov 12 years ago
parent
commit
8582f46d1a
  1. 29
      framework/yii/jui/Accordion.php

29
framework/yii/jui/Accordion.php

@ -25,11 +25,27 @@ use yii\helpers\Html;
* ), * ),
* array( * array(
* 'header' => 'Section 2', * 'header' => 'Section 2',
* 'headerOptions' => array(...), * 'headerOptions' => array(
* 'tag' => 'h3',
* ),
* 'content' => 'Sed non urna. Phasellus eu ligula. Vestibulum sit amet purus...', * '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 class Accordion extends Widget
{ {
/** /**
* @var array. * @var array list of collapsible sections.
* @todo comments.
*/ */
public $items = array(); public $items = array();
/** /**
* @var array. * @var array list of individual collabsible section default options.
* @todo comments.
*/ */
public $itemOptions = array(); public $itemOptions = array();
/** /**
* @var array. * @var array list of individual collabsible section header default options.
* @todo comments.
*/ */
public $headerOptions = array(); public $headerOptions = array();

Loading…
Cancel
Save