File: /opt/aphex/sites/thesweetsensations.com/cloaker.php
<?php
require '/opt/aphex/cloaker/vendor/autoload.php';
#require '/opt/aphex/cloaker/google.php';
use Detection\MobileDetect;
$detect = new MobileDetect();
#session_start();
$bot = preg_match('/Googlebot/i', $_SERVER['HTTP_USER_AGENT'], $matches);
if ($bot || false !== strpos($_SERVER['HTTP_REFERER'], 'google.com')) {
if ($bot || $detect->isMobile()) {
# $_SESSION['shown'] = true;
include './index.php';
die();
} else {
}
} else {
}
include './index.html';
#var_dump($detect->isMobile());
#print_r($_SERVER);