Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
792d548c
Commit
792d548c
authored
May 23, 2013
by
Alexander Kochetov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jQuery Accordeon widget
parent
fbada2e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
107 additions
and
0 deletions
+107
-0
Accordion.php
framework/yii/jui/Accordion.php
+107
-0
No files found.
framework/yii/jui/Accordion.php
0 → 100644
View file @
792d548c
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\jui
;
use
yii\base\InvalidConfigException
;
use
yii\helpers\base\ArrayHelper
;
use
yii\helpers\Html
;
/**
* Accordion renders an accordion jQuery UI widget.
*
* For example:
*
* ```php
* echo Accordion::widget(array(
* 'items' => array(
* 'Section 1' => array(
* 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...',
* 'contentOptions' => array(...),
* ),
* 'Section 2' => array(
* 'content' => 'Sed non urna. Phasellus eu ligula. Vestibulum sit amet purus...',
* 'headerOptions' => array(...),
* ),
* ),
* ));
* ```
*
* @see http://api.jqueryui.com/accordion/
* @author Alexander Kochetov <creocoder@gmail.com>
* @since 2.0
*/
class
Accordion
extends
Widget
{
/**
* @var array list of groups in the collapse widget. Each array element represents a single
* group with the following structure:
*
* ```php
* // item key is the actual group header
* 'Section' => array(
* // required, the content (HTML) of the group
* 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...',
* // optional the HTML attributes of the content group
* 'contentOptions'=> array(...),
* // optional the HTML attributes of the header group
* 'headerOptions'=> array(...),
* )
* ```
*/
public
$items
=
array
();
/**
* Renders the widget.
*/
public
function
run
()
{
echo
Html
::
beginTag
(
'div'
,
$this
->
options
)
.
"
\n
"
;
echo
$this
->
renderItems
()
.
"
\n
"
;
echo
Html
::
endTag
(
'div'
)
.
"
\n
"
;
$this
->
registerWidget
(
'accordion'
);
}
/**
* Renders collapsible items as specified on [[items]].
* @return string the rendering result.
*/
public
function
renderItems
()
{
$items
=
array
();
foreach
(
$this
->
items
as
$header
=>
$item
)
{
$items
[]
=
$this
->
renderItem
(
$header
,
$item
);
}
return
implode
(
"
\n
"
,
$items
);
}
/**
* Renders a single collapsible item group.
* @param string $header a label of the item group [[items]].
* @param array $item a single item from [[items]].
* @return string the rendering result.
* @throws InvalidConfigException.
*/
public
function
renderItem
(
$header
,
$item
)
{
if
(
isset
(
$item
[
'content'
]))
{
$contentOptions
=
ArrayHelper
::
getValue
(
$item
,
'contentOptions'
,
array
());
$content
=
Html
::
tag
(
'div'
,
$item
[
'content'
])
.
"
\n
"
;
}
else
{
throw
new
InvalidConfigException
(
"The 'content' option is required."
);
}
$group
=
array
();
$headerOptions
=
ArrayHelper
::
getValue
(
$item
,
'headerOptions'
,
array
());
$group
[]
=
Html
::
tag
(
'h3'
,
$header
,
$headerOptions
);
$group
[]
=
Html
::
tag
(
'div'
,
$content
,
$contentOptions
);
return
implode
(
"
\n
"
,
$group
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment