mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 03:46:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			958 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			958 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | Alert Levels
 | |
|     |--------------------------------------------------------------------------
 | |
|     |
 | |
|     | The default sort of alert levels which can be called as functions on the
 | |
|     | AlertsMessageBag class. This gives a convenient way to add certain type's
 | |
|     | of messages.
 | |
|     |
 | |
|     | For example:
 | |
|     |
 | |
|     |     Alerts::info($message);
 | |
|     |
 | |
|     */
 | |
| 
 | |
|     'levels' => [
 | |
|         'info',
 | |
|         'warning',
 | |
|         'danger',
 | |
|         'success',
 | |
|     ],
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | Session Key
 | |
|     |--------------------------------------------------------------------------
 | |
|     |
 | |
|     | The session key which is used to store flashed messages into the current
 | |
|     | session. This can be changed if it conflicts with another key.
 | |
|     |
 | |
|     */
 | |
| 
 | |
|     'session_key' => 'alert_messages',
 | |
| ];
 | 
