www.gusucode.com > 高端教育培训门户+论坛网站源码程序 > 整站安装/整站源码/source/class/table/table_common_word_type.php

    <?php

/**
 *      [Discuz!] (C)2001-2099 Comsenz Inc.
 *      This is NOT a freeware, use is subject to license terms
 *
 *      $Id: table_common_word_type.php 27671 2012-02-09 06:56:51Z zhengqingpeng $
 */

if(!defined('IN_DISCUZ')) {
	exit('Access Denied');
}

class table_common_word_type extends discuz_table
{
	public function __construct() {

		$this->_table = 'common_word_type';
		$this->_pk    = 'id';

		parent::__construct();
	}
	public function fetch_by_typename($typename) {
		$data = array();
		if(!empty($typename)) {
			$data = DB::fetch_first('SELECT * FROM %t WHERE typename=%s', array($this->_table, $typename), $this->_pk);
		}
		return $data;
	}
	public function fetch_all() {
		return DB::fetch_all('SELECT * FROM %t', array($this->_table), $this->_pk);
	}

}

?>