26 lines
382 B
PHP
26 lines
382 B
PHP
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
|
|
class Alert {
|
|
|
|
// new
|
|
public static function set($value, $key='alert')
|
|
{
|
|
Session::set('defined', true);
|
|
|
|
Session::set($key, $value);
|
|
}
|
|
|
|
public static function get($key='alert')
|
|
{
|
|
Session::set('defined', false);
|
|
|
|
return Session::get($key);
|
|
}
|
|
|
|
public static function defined()
|
|
{
|
|
return Session::get('defined');
|
|
}
|
|
|
|
}
|