MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/public_html/india/wp-content/plugins/wptouch/core/cache.php
<?php

function wptouch_should_mobile_cache_page() {
	global $wptouch_pro;

	return $wptouch_pro->is_mobile_device;
}

function wptouch_cache_get_key() {
	$cache_key = 'wptouch_pro';

	// Add the active device class
	$cache_key = $cache_key . '_device_class_' . $wptouch_pro->$active_device_class;

	// Add the value of the user's cookie
	if ( isset( $_COOKIE[ WPTOUCH_COOKIE ] ) ) {
		$cache_key = $cache_key . '_cookie_' . $_COOKIE[ WPTOUCH_COOKIE ];
	}

	return md5( $cache_key );
}

function wptouch_cache_get_mobile_user_agents() {
	global $wptouch_pro;

	$user_agents = $wptouch_pro->get_supported_user_agents();
}