bludit/kernel/helpers/alert.class.php

20 lines
202 B
PHP
Raw Normal View History

2015-03-27 02:00:01 +01:00
<?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);
}
}
?>