⚝
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
/
ingo
/
lib
/
View File Name :
Smartmobile.php
* @category Horde * @license http://www.horde.org/licenses/apache ASL * @package Ingo */ /** * Base class for smartmobile view pages. * * @author Michael Slusarz
* @category Horde * @license http://www.horde.org/licenses/apache ASL * @package Ingo */ class Ingo_Smartmobile { /** * @var Horde_Variables */ public $vars; /** * @var Horde_View */ public $view; /** */ public function __construct(Horde_Variables $vars) { global $notification, $page_output; $this->vars = $vars; $this->view = new Horde_View(array( 'templatePath' => INGO_TEMPLATES . '/smartmobile' )); $this->view->addHelper('Horde_Core_Smartmobile_View_Helper'); $this->view->addHelper('Text'); $this->_initPages(); $this->_addBaseVars(); $page_output->addScriptFile('smartmobile.js'); $notification->notify(array('listeners' => 'status')); } /** */ public function render() { echo $this->view->render('rules'); echo $this->view->render('rule'); } /** */ protected function _initPages() { global $injector, $session; $this->view->list = array(); $filters = $injector->getInstance('Ingo_Factory_Storage')->create()->retrieve(Ingo_Storage::ACTION_FILTERS)->getFilterList(); $s_categories = $session->get('ingo', 'script_categories'); foreach ($filters as $key => $val) { // For now, skip non-display categories and disabled rules. if (!empty($val['disable']) || !in_array($val['action'], $s_categories)) { continue; } switch ($val['action']) { case Ingo_Storage::ACTION_BLACKLIST: $img = 'blacklist.png'; $name = _("Blacklist"); break; case Ingo_Storage::ACTION_WHITELIST: $img = 'whitelist.png'; $name = _("Whitelist"); break; case Ingo_Storage::ACTION_VACATION: $img = 'vacation.png'; $name = _("Vacation"); break; case Ingo_Storage::ACTION_FORWARD: $img = 'forward.png'; $name = _("Forward"); break; case Ingo_Storage::ACTION_SPAM: $img = 'spam.png'; $name = _("Spam Filter"); break; default: $img = null; $name = $val['name']; break; } $url = new Horde_Core_Smartmobile_Url(); $url->add('rulenum', $key); $url->setAnchor('rule'); $this->view->list[] = array( 'img' => is_null($img) ? null : Horde_Themes_Image::tag($img, array('attr' => array('class' => 'ui-li-icon'))), 'name' => $name, 'url' => $url ); } } /** * Add base javascript variables to the page. */ protected function _addBaseVars() { global $page_output; $code = array( 'text' => array( 'no_descrip' => _("No Description") ) ); $page_output->addInlineJsVars(array( 'var Ingo' => $code ), array('top' => true)); } }