20 lines
202 B
PHP
20 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
class Alert {
|
||
|
|
||
|
// new
|
||
|
public static function set($value, $key='alert')
|
||
|
{
|
||
|
Session::set($key, $value);
|
||
|
}
|
||
|
|
||
|
public static function get($key='alert')
|
||
|
{
|
||
|
return Session::get($key);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|