SHELL BYPASS 403 |
Modern UI. Responsive. Powerful.

Faizzz-Chin Shell

Uname\Kernel: Linux server.kxo.bgz.mybluehostin.me 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Server: Apache
PHP Version: 8.2.28 [ PHP INFO ]
Operating System: Linux
Server Ip: 162.240.163.222
Your Ip: 216.73.216.114
Date Time: 2025-07-11 15:18:49
User: dilseshaadi (1027) | Group: dilseshaadi (1027)
Safe Mode: OFF
Disable Function: exec,passthru,shell_exec,system

name : html.php
<?php

class VP_Util_HTML {
	
	/**
	 * Build Classes
	 * @param  array   $params set of classes
	 * @param  boolean $format format of return string, use %s for 
	 * @return string          full classes declaration
	 */
	public static function build_class($params, $format = ' class="%s"') {
		$params = (array) $params;
		$params = array_filter($params);
		return str_replace('%s', implode(" ", $params), $format);
	}

	/**
	 * Check if the value provided matches the condition, then it deserves have a class
	 * @param  string $term      background color value
	 * @param  array  $condition condition to be matched
	 * @param  string $format    output format, use % wildcard to print the matched value
	 * @return string            class string or null
	 */
	public static function grant_class($term = '', $format = '%', $condition = true) {
		if ( (is_array($condition) and in_array($term, $condition)) or $condition === true) {
			return str_replace('%', $term, $format);
		}
		return null;
	}

	/**
	 * Build inline styles
	 * @param  array   $params set of styles declaration
	 * @param  boolean $format format of return string, use %s for 
	 * @return string          full style declaration
	 */
	public static function build_inline_style($params, $format = ' style="%s"') {
		$params = (array) $params;
		$params = array_filter($params);
		return str_replace('%s', implode(" ", $params), $format);
	}
}
© 2025 Faizzz-Chin