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
62493188
Commit
62493188
authored
Nov 21, 2013
by
Kartik Visweswaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Nomenclature and code realignment.
1. Renamed closeButton to closeButtonOptions. 2. Generate unique id for each alert box. 3. Moved parent init to the top.
parent
2bff5f80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
Alert.php
apps/advanced/frontend/widgets/Alert.php
+13
-6
No files found.
apps/advanced/frontend/widgets/Alert.php
View file @
62493188
...
@@ -15,8 +15,8 @@ namespace frontend\widgets;
...
@@ -15,8 +15,8 @@ namespace frontend\widgets;
* - \Yii::$app->getSession()->setFlash('success', 'This is the message');
* - \Yii::$app->getSession()->setFlash('success', 'This is the message');
* - \Yii::$app->getSession()->setFlash('info', 'This is the message');
* - \Yii::$app->getSession()->setFlash('info', 'This is the message');
*
*
* @author Alexander Makarov <sam@rmcerative.ru>
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @author Alexander Makarov <sam@rmcerative.ru>
*/
*/
class
Alert
extends
\yii\bootstrap\Widget
class
Alert
extends
\yii\bootstrap\Widget
{
{
...
@@ -37,23 +37,30 @@ class Alert extends \yii\bootstrap\Widget
...
@@ -37,23 +37,30 @@ class Alert extends \yii\bootstrap\Widget
/**
/**
* @var array the options for rendering the close button tag.
* @var array the options for rendering the close button tag.
*/
*/
public
$closeButton
=
[];
public
$closeButton
Options
=
[];
public
function
init
()
public
function
init
()
{
{
parent
::
init
();
$session
=
\Yii
::
$app
->
getSession
();
$session
=
\Yii
::
$app
->
getSession
();
$flashes
=
$session
->
getAllFlashes
();
$flashes
=
$session
->
getAllFlashes
();
$appendCss
=
isset
(
$this
->
options
[
'class'
])
?
' '
.
$this
->
options
[
'class'
]
:
''
;
$appendCss
=
isset
(
$this
->
options
[
'class'
])
?
' '
.
$this
->
options
[
'class'
]
:
''
;
foreach
(
$flashes
as
$type
=>
$message
)
{
foreach
(
$flashes
as
$type
=>
$message
)
{
$this
->
options
[
'class'
]
=
'alert-'
.
$this
->
alertTypes
[
$type
]
.
$appendCss
;
/* initialize css class for each alert box in loop */
$this
->
options
[
'class'
]
=
'alert-'
.
$this
->
alertTypes
[
$type
]
.
$appendCss
;
/* assign unique id to each alert box in the loop */
$this
->
options
[
'id'
]
=
$this
->
getId
()
.
'-'
.
$type
;
echo
\yii\bootstrap\Alert
::
widget
([
echo
\yii\bootstrap\Alert
::
widget
([
'body'
=>
$message
,
'body'
=>
$message
,
'closeButton'
=>
$this
->
closeButton
,
'closeButton'
=>
$this
->
closeButton
Options
,
'options'
=>
$this
->
options
'options'
=>
$this
->
options
]);
]);
$session
->
removeFlash
(
$type
);
$session
->
removeFlash
(
$type
);
}
}
parent
::
init
();
}
}
}
}
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