1 | <?php |
||
5 | class FlashMessage extends Container |
||
6 | { |
||
7 | const TYPE_SUCCESS = 'success'; |
||
8 | const TYPE_INFO = 'info'; |
||
9 | const TYPE_ERROR = 'error'; |
||
10 | const METHOD_APPEND = 'append'; |
||
11 | const METHOD_REPLACE = 'replace'; |
||
12 | |||
13 | const OPTION_TYPE = 'type'; |
||
14 | |||
15 | private static $template = '<div class="%type%">%value%</div>'; |
||
16 | |||
17 | private static $container = '[data-ajaxcom-flashmessage]'; |
||
18 | |||
19 | public function __construct($message, $type = self::TYPE_SUCCESS, $method = self::METHOD_APPEND) |
||
37 | } |
||
38 |