当前位置: 首页>>代码示例>>PHP>>正文


PHP Gdn_Model::__construct方法代码示例

本文整理汇总了PHP中Gdn_Model::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Gdn_Model::__construct方法的具体用法?PHP Gdn_Model::__construct怎么用?PHP Gdn_Model::__construct使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Gdn_Model的用法示例。


在下文中一共展示了Gdn_Model::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Class constructor. Defines the related database table name.
  */
 public function __construct()
 {
     self::$MemoryCache = array();
     parent::__construct('UserMeta');
     $this->SQL = clone Gdn::sql();
     $this->SQL->reset();
 }
开发者ID:korelstar,项目名称:vanilla,代码行数:10,代码来源:class.usermetamodel.php

示例2: __construct

 /**
  * Class constructor. Defines the related database table name.
  */
 public function __construct()
 {
     parent::__construct('User');
     $this->addFilterField(array('Admin', 'Deleted', 'CountVisits', 'CountInvitations', 'CountNotifications', 'Preferences', 'Permissions', 'LastIPAddress', 'AllIPAddresses', 'DateFirstVisit', 'DateLastActive', 'CountDiscussions', 'CountComments', 'Score', 'Photo'));
     if (!Gdn::session()->checkPermission('Garden.Moderation.Manage')) {
         $this->addFilterField(array('Banned', 'Verified', 'Confirmed', 'RankID'));
     }
 }
开发者ID:mcnasby,项目名称:datto-vanilla,代码行数:11,代码来源:class.usermodel.php

示例3: __construct

 /**
  * Defines the related database table name.
  */
 public function __construct()
 {
     parent::__construct('Activity');
     try {
         $this->setPruneAfter(c('Garden.PruneActivityAfter', '2 months'));
     } catch (Exception $ex) {
         $this->setPruneAfter('2 months');
     }
 }
开发者ID:vanilla,项目名称:vanilla,代码行数:12,代码来源:class.activitymodel.php

示例4: __construct

 public function __construct()
 {
     parent::__construct('UserAuthenticationProvider');
 }
开发者ID:tautomers,项目名称:knoopvszombies,代码行数:4,代码来源:class.authenticationprovidermodel.php

示例5: __construct

 /**
  * Class constructor. Defines the related database table name.
  *
  * @since 2.0.0
  * @access public
  */
 public function __construct()
 {
     parent::__construct('Category');
     $this->collection = new CategoryCollection();
     $this->collection->setConfig(Gdn::config());
 }
开发者ID:R-J,项目名称:vanilla,代码行数:12,代码来源:class.categorymodel.php

示例6: __construct

 /**
  * Class constructor. Defines the related database table name.
  * 
  * @since 2.0.0
  * @access public
  */
 public function __construct()
 {
     parent::__construct('ConversationMessage');
     $this->PrimaryKey = 'MessageID';
 }
开发者ID:rnovino,项目名称:Garden,代码行数:11,代码来源:class.conversationmessagemodel.php

示例7: __construct

 /**
  * Class constructor. Defines the related database table name.
  *
  * @since 2.0.0
  * @access public
  */
 public function __construct()
 {
     parent::__construct('Category');
     $this->collection = $this->createCollection();
 }
开发者ID:vanilla,项目名称:vanilla,代码行数:11,代码来源:class.categorymodel.php

示例8: __construct

 /**
  * Defines the related database table name.
  */
 public function __construct()
 {
     parent::__construct('BadgeAward');
 }
开发者ID:hxii,项目名称:Application-Yaga,代码行数:7,代码来源:class.badgeawardmodel.php

示例9: __construct

 /**
  * Class constructor. Defines the related database table name.
  * 
  * @since 2.0.0
  * @access public
  */
 public function __construct()
 {
     parent::__construct('Conversation');
 }
开发者ID:rnovino,项目名称:Garden,代码行数:10,代码来源:class.conversationmodel.php

示例10: __construct

 /**
  * Set up the attachment.
  */
 public function __construct()
 {
     parent::__construct('Attachment');
     $this->PrimaryKey = 'AttachmentID';
 }
开发者ID:R-J,项目名称:vanilla,代码行数:8,代码来源:class.attachmentmodel.php

示例11: __construct

 /**
  * Class constructor. Defines the related database table name.
  */
 public function __construct()
 {
     parent::__construct('Invitation');
 }
开发者ID:karanjitsingh,项目名称:iecse-forum,代码行数:7,代码来源:class.invitationmodel.php

示例12: __construct

 /**
  * @param string $Name
  */
 public function __construct($Name = '')
 {
     parent::__construct('Tag');
     $this->StringTags = c('Plugins.Tagging.StringTags');
 }
开发者ID:sitexa,项目名称:vanilla,代码行数:8,代码来源:class.tagmodel.php

示例13: __construct

 public function __construct()
 {
     parent::__construct('Page');
     $this->Validation->AddRule('UrlPath', 'function:ValidateUrlPath');
 }
开发者ID:unlight,项目名称:Candy,代码行数:5,代码来源:class.pagemodel.php

示例14: __construct

 /**
  * Class constructor. Defines the related database table name.
  */
 public function __construct()
 {
     parent::__construct('User');
     $this->addFilterField(['Admin', 'Deleted', 'CountVisits', 'CountInvitations', 'CountNotifications', 'Preferences', 'Permissions', 'LastIPAddress', 'AllIPAddresses', 'DateFirstVisit', 'DateLastActive', 'CountDiscussions', 'CountComments', 'Score']);
 }
开发者ID:vanilla,项目名称:vanilla,代码行数:8,代码来源:class.usermodel.php

示例15: __construct

 public function __construct($ImportPath = '')
 {
     $this->ImportPath = $ImportPath;
     parent::__construct();
 }
开发者ID:elpum,项目名称:TgaForumBundle,代码行数:5,代码来源:class.importmodel.php


注:本文中的Gdn_Model::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。