12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: table_common_member_profile_setting.php 27449 2012-02-01 05:32:35Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- class table_common_member_profile_setting extends discuz_table
- {
- public function __construct() {
- $this->_table = 'common_member_profile_setting';
- $this->_pk = 'fieldid';
- parent::__construct();
- }
- public function range($start = 0, $limit = 0) {
- return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' ORDER BY available DESC, displayorder'.DB::limit($start, $limit), null, $this->_pk);
- }
- public function fetch_all_by_available_unchangeable($available, $unchangeable) {
- return DB::fetch_all('SELECT * FROM %t WHERE available=%d AND unchangeable=%d ORDER BY displayorder', array($this->_table, $available, $unchangeable), $this->_pk);
- }
- public function fetch_all_by_available($available) {
- return DB::fetch_all('SELECT * FROM %t WHERE available=%d ORDER BY displayorder', array($this->_table, $available), $this->_pk);
- }
- public function fetch_all_by_available_formtype($available, $formtype) {
- return DB::fetch_all('SELECT * FROM %t WHERE available=%d AND formtype=%s', array($this->_table, $available, $formtype), $this->_pk);
- }
- public function fetch_all_by_available_required($available, $required) {
- return DB::fetch_all('SELECT * FROM %t WHERE available=%d AND required=%d', array($this->_table, $available, $required), $this->_pk);
- }
- public function fetch_all_by_available_showinregister($available, $showinregister) {
- return DB::fetch_all('SELECT * FROM %t WHERE available=%d AND showinregister=%d', array($this->_table, $available, $showinregister), $this->_pk);
- }
- public function fetch_all_by_available_showinthread($available, $showinthread) {
- return DB::fetch_all('SELECT * FROM %t WHERE available=%d AND showinthread=%d', array($this->_table, $available, $showinthread), $this->_pk);
- }
- public function clear_showinthread() {
- DB::update($this->_table, array('showinthread' => 0));
- }
- }
- ?>
|