Class yii\bootstrap\Alert
Inheritance | yii\bootstrap\Alert » yii\bootstrap\Widget » yii\base\Widget |
---|---|
Uses Traits | yii\bootstrap\BootstrapWidgetTrait |
Available since extension's version | 2.0 |
Source Code | https://github.com/yiisoft/yii2-bootstrap/blob/master/src/Alert.php |
Alert renders an alert bootstrap component.
For example,
echo Alert::widget([
'options' => [
'class' => 'alert-info',
],
'body' => 'Say hello...',
]);
The following example will show the content enclosed between the begin() and end() calls within the alert box:
Alert::begin([
'options' => [
'class' => 'alert-warning',
],
]);
echo 'Say hello...';
Alert::end();
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$body | string | The body content in the alert component. | yii\bootstrap\Alert |
$clientEvents | array | The event handlers for the underlying Bootstrap JS plugin. | yii\bootstrap\BootstrapWidgetTrait |
$clientOptions | array | The options for the underlying Bootstrap JS plugin. | yii\bootstrap\BootstrapWidgetTrait |
$closeButton | array|false | The options for rendering the close button tag. | yii\bootstrap\Alert |
$options | array | The HTML attributes for the widget container tag. | yii\bootstrap\Widget |
Public Methods
Method | Description | Defined By |
---|---|---|
getView() | yii\bootstrap\BootstrapWidgetTrait | |
init() | Initializes the widget. | yii\bootstrap\Alert |
run() | Renders the widget. | yii\bootstrap\Alert |
Protected Methods
Method | Description | Defined By |
---|---|---|
initOptions() | Initializes the widget options. | yii\bootstrap\Alert |
registerClientEvents() | Registers JS event handlers that are listed in $clientEvents. | yii\bootstrap\BootstrapWidgetTrait |
registerPlugin() | Registers a specific Bootstrap plugin and the related events | yii\bootstrap\BootstrapWidgetTrait |
renderBodyBegin() | Renders the close button if any before rendering the content. | yii\bootstrap\Alert |
renderBodyEnd() | Renders the alert body (if any). | yii\bootstrap\Alert |
renderCloseButton() | Renders the close button. | yii\bootstrap\Alert |
Property Details
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.
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 false, 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 documentation for the supported HTML attributes.
Method Details
public abstract \yii\web\View getView ( ) | ||
return | \yii\web\View |
The view object that can be used to render views or view files. |
---|
abstract function getView();
Initializes the widget.
public void init ( ) |
public function init()
{
parent::init();
$this->initOptions();
echo Html::beginTag('div', $this->options) . "\n";
echo $this->renderBodyBegin() . "\n";
}
Initializes the widget options.
This method sets the default values for various options.
protected void initOptions ( ) |
protected function initOptions()
{
Html::addCssClass($this->options, ['alert', 'fade', 'in']);
if ($this->closeButton !== false) {
$this->closeButton = array_merge([
'data-dismiss' => 'alert',
'aria-hidden' => 'true',
'class' => 'close',
], $this->closeButton);
}
}
Defined in: yii\bootstrap\BootstrapWidgetTrait::registerClientEvents()
Registers JS event handlers that are listed in $clientEvents.
protected void registerClientEvents ( ) |
protected function registerClientEvents()
{
if (!empty($this->clientEvents)) {
$id = $this->options['id'];
$js = [];
foreach ($this->clientEvents as $event => $handler) {
$js[] = "jQuery('#$id').on('$event', $handler);";
}
$this->getView()->registerJs(implode("\n", $js));
}
}
Defined in: yii\bootstrap\BootstrapWidgetTrait::registerPlugin()
Registers a specific Bootstrap plugin and the related events
protected void registerPlugin ( $name ) | ||
$name | string |
The name of the Bootstrap plugin |
protected function registerPlugin($name)
{
$view = $this->getView();
BootstrapPluginAsset::register($view);
$id = $this->options['id'];
if ($this->clientOptions !== false) {
$options = empty($this->clientOptions) ? '' : Json::htmlEncode($this->clientOptions);
$js = "jQuery('#$id').$name($options);";
$view->registerJs($js);
}
$this->registerClientEvents();
}
Renders the close button if any before rendering the content.
protected string renderBodyBegin ( ) | ||
return | string |
The rendering result |
---|
protected function renderBodyBegin()
{
return $this->renderCloseButton();
}
Renders the alert body (if any).
protected string renderBodyEnd ( ) | ||
return | string |
The rendering result |
---|
protected function renderBodyEnd()
{
return $this->body . "\n";
}
Renders the close button.
protected string renderCloseButton ( ) | ||
return | string |
The rendering result |
---|
protected function renderCloseButton()
{
if (($closeButton = $this->closeButton) !== false) {
$tag = ArrayHelper::remove($closeButton, 'tag', 'button');
$label = ArrayHelper::remove($closeButton, 'label', '×');
if ($tag === 'button' && !isset($closeButton['type'])) {
$closeButton['type'] = 'button';
}
return Html::tag($tag, $label, $closeButton);
} else {
return null;
}
}
Renders the widget.
public void run ( ) |
public function run()
{
echo "\n" . $this->renderBodyEnd();
echo "\n" . Html::endTag('div');
$this->registerPlugin('alert');
}