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
0c9a65e9
Commit
0c9a65e9
authored
May 21, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #330 from tonydspaniard/329-bootstrap-alert
bootstrap alert widget
parents
0522f9bb
4b6df0e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
154 additions
and
0 deletions
+154
-0
Alert.php
yii/bootstrap/Alert.php
+154
-0
No files found.
yii/bootstrap/Alert.php
0 → 100644
View file @
0c9a65e9
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\bootstrap
;
use
Yii
;
use
yii\base\Widget
;
use
yii\helpers\ArrayHelper
;
use
yii\helpers\Html
;
/**
* Alert renders an alert bootstrap component.
*
* For example,
*
* ```php
* echo Alert::widget(array(
* 'body' => 'Say hello...',
* 'closeButton' => array(
* 'label' => '×',
* 'tag' => 'a'
* ),
* ));
* ```
*
* The following example will show the content enclosed between the [[begin()]]
* and [[end()]] calls within the alert box:
*
* ```php
* Alert::begin(array(
* 'closeButton' => array(
* 'label' => '×'
* )
* ));
*
* echo 'Say hello...';
*
* Alert::end();
* ```
*
* @see http://twitter.github.io/bootstrap/javascript.html#modals
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/
class
Alert
extends
Widget
{
/**
* @var string the body content in the alert component. Note that anything between
* the [[begin()]] and [[end()]] calls of the Alert widget will also be treated
* as the body content, and will be rendered before this.
*/
public
$body
;
/**
* @var array the options for rendering the close button tag.
* The close button is displayed in the header of the modal window. Clicking
* on the button will hide the modal window. If this is null, no close button will be rendered.
*
* The following special options are supported:
*
* - tag: string, the tag name of the button. Defaults to 'button'.
* - label: string, the label of the button. Defaults to '×'.
*
* The rest of the options will be rendered as the HTML attributes of the button tag.
* Please refer to the [Alert plugin help](http://twitter.github.com/bootstrap/javascript.html#alerts)
* for the supported HTML attributes.
*/
public
$closeButton
=
array
();
/**
* Initializes the widget.
*/
public
function
init
()
{
parent
::
init
();
$this
->
initOptions
();
echo
Html
::
beginTag
(
'div'
,
$this
->
options
)
.
"
\n
"
;
echo
$this
->
renderBodyBegin
()
.
"
\n
"
;
}
/**
* Renders the widget.
*/
public
function
run
()
{
echo
"
\n
"
.
$this
->
renderBodyEnd
();
echo
"
\n
"
.
Html
::
endTag
(
'div'
);
$this
->
registerPlugin
(
'alert'
);
}
/**
* Renders the close button if any before rendering the content.
* @return string the rendering result
*/
protected
function
renderBodyBegin
()
{
return
$this
->
renderCloseButton
();
}
/**
* Renders the alert body (if any).
* @return string the rendering result
*/
protected
function
renderBodyEnd
()
{
return
$this
->
body
.
"
\n
"
;
}
/**
* Renders the close button.
* @return string the rendering result
*/
protected
function
renderCloseButton
()
{
if
(
$this
->
closeButton
!==
null
)
{
$tag
=
ArrayHelper
::
remove
(
$this
->
closeButton
,
'tag'
,
'button'
);
$label
=
ArrayHelper
::
remove
(
$this
->
closeButton
,
'label'
,
'×'
);
if
(
$tag
===
'button'
&&
!
isset
(
$this
->
closeButton
[
'type'
]))
{
$this
->
closeButton
[
'type'
]
=
'button'
;
}
return
Html
::
tag
(
$tag
,
$label
,
$this
->
closeButton
);
}
else
{
return
null
;
}
}
/**
* Initializes the widget options.
* This method sets the default values for various options.
*/
protected
function
initOptions
()
{
$this
->
options
=
array_merge
(
array
(
'class'
=>
'fade in'
,
),
$this
->
options
);
$this
->
addCssClass
(
$this
->
options
,
'alert'
);
if
(
$this
->
closeButton
!==
null
)
{
$this
->
closeButton
=
array_merge
(
array
(
'data-dismiss'
=>
'alert'
,
'aria-hidden'
=>
'true'
,
'class'
=>
'close'
,
),
$this
->
closeButton
);
}
}
}
\ No newline at end of file
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