我正在尝试根据设备浏览器选择特定模板。我正在使用来自http://www.mobileesp.com的 Anthony Hand 的库来检测设备,然后我想以编程方式设置模板。图书馆是这样工作的
require_once 'mdetect.php';
//Instantiate the object
$uagent_obj = new uagent_info();
//Detect iPhone
if ($uagent_obj->DetectTierIphone() == $uagent_obj->true) {
echo '<!-- Setting Theme for Smart devices -->';
}
//Detect All Other Mobile Devices
else if ($uagent_obj->DetectTierOtherPhones() == $uagent_obj->true) {
echo '<!-- Setting Theme for Smart devices -->';
}
请指导我如何在 ZenCart 中做到这一点?