bludit/bl-kernel/helpers/alert.class.php

35 lines
615 B
PHP
Raw Normal View History

2015-05-05 01:00:01 +00:00
<?php defined('BLUDIT') or die('Bludit CMS.');
2015-03-27 01:00:01 +00:00
class Alert {
2015-11-06 21:23:50 -03:00
// Status, 0 = OK, 1 = Fail
public static function set($value, $status=ALERT_STATUS_OK, $key='alert')
2015-03-27 01:00:01 +00:00
{
2015-05-14 22:07:45 +00:00
Session::set('defined', true);
2015-11-06 21:23:50 -03:00
Session::set('alertStatus', $status);
2015-03-27 01:00:01 +00:00
Session::set($key, $value);
}
public static function get($key='alert')
{
2015-05-14 22:07:45 +00:00
Session::set('defined', false);
2015-03-27 01:00:01 +00:00
return Session::get($key);
}
2015-11-06 21:23:50 -03:00
public static function status()
{
return Session::get('alertStatus');
}
2015-10-22 00:14:22 -03:00
public static function p($key='alert')
{
echo self::get($key);
}
2015-05-14 22:07:45 +00:00
public static function defined()
2015-05-05 01:00:01 +00:00
{
2015-05-14 22:07:45 +00:00
return Session::get('defined');
2015-05-05 01:00:01 +00:00
}
2015-03-27 01:00:01 +00:00
}