comment_table_model.class.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. defined('IN_PHPCMS') or exit('No permission resources.');
  3. pc_base::load_sys_class('model', '', 0);
  4. class comment_table_model extends model {
  5. public $table_name;
  6. public function __construct() {
  7. $this->db_config = pc_base::load_config('database');
  8. $this->db_setting = 'comment';
  9. $this->table_name = 'comment_table';
  10. parent::__construct();
  11. }
  12. /**
  13. * 修改表记录总数
  14. * @param integer $tableid 表ID
  15. * @param string $num 要修改的数值(如果要添加请使用+=,如果要减少请使用-=)
  16. */
  17. public function edit_total($tableid, $num) {
  18. return $this->update(array('total'=>$num), array('tableid'=>$tableid));
  19. }
  20. /**
  21. * 创建新的评论数据表
  22. * @param integer $id 创建新的评论表
  23. */
  24. public function creat_table($id = '') {
  25. if (empty($id)) {
  26. $id = $this->insert(array('creat_at'=>SYS_TIME), true);
  27. }
  28. if ($this->query("CREATE TABLE `".$this->db_tablepre."comment_data_".$id."` (`id` int(10) unsigned NOT NULL auto_increment,`commentid` char(30) NOT NULL default '',`siteid` smallint(5) NOT NULL default '0',`userid` int(10) unsigned default '0',`username` varchar(20) default NULL,`creat_at` int(10) default 0,`ip` varchar(15) default NULL,`status` tinyint(1) default '0',`content` text,`direction` tinyint(1) default '0',`support` mediumint(8) unsigned default '0',`reply` tinyint(1) NOT NULL default '0',PRIMARY KEY (`id`),KEY `commentid` (`commentid`),KEY `direction` (`direction`), KEY `siteid` (`siteid`),KEY `support` (`support`)) ENGINE=MyISAM DEFAULT CHARSET=".$this->db_config[$this->db_setting]['charset'].";")) {
  29. return $id;
  30. } else {
  31. return false;
  32. }
  33. }
  34. }
  35. ?>