⚝
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
/
Script
/
Edit File: Cache.php
<?php /** * Copyright 2014-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @category Horde * @copyright 2014-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 * @package Core */ /** * Object handling storage of cached JS data. * * @author Michael Slusarz <slusarz@horde.org> * @category Horde * @copyright 2014-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 * @package Core * @since 2.12.0 */ abstract class Horde_Script_Cache { /** * Configuration parameters. * * @var array */ protected $_params; /** * Constructor. * * @param array $params Configuration parameters. */ public function __construct(array $params = array()) { $this->_params = $params; if (!rand(0, 999)) { $this->gc(); } } /** * Process the scripts contained in Horde_Script_List. * * @param Horde_Script_List $hsl Script list. * @param boolean $full Return full URLs? * @since Horde_Core 2.28.0 * * @return object Object with these properties: * - all: (array) * - jsvars: (array) * - script: (array) */ public function process(Horde_Script_List $hsl, $full = false) { $out = new stdClass; $out->all = array(); $out->jsvars = array(); $out->script = array(); $last_cache = null; $tmp = array(); foreach ($hsl as $val) { $out->all[] = $url = strval($full ? $val->url_full : $val->url); if (is_null($val->cache)) { $out->script = array_merge( $out->script, $this->_process($tmp, $full), array($url) ); $tmp = array(); } else { if (!is_null($last_cache) && ($last_cache != $val->cache)) { $out->script = array_merge( $out->script, $this->_process($tmp, $full) ); $tmp = array(); } $tmp[$val->hash] = $val; } $last_cache = $val->cache; if (!empty($val->jsvars)) { $out->jsvars = array_merge($out->jsvars, $val->jsvars); } } $out->script = array_merge($out->script, $this->_process($tmp)); return $out; } /** * Perform garbage collection. */ public function gc() { } /** * Process a list of scripts. * * @param array $scripts Script list. * @param boolean $full Return full URLs? * * @return array List of JS files to load. */ abstract protected function _process($scripts, $full = false); }
Simpan