12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: table_common_plugin.php 32122 2012-11-14 01:55:46Z monkey $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- class table_common_plugin extends discuz_table
- {
- public function __construct() {
- $this->_table = 'common_plugin';
- $this->_pk = 'pluginid';
- parent::__construct();
- }
- public function fetch_by_identifier($identifier) {
- return DB::fetch_first('SELECT * FROM %t WHERE identifier=%s', array($this->_table, $identifier));
- }
- public function fetch_all_identifier($identifier) {
- return DB::fetch_all('SELECT * FROM %t WHERE identifier IN (%n)', array($this->_table, $identifier), 'identifier');
- }
- public function fetch_all_data($available = false) {
- $available = $available !== false ? 'WHERE available='.intval($available) : '';
- return DB::fetch_all('SELECT * FROM %t %i ORDER BY available DESC, pluginid DESC', array($this->_table, $available));
- }
- public function fetch_all_by_identifier($identifier) {
- if(!$identifier) {
- return;
- }
- return DB::fetch_all('SELECT * FROM %t WHERE %i', array($this->_table, DB::field('identifier', $identifier)));
- }
- public function fetch_by_pluginvarid($pluginid, $pluginvarid) {
- return DB::fetch_first("SELECT * FROM %t p, %t pv WHERE p.pluginid=%d AND pv.pluginid=p.pluginid AND pv.pluginvarid=%d",
- array($this->_table, 'common_pluginvar', $pluginid, $pluginvarid));
- }
- public function delete_by_identifier($identifier) {
- if(!$identifier) {
- return;
- }
- DB::delete('common_plugin', DB::field('identifier', $identifier));
- }
- }
- ?>
|