1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
- class NewsModuleSite extends WeModuleSite {
- public function doMobileDetail() {
- global $_W, $_GPC;
- $id = intval($_GPC['id']);
- $sql = "SELECT * FROM " . tablename('news_reply') . " WHERE `id`=:id";
- $row = pdo_fetch($sql, array(':id'=>$id));
- if (!empty($row['url'])) {
- header("Location: ".$row['url']);
- }
- $row = istripslashes($row);
- $title = $row['title'];
-
- if($_W['os'] == 'android' && $_W['container'] == 'wechat' && $_W['account']['account']) {
- $subscribeurl = "weixin://profile/{$_W['account']['account']}";
- } else {
- $sql = 'SELECT `subscribeurl` FROM ' . tablename('account_wechats') . " WHERE `acid` = :acid";
- $subscribeurl = pdo_fetchcolumn($sql, array(':acid' => intval($_W['acid'])));
- }
- include $this->template('detail');
- }
- }
|