- A+
所属分类:Emlog
打开 include/model/comment_model.php 文件
找到
- while ($row = $this->db->fetch_array($ret)) {
(在这里增加一个获取 useragent 的信息),添加下面的代码:
- $row['useragent'] = htmlspecialchars($row['useragent']);
添加后如图:
其次在评论提交中增加一个 useragent 的信息到数据库里,修改代码如下:
- function addComment($name, $content, $mail, $url, $imgcode, $blogId, $pid)
- {
- $ipaddr = getIp();
- $useragent = $_SERVER['HTTP_USER_AGENT'];
- $utctimestamp = time();
- if($pid != 0) {
- $comment = $this->getOneComment($pid);
- $content = '@' . addslashes($comment['poster']) . ':' . $content;
- }
- $ischkcomment = Option::get('ischkcomment');
- $hide = ROLE == ROLE_VISITOR $ischkcomment : 'n';
- $sql = 'INSERT INTO '.DB_PREFIX."comment (date,poster,gid,comment,mail,url,hide,ip,pid,useragent)
- VALUES ('$utctimestamp','$name','$blogId','$content','$mail','$url','$hide','$ipaddr','$pid','$useragent')";
- $ret = $this->db->query($sql);
- $cid = $this->db->insert_id();
- $CACHE = Cache::getInstance();
- if ($hide == 'n') {
- $this->db->query('UPDATE '.DB_PREFIX."blog SET comnum = comnum + 1 WHERE gid='$blogId'");
- $CACHE->updateCache(array('sta', 'comment'));
- doAction('comment_saved', $cid);
- emDirect(Url::log($blogId).'#'.$cid);
- } else {
- $CACHE->updateCache('sta');
- doAction('comment_saved', $cid);
- emMsg('评论发表成功,请等待管理员审核', Url::log($blogId));
- }
- }
然后打开你的博客模板目录,找到 module.php 文件,添加以下代码:
- <?php
- //获取评论用户操作系统、浏览器等信息
- function useragent($info){
- require_once 'useragent.class.php';
- $useragent = UserAgentFactory::analyze($info);
- ?>
- <img src="<?php echo TEMPLATE_URL.$useragent->platform['image']?>"> <?php echo $useragent->platform['title']; ?>
- <img src="<?php echo TEMPLATE_URL.$useragent->browser['image']?>"> <?php echo $useragent->browser['title']; ?>
- <?php
- }
- ?>
调用的格式:
- <?php echo useragent($comment['useragent']); ?>
将这段代码添加到 module.php 评论列表和子评论列表的适当位置就行了。
其他一些文件直接在下面,下载后放到模板根目录。
useragent.zip 下载地址:http://pan.baidu.com/s/1hsLskPA 密码:d1uj
本资源收集于网络,只做学习和交流使用。