discuz x3.2 平板使用手机模板

来源:互联网 发布:java权限控制设计 编辑:程序博客网 时间:2024/04/29 05:36

最近项目要上线 , 发现平板使用的是pc版的模板 , discuz在手机和PC上有两套模板 , 平板默认使用pc版的模板.

修改代码:
discuz/source/function/function_core.php文件下

function checkmobile() {    global $_G;    $mobile = array();    static $touchbrowser_list =array('iphone', 'android', 'phone', 'mobile', 'wap', 'netfront', 'java', 'opera mobi', 'opera mini',                'ucweb', 'windows ce', 'symbian', 'series', 'webos', 'sony', 'blackberry', 'dopod', 'nokia', 'samsung',                'palmsource', 'xda', 'pieplus', 'meizu', 'midp', 'cldc', 'motorola', 'foma', 'docomo', 'up.browser',                'up.link', 'blazer', 'helio', 'hosin', 'huawei', 'novarra', 'coolpad', 'webos', 'techfaith', 'palmsource',                'alcatel', 'amoi', 'ktouch', 'nexian', 'ericsson', 'philips', 'sagem', 'wellcom', 'bunjalloo', 'maui', 'smartphone',                'iemobile', 'spice', 'bird', 'zte-', 'longcos', 'pantech', 'gionee', 'portalmmm', 'jig browser', 'hiptop',                'benq', 'haier', '^lct', '320x320', '240x320', '176x220', 'windows phone',***'ipad'***);    static $wmlbrowser_list = array('cect', 'compal', 'ctl', 'lg', 'nec', 'tcl', 'alcatel', 'ericsson', 'bird', 'daxian', 'dbtel', 'eastcom',            'pantech', 'dopod', 'philips', 'haier', 'konka', 'kejian', 'lenovo', 'benq', 'mot', 'soutec', 'nokia', 'sagem', 'sgh',            'sed', 'capitel', 'panasonic', 'sonyericsson', 'sharp', 'amoi', 'panda', 'zte');    ***//static $pad_list = array('ipad');***    $useragent = strtolower($_SERVER['HTTP_USER_AGENT']);    if(dstrpos($useragent, $pad_list)) {        return false;    }    if(($v = dstrpos($useragent, $touchbrowser_list, true))){        $_G['mobile'] = $v;        return '2';    }
  1. 在 $touchbrowser_list 里面添加值: ipad

  2. 并将static $pad_list = array(‘ipad’); 注释掉

0 0
原创粉丝点击