⚝
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
/
File
/
View File Name :
External.php
* @category Horde * @copyright 2012-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 * @package Core */ class Horde_Script_File_External extends Horde_Script_File { /** * External scripts are not cached. */ public $cache = null; /** * By default, put external scripts as very low priority so it doesn't * break-up caching collections (since a non-cached script will cause * separate cache files to be created). */ protected $_priority = self::PRIORITY_LOW; /** * External URL. * * @param string */ protected $_url; /** * Adds an external javascript script to the output. * * @param string $url The URL to the external script file. */ public function __construct($url) { $this->_app = 'horde'; $this->_file = basename($url); $this->_url = $url; } /** */ public function __get($name) { switch ($name) { case 'hash': return hash('md5', $this->_url); case 'modified': return 0; case 'path': return null; case 'url': case 'url_full': return $this->_url; } return parent::__get($name); } }