Server : nginx/1.22.1 System : Linux iZwz9daxib3w3i063fw434Z 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/www.jkmold.com/phpcms/modules/comment/classes/ |
<?php class comment_tag { //数据库连接 private $comment_db, $comment_setting_db, $comment_data_db, $comment_table_db; public function __construct() { $this->comment_db = pc_base::load_model('comment_model'); $this->comment_setting_db = pc_base::load_model('comment_setting_model'); $this->comment_data_db = pc_base::load_model('comment_data_model'); $this->comment_table_db = pc_base::load_model('comment_table_model'); } /** * * PC标签数据数量计算函数 * @param array $data PC标签中的配置参数传入 */ public function count($data) { if($data['action']=='get_comment') return 0; $commentid = $data['commentid']; if (empty($commentid)) return false; $siteid = $data['siteid']; if (empty($siteid)) { pc_base::load_app_func('global', 'comment'); list($module,$contentid, $siteid) = decode_commentid($commentid); } $comment = $this->comment_db->get_one(array('commentid'=>$commentid, 'siteid'=>$siteid)); if (!$comment) return false; //是否按评论方向获取 $direction = isset($data['direction']) && intval($data['direction']) ? intval($data['direction']) : 0; switch ($direction) { case 1://正方 return $comment['square']; break; case 2://反方 return $comment['anti']; break; case 3://中立方 return $comment['neutral']; break; default://获取所有 return $comment['total']; } } /** * * 获取评论总表信息 * @param array $data PC标签中的配置参数传入 */ public function get_comment($data) { $commentid = $data['commentid']; if (empty($commentid)) return false; return $this->comment_db->get_one(array('commentid'=>$commentid)); } /** * * 获取评论数据 * @param array $data PC标签中的配置参数传入 */ public function lists($data) { $commentid = $data['commentid']; if (empty($commentid)) return false; $siteid = $data['siteid']; if (empty($siteid)) { pc_base::load_app_func('global', 'comment'); list($module,$contentid, $siteid) = decode_commentid($commentid); } $comment = $this->comment_db->get_one(array('commentid'=>$commentid, 'siteid'=>$siteid)); if (!$comment) return false; //设置存储数据表 $this->comment_data_db->table_name($comment['tableid']); $hot = 'id'; if (isset($data['hot']) && !empty($data['hot'])) { $hot = 'support desc, id'; } //是否按评论方向获取 $direction = isset($data['direction']) && intval($data['direction']) ? intval($data['direction']) : 0; if (!in_array($direction, array(0,1,2,3))) { $direction = 0; } switch ($direction) { case 1://正方 $sql = array('commentid'=>$commentid, 'direction'=>1, 'status'=>1); break; case 2://反方 $sql = array('commentid'=>$commentid, 'direction'=>2, 'status'=>1); break; case 3://中立方 $sql = array('commentid'=>$commentid, 'direction'=>3, 'status'=>1); break; default://获取所有 $sql = array('commentid'=>$commentid, 'status'=>1); } return $this->comment_data_db->select($sql, '*', $data['limit'], $hot.' desc '); } /** * * 评论排行榜 * @param array $data PC标签中的配置参数传入 */ public function bang($data) { $data['limit'] = intval($data['limit']); if (!isset($data['limit']) || empty($data['limit'])) { $data['limit'] = 10; } $sql = array(); $data['siteid'] = intval($data['siteid']); if (isset($data['siteid']) && !empty($data['siteid'])) { $sql = array('siteid'=>$data['siteid']); } return $this->comment_db->select($sql, "*", $data['limit'], "total desc"); } /** * * PC标签,可视化显示参数配置。 */ public function pc_tag() { $sites = pc_base::load_app_class('sites','admin'); $sitelist = $sites->pc_tag_list(); return array( 'action'=>array('lists'=>L('list','', 'comment'), 'get_comment'=>L('comments_on_the_survey', '', 'comment'), 'bang'=>L('comment_bang', '', 'comment')), 'lists'=>array( 'commentid'=>array('name'=>L('comments_id', '', 'comment'),'htmltype'=>'input', 'validator'=>array('min'=>1)), 'siteid'=>array('name'=>L('site_id', '', 'comment'),'htmltype'=>'input_select', 'data'=>$sitelist,'validator'=>array('min'=>1)), 'direction'=>array('name'=>L('comments_direction', '', 'comment'), 'htmltype'=>'select', 'data'=>array('0'=>L('jiushishuo', '', 'comment'), '1'=>L('tetragonal', '', 'comment'), '2'=>L('cons', '', 'comment'), '3'=>L('neutrality', '', 'comment'))), 'hot'=>array('name'=>L('sort', '', 'comment'), 'htmltype'=>'select','data'=>array('0'=>L('new', '', 'comment'), '1'=>L('hot', '', 'comment'))), ), 'get_comment'=>array('commentid'=>array('name'=>L('comments_id', '', 'comment'),'htmltype'=>'input', 'defaultdata'=>'$commentid')), ); } }