mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-17 06:48:59 +08:00
26 lines
562 B
PHP
26 lines
562 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @link http://www.yiiframework.com/
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yii\bootstrap\enum;
|
|
|
|
/**
|
|
* AlertEnum provides easy access to all predefined alert set of named values
|
|
*
|
|
* @author Antonio Ramirez <amigo.cobos@gmail.com>
|
|
* @since 2.0
|
|
*/
|
|
class AlertEnum
|
|
{
|
|
const CLASS_NAME = 'alert';
|
|
|
|
const TYPE_DEFAULT = '';
|
|
const TYPE_SUCCESS = 'alert-success';
|
|
const TYPE_INFORMATION = 'alert-info';
|
|
const TYPE_ERROR = 'alert-error';
|
|
|
|
const SIZE_BLOCK = 'alert-block';
|
|
} |