⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
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-horde
/
imp
/
lib
/
Basic
/
View File Name :
Base.php
* @category Horde * @copyright 2013-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ abstract class IMP_Basic_Base { /** * @var array */ public $header_params = array(); /** * @var IMP_Indices_Mailbox */ public $indices; /** * @var string */ public $output; /** * @var string */ public $title; /** * @var Horde_Variables */ public $vars; /** */ public function __construct(Horde_Variables $vars) { global $page_output; $this->vars = $vars; $this->indices = new IMP_Indices_Mailbox($vars); $page_output->addLinkTag(array( 'href' => IMP_Basic_Search::url(), 'rel' => 'search', 'type' => null )); $mimecss = new Horde_Themes_Element('mime.css'); $page_output->addStylesheet($mimecss->fs, $mimecss->uri); $this->_init(); } /** */ public function render() { echo $this->output; } /** */ public function status() { Horde::startBuffer(); $GLOBALS['notification']->notify(array( 'listeners' => array('status', 'audio') )); return Horde::endBuffer(); } /** */ abstract protected function _init(); /** */ static public function url(array $opts = array()) { } }