⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
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
/
Helper
/
Edit File: Block.php
<?php /** * Copyright 2006-2016 Horde LLC (http://www.horde.org/) * * @author Chuck Hagenbuch <chuck@horde.org> * @category Horde * @package View * @subpackage Helper */ /** * View helper for displaying Horde block objects. * * @author Chuck Hagenbuch <chuck@horde.org> * @category Horde * @package View * @subpackage Helper */ class Horde_View_Helper_Block extends Horde_View_Helper_Base { /** * Blocks that have already been fetched. * * @var array */ protected $_blockCache = array(); /** * Returns the title of the specified block. * * @param string $block The name of the block to get the title for. * @param mixed $arg1 The first argument to the Block constructor. * * @return string The requested Block's title. * @throws Horde_View_Exception * @throws InvalidArgumentException */ public function blockTitle() { list($block, $params) = $this->_args(func_get_args()); return $this->_block($block, $params)->getTitle(); } /** * Returns the content of the specified block. * * @param string $block The name of the block to get the content for. * @param mixed $arg1 The first argument to the Block constructor. * * @return string The requested Block's content. * @throws Horde_View_Exception * @throws InvalidArgumentException */ public function blockContent() { list($block, $params) = $this->_args(func_get_args()); return $this->_block($block, $params)->getContent(); } /** * Instantiates and caches Block objects. * * @param string $block The name of the block to fetch. * @param array $params Any arguments to the Block constructor. * * @return Horde_Core_Block The requested Block object. * @throws Horde_View_Exception */ protected function _block($block, $params) { $hash = sha1(serialize(array($block, $params))); if (!isset($this->_blockCache[$hash])) { try { $this->_blockCache[$hash] = $GLOBALS['injector'] ->getInstance('Horde_Core_Factory_BlockCollection') ->create() ->getBlock($block, $params); } catch (Exception $e) { throw new Horde_View_Exception($e); } } return $this->_blockCache[$hash]; } /** * Parses any argument style for the Block-fetching functions. * * @param array $args */ protected function _args($args) { $argc = count($args); if ($argc == 1) { if (is_array($args[0])) { $args = $args[0]; $argc = count($args); } } if ($argc < 2) { throw new InvalidArgumentException('You must provide at least an application name and a block name.'); } $app = array_shift($args); $block = array_shift($args); return array($app, $block, $args); } }
Simpan