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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
65ba9ab7
Commit
65ba9ab7
authored
May 23, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #386 from creocoder/accordion-rework
[READY] jQuery UI Accordion rework
parents
b5812b58
fb9dbdb2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
39 deletions
+28
-39
Accordion.php
framework/yii/jui/Accordion.php
+28
-39
No files found.
framework/yii/jui/Accordion.php
View file @
65ba9ab7
...
@@ -19,13 +19,15 @@ use yii\helpers\Html;
...
@@ -19,13 +19,15 @@ use yii\helpers\Html;
* ```php
* ```php
* echo Accordion::widget(array(
* echo Accordion::widget(array(
* 'items' => array(
* 'items' => array(
* 'Section 1' => array(
* array(
* 'header' => 'Section 1',
* 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...',
* 'content' => 'Mauris mauris ante, blandit et, ultrices a, suscipit eget...',
* 'contentOptions' => array(...),
* ),
* ),
*
'Section 2' =>
array(
* array(
* '
content' => 'Sed non urna. Phasellus eu ligula. Vestibulum sit amet purus...
',
* '
header' => 'Section 2
',
* 'headerOptions' => array(...),
* 'headerOptions' => array(...),
* 'content' => 'Sed non urna. Phasellus eu ligula. Vestibulum sit amet purus...',
* 'options' => array(...),
* ),
* ),
* ),
* ),
* ));
* ));
...
@@ -42,13 +44,14 @@ class Accordion extends Widget
...
@@ -42,13 +44,14 @@ class Accordion extends Widget
* section with the following structure:
* section with the following structure:
*
*
* ```php
* ```php
* // item key is the actual section header
* array(
* 'Section' => array(
* // required, the header (HTML) of the section
* 'header' => 'Section label',
* // required, the content (HTML) of the section
* // required, the content (HTML) of the section
* '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
content section
* // optional the HTML attributes of the
section content container
* '
contentO
ptions'=> array(...),
* '
o
ptions'=> array(...),
* // optional the HTML attributes of the
header section
* // optional the HTML attributes of the
section header container
* 'headerOptions'=> array(...),
* 'headerOptions'=> array(...),
* )
* )
* ```
* ```
...
@@ -62,46 +65,32 @@ class Accordion extends Widget
...
@@ -62,46 +65,32 @@ class Accordion extends Widget
public
function
run
()
public
function
run
()
{
{
echo
Html
::
beginTag
(
'div'
,
$this
->
options
)
.
"
\n
"
;
echo
Html
::
beginTag
(
'div'
,
$this
->
options
)
.
"
\n
"
;
echo
$this
->
render
Item
s
()
.
"
\n
"
;
echo
$this
->
render
Section
s
()
.
"
\n
"
;
echo
Html
::
endTag
(
'div'
)
.
"
\n
"
;
echo
Html
::
endTag
(
'div'
)
.
"
\n
"
;
$this
->
registerWidget
(
'accordion'
);
$this
->
registerWidget
(
'accordion'
);
}
}
/**
/**
* Renders collapsible items as specified on [[items]].
* Renders collapsible sections 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 section.
* @param string $header a label of the item section [[items]].
* @param array $item a single item from [[items]].
* @return string the rendering result.
* @return string the rendering result.
* @throws InvalidConfigException.
* @throws InvalidConfigException.
*/
*/
p
ublic
function
renderItem
(
$header
,
$item
)
p
rotected
function
renderSections
(
)
{
{
if
(
isset
(
$item
[
'content'
]))
{
$sections
=
array
();
$contentOptions
=
ArrayHelper
::
getValue
(
$item
,
'contentOptions'
,
array
());
foreach
(
$this
->
items
as
$item
)
{
$content
=
Html
::
tag
(
'div'
,
$item
[
'content'
])
.
"
\n
"
;
if
(
!
isset
(
$item
[
'header'
]))
{
}
else
{
throw
new
InvalidConfigException
(
"The 'header' option is required."
);
throw
new
InvalidConfigException
(
"The 'content' option is required."
);
}
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
);;
}
}
$group
=
array
();
return
implode
(
"
\n
"
,
$sections
);
$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