⚝
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
/
Text
/
Filter
/
View File Name :
JavascriptMinify.php
* @category Horde * @deprecated Use Horde_JavascriptMinify package instead. * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 * @package Text_Filter */ class Horde_Text_Filter_JavascriptMinify extends Horde_Text_Filter_Base { /** * Filter parameters. * * @var array */ protected $_params = array( 'closure' => null, 'java' => null, 'yui' => null ); /** * Executes any code necessary after applying the filter patterns. * * @param string $text The text after the filtering. * * @return string The modified text. */ public function postProcess($text) { if (!empty($this->_params['java'])) { /* Are we using the YUI Compressor? */ if (!empty($this->_params['yui'])) { return $this->_runCompressor($text, $this->_params['yui'], ' --type js'); } /* Are we using the Google Closure Compiler? */ if (!empty($this->_params['closure'])) { return $this->_runCompressor($text, $this->_params['closure']); } } /* Use PHP-based minifier. */ if (class_exists('Horde_Text_Filter_Jsmin')) { $jsmin = new Horde_Text_Filter_Jsmin($text); try { return $jsmin->minify(); } catch (Exception $e) {} } return $text; } /** * Passes javascript through a java compressor (YUI or Closure). * * @param string $text The javascript text. * @param string $jar The JAR location. * @param string $args Additional command line arguments. * * @return string The modified text. */ protected function _runCompressor($text, $jar, $args = '') { if (!is_executable($this->_params['java']) || !file_exists($jar)) { return $text; } $descspec = array( 0 => array('pipe', 'r'), 1 => array('pipe', 'w'), 2 => array('pipe', 'w') ); $process = proc_open(escapeshellcmd($this->_params['java']) . ' -jar ' . escapeshellarg($jar) . $args, $descspec, $pipes); fwrite($pipes[0], $text); fclose($pipes[0]); $out = ''; while (!feof($pipes[1])) { $out .= fread($pipes[1], 8192); } fclose($pipes[1]); fclose($pipes[2]); proc_close($process); return $out; } }