12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- defined('IN_PHPCMS') or exit('No permission resources.');
- pc_base::load_app_class('admin', 'admin', 0);
- class check extends admin {
- //数据库连接
- private $comment_check_db,$comment_db,$comment;
- function __construct() {
- $this->comment_data_db = pc_base::load_model('comment_data_model');
- $this->comment_check_db = pc_base::load_model('comment_check_model');
- parent::__construct();
- $this->comment = pc_base::load_app_class('comment');
- }
-
- public function checks() {
- $total = $this->comment_check_db->count(array('siteid'=>$this->get_siteid()));
- $comment_check_data = $this->comment_check_db->select(array('siteid'=>$this->get_siteid()), '*', '20', 'id desc');
- if (empty($comment_check_data)) showmessage(L('no_check_comments').'<script>window.top.$("#display_center_id").css("display","none");</script>');
- pc_base::load_sys_class('format','', 0);
- $show_header = true;
- include $this->admin_tpl('comment_check');
- }
-
- public function ajax_checks() {
- $id = isset($_GET['id']) && $_GET['id'] ? $_GET['id'] : (isset($_GET['form']) ? showmessage(L('please_chose_comment'), HTTP_REFERER) : exit('0'));
- $type = isset($_GET['type']) && intval($_GET['type']) ? intval($_GET['type']) : exit('0');
- $commentid = isset($_GET['commentid']) && trim($_GET['commentid']) ? safe_replace(trim($_GET['commentid'])) : exit('0');
- if (is_array($id)) {
- foreach ($id as $v) {
- if (!$v = intval($v)) {
- continue;
- }
- $this->comment->status($commentid, $v, $type);
- }
- showmessage(L('operation_success'), HTTP_REFERER);
- } else {
- $id = intval($id) ? intval($id) : exit('0');
- $this->comment->status($commentid, $id, $type);
- }
- if ($comment->msg_code != 0) {
- exit($comment->get_error());
- } else {
- exit('1');
- }
- }
-
- public function public_get_one() {
- $total = $this->comment_check_db->count(array('siteid'=>$this->get_siteid()));
- $comment_check_data = $this->comment_check_db->select(array('siteid'=>$this->get_siteid()), '*', '19,1', 'id desc');
- $comment_check_data = $comment_check_data[0];
- $r = array();
- if (is_array($comment_check_data) && !empty($comment_check_data)) {
- $this->comment_data_db->table_name($comment_check_data['tableid']);
- $r = $this->comment_data_db->get_one(array('id'=>$comment_check_data['comment_data_id'], 'siteid'=>$this->get_siteid()));
- pc_base::load_sys_class('format','', 0);
- $r['creat_at'] = format::date($r['creat_at'], 1);
- if (pc_base::load_config('system','charset')=='gbk') {
- foreach ($r as $k=>$v) {
- $r[$k] = iconv('gbk', 'utf-8', $v);
- }
- }
- }
- echo json_encode(array('total'=>$total, 'data'=>$r));
- }
- }
|