⚝
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: Javascript.php
<?php /** * Copyright 2007 Maintainable Software, LLC * Copyright 2006-2016 Horde LLC (http://www.horde.org/) * * @author Mike Naberezny <mike@maintainable.com> * @author Derek DeVries <derek@maintainable.com> * @author Chuck Hagenbuch <chuck@horde.org> * @license http://www.horde.org/licenses/bsd * @category Horde * @package View * @subpackage Helper */ /** * @author Mike Naberezny <mike@maintainable.com> * @author Derek DeVries <derek@maintainable.com> * @author Chuck Hagenbuch <chuck@horde.org> * @license http://www.horde.org/licenses/bsd * @category Horde * @package View * @subpackage Helper */ class Horde_View_Helper_Javascript extends Horde_View_Helper_Base { public function escapeJavascript($javascript) { return str_replace(array('\\', "\r\n", "\r", "\n", '"', "'"), array('\0\0', "\\n", "\\n", "\\n", '\"', "\'"), $javascript); } public function javascriptTag($content, $htmlOptions = array()) { return $this->contentTag('script', $this->javascriptCdataSection($content), array_merge($htmlOptions, array('type' => 'text/javascript'))); } public function javascriptCdataSection($content) { return "\n//" . $this->cdataSection("\n$content\n//") . "\n"; } }
Simpan