HEX
Server: Apache
System: Linux darrell.nocdirect.com 4.18.0-513.18.2.el8_9.x86_64 #1 SMP Sat Mar 30 06:10:41 EDT 2024 x86_64
User: joderbya (1358)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/joderbya/2bsasistemas.co.mz/gestaofrota/combo.php
<?php
require "include/phpfunctions.php";

$cCharset = "utf-8";

$queryString = getQueryString();

if (!isset($queryString) || strlen($queryString) == 0) {
	return;
}
$yuiFiles    = explode("&", $queryString);
$contentType = strpos($yuiFiles[0], ".js") ? 'application/x-javascript' : ' text/css';


$yuiComponents = array();

if($contentType=='application/x-javascript')
{
	foreach($yuiFiles as $yuiFile) {
		$parts = explode("/", $yuiFile);
		if(count($parts) == 4)
		{
			if (isset($parts[0]) && isset($parts[1]) && isset($parts[2])) {
				//Add module to array for loading
				$yuiComponents[] = $parts[2]."/".$parts[2];
			} else {
			die('<!-- Unable to determine module name! '.runner_htmlspecialchars($yuiFile).' -->');
			}
		}
		else
		{
			$start = strpos($yuiFile, "/build/");
			if($start === FALSE)
				die('<!-- Unable to determine module name! '.runner_htmlspecialchars($yuiFile).' -->');
			$start += strlen("/build/");
			$end = strpos($yuiFile, ".js");
			if($end === FALSE)
				die('<!-- Unable to determine module name! '.runner_htmlspecialchars($yuiFile).' -->');
			$yuiComponents[] = substr($yuiFile, $start, $end - $start);
		}
	}
	$library = myfile_get_contents(getabspath("include/yui/yui.lib"), "r");
}
else
{
//	css
	foreach($yuiFiles as $yuiFile) {
		$start = strpos($yuiFile, "/build/");
		if($start === FALSE)
			die('<!-- Unable to determine module name! '.runner_htmlspecialchars($yuiFile).' -->');
		$start += strlen("/build/");
		$yuiComponents[] = substr($yuiFile, $start);
	}
	$library = myfile_get_contents(getabspath("include/yui/yuicss.lib"), "r");
}

header("Cache-Control: max-age=315360000");
header("Expires: Thu, 29 Oct 2020 20:00:00 GMT");
header("Content-Type: " . $contentType);

foreach($yuiComponents as $y)
{
	$start = strpos($library, "begincombofile ".$y);
	if($start === FALSE)
	{
		die("Unknown file ".runner_htmlspecialchars($y));
	}
	$start += strlen("begincombofile ".$y);
	$end = strpos($library, "endcombofile", $start);
	if($end === FALSE)
	{
		die("Unknown file ".runner_htmlspecialchars($y));
	}
	echo substr($library, $start, $end - $start);
}
?>