12345678910111213141516171819202122 |
- <?php
- defined('IN_PHPCMS') or exit('No permission resources.');
- pc_base::load_sys_class('model', '', 0);
- class vote_subject_model extends model {
- function __construct() {
- $this->db_config = pc_base::load_config('database');
- $this->db_setting = 'default';
- $this->table_name = 'vote_subject';
- parent::__construct();
- }
-
- /**
- * 说明: 取得投票信息, 返回数组
- * @param $subjectid 投票ID
- */
- function get_subject($subjectid)
- {
- if(!$subjectid) return FALSE;
- return $this->get_one(array('subjectid'=>$subjectid));
- }
- }
- ?>
|