bludit/kernel/helpers/alert.class.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');
}
}