Home>Article>CMS Tutorial> phpcms implements different templates for mobile and computer terminals

phpcms implements different templates for mobile and computer terminals

angryTom
angryTom Original
2020-02-11 16:02:27 2961browse

phpcms implements different templates for mobile and computer terminals

phpcms implements different templates for mobile and computer terminals

1. First open phpcms/libs/functions/global.func.php, in Add an isMobile() method at the end of the file to determine whether it is opened on the mobile phone

function isMobile() { // 如果有HTTP_X_WAP_PROFILE则一定是移动设备 if (isset($_SERVER['HTTP_X_WAP_PROFILE'])) { return true; } // 如果via信息含有wap则一定是移动设备,部分服务商会屏蔽该信息 if (isset($_SERVER['HTTP_VIA'])) { // 找不到为flase,否则为true return stristr($_SERVER['HTTP_VIA'], "wap") ? true : false; } // 脑残法,判断手机发送的客户端标志,兼容性有待提高。其中'MicroMessenger'是电脑微信 if (isset($_SERVER['HTTP_USER_AGENT'])) { $clientkeywords = array('nokia','sony','ericsson','mot','samsung','htc','sgh','lg','sharp','sie-','philips','panasonic','alcatel','lenovo','iphone','ipod','blackberry','meizu','android','netfront','symbian','ucweb','windowsce','palm','operamini','operamobi','openwave','nexusone','cldc','midp','wap','mobile','MicroMessenger'); // 从HTTP_USER_AGENT中查找手机浏览器的关键字 if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT']))) { return true; } } // 协议法,因为有可能不准确,放到最后判断 if (isset ($_SERVER['HTTP_ACCEPT'])) { // 如果只支持wml并且不支持html那一定是移动设备 // 如果支持wml和html但是wml在html之前则是移动设备 if ((strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') !== false) && (strpos($_SERVER['HTTP_ACCEPT'], 'text/html') === false || (strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') < strpos($_SERVER['HTTP_ACCEPT'], 'text/html')))) { return true; } } return false; }

2. Then open phpcms/modules/content/index.php. There are three places to change

a) Find the init method of the homepage. When loading the template at the end, make a judgment. If it is opened on the mobile phone, load the mobile phone template. If it is opened on the computer, load the computer template.

About 31 Line found:

include template('content','index',$default_style);

changed to:

if(isMobile()){ include template('mobile','index',$default_style); }else{ include template('content','index',$default_style); }

b) Find the show method of the content page, and also make a judgment when loading the template at the end

is probably found on line 203 :

include template('content',$template);

changed to:

if(isMobile()){ include template('mobile',$template); }else{ include template('content',$template); }

c) Find the lists method of the list page, and also make a judgment when loading the template at the end

is probably at lines 265 and 278 , there are two places here, find:

include template('content',$template); 改成: if(isMobile()){ include template('mobile',$template);}else{ include template('content',$template); }

Create a new mobile directory under your current template directory to store mobile templates

If your current template directory is phpcms/templates/ default, then you create a mobile directory under phpcms/templates/default.

If your current template directory is phpcms/templates/moban, then you create a mobile directory under phpcms/templates/moban.

In this way, different templates can be loaded on the computer side and the mobile phone side respectively.

PHP Chinese website, a large number of freePHPCMS tutorials, welcome to learn online!

The above is the detailed content of phpcms implements different templates for mobile and computer terminals. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn