本文整理汇总了PHP中discuz_table::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP discuz_table::__construct方法的具体用法?PHP discuz_table::__construct怎么用?PHP discuz_table::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类discuz_table
的用法示例。
在下文中一共展示了discuz_table::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
$this->_table = 'pre_common_basedata';
$this->_allowmem = memory('check');
$this->_cache_ttl = 86400;
parent::__construct();
}
示例2: __construct
public function __construct()
{
$this->_table = 'forum_collection';
$this->_pk = 'ctid';
$this->_pre_cache_key = 'forum_collection_';
parent::__construct();
}
示例3: __construct
public function __construct()
{
$this->_table = 'home_follow';
$this->_pk = '';
$this->_pre_cache_key = 'home_follow_';
parent::__construct();
}
示例4: __construct
public function __construct()
{
$this->_table = '';
$this->_pk = '';
$this->_tables = array('tid' => 'forum_thread_moderate', 'pid' => 'forum_post_moderate', 'blogid' => 'home_blog_moderate', 'picid' => 'home_pic_moderate', 'doid' => 'home_doing_moderate', 'sid' => 'home_share_moderate', 'aid' => 'portal_article_moderate', 'aid_cid' => 'portal_comment_moderate', 'topicid_cid' => 'portal_comment_moderate', 'uid_cid' => 'home_comment_moderate', 'blogid_cid' => 'home_comment_moderate', 'sid_cid' => 'home_comment_moderate', 'picid_cid' => 'home_comment_moderate');
parent::__construct();
}
示例5: __construct
public function __construct()
{
$this->_table = 'sanree_brand_group_module';
$this->_jointable = 'sanree_brand_group';
$this->_pk = 'mid';
parent::__construct();
}
示例6: __construct
public function __construct()
{
$this->_table = 'pre_feedback_bug';
$this->_allowmem = true;
$this->_cache_ttl = 86400;
parent::__construct();
}
示例7: __construct
public function __construct()
{
$this->_table = 'sanree_brand_group';
$this->_membertable = 'common_member';
$this->_pk = 'groupid';
parent::__construct();
}
示例8: __construct
public function __construct()
{
$this->_table = 'forum_post_location';
$this->_pk = 'pid';
$this->_pre_cache_key = 'forum_post_location_';
$this->_cache_ttl = 0;
parent::__construct();
}
示例9: __construct
public function __construct()
{
$this->_table = 'plugin_dsuamupperc';
$this->_pk = 'id';
$this->_pre_cache_key = 'plugin_dsuamupperc_';
$this->_allowmem = true;
parent::__construct();
}
示例10: __construct
public function __construct()
{
$this->_table = 'sanree_brand_album_category';
$this->_joinbrandtable = 'sanree_brand_businesses';
$this->_membertable = 'common_member';
$this->_pk = 'catid';
parent::__construct();
}
示例11: __construct
public function __construct() {
$this->_table = 'common_plugin';
$this->_pk = 'pluginid';
parent::__construct();
/*vot*/ $this->_update_structure();
}
示例12: __construct
public function __construct()
{
$this->_table = 'common_session';
$this->_pk = 'sid';
$this->_pre_cache_key = 'common_session_';
$this->_allowmem = memory('check');
$this->_cache_ttl = 120;
parent::__construct();
}
示例13: __construct
public function __construct()
{
$this->_table = 'bigapp_connection';
$this->_pk = 'id';
$this->_fields = array('id', 'uid', 'openid', 'platid', 'status', 'param');
$this->_pre_cache_key = 'bigapp_connection_';
$this->_cache_ttl = 0;
parent::__construct();
}
示例14: __construct
public function __construct()
{
$this->_table = 'common_syscache';
$this->_pk = 'cname';
$this->_pre_cache_key = '';
$this->_isfilecache = getglobal('config/cache/type') == 'file';
$this->_allowmem = memory('check');
parent::__construct();
}
示例15: __construct
public function __construct()
{
$this->_table = 'common_member_forum_buylog';
$this->_pk = 'uid';
$this->_pre_cache_key = 'common_member';
$this->_allowmem = memory('check');
$this->_cache_ttl = 86400;
parent::__construct();
}