Размер файла: 887B
<?
include_once H.'system/inc/basic_settings.php';
if(detection::wap_browser())
{
$title = $shcmsengine['title'];
$keywords = $shcmsengine['keywords'];
$description = $shcmsengine['description'];
echo $templater->tpl_($title,H.'template/designs/'.$users_user['wap'].'/header.tpl',$keywords,$description);
}
elseif(detection::web_browser())
{
$title = $shcmsengine['title'];
$keywords = $shcmsengine['keywords'];
$description = $shcmsengine['description'];
echo $templater->tpl_($title,H.'template/designs/'.$users_user['web'].'/header.tpl',$keywords,$description);
}
elseif(detection::itouch_browser()){
$title = $shcmsengine['title'];
$keywords = $shcmsengine['keywords'];
$description = $shcmsengine['description'];
echo $templater->tpl_($title,H.'template/designs/'.$users_user['itouch'].'/header.tpl',$keywords,$description);
}
?>