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


PHP BxDolModuleDb::__construct方法代码示例

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


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

示例1:

 function __construct(&$oConfig)
 {
     parent::__construct();
     $this->_oConfig = $oConfig;
     $this->_sTable = $oConfig->sTableName;
     $this->sTablePrefix = $oConfig->sTablePrefix;
 }
开发者ID:Prashank25,项目名称:dolphin.pro,代码行数:7,代码来源:BxPollDb.php

示例2:

 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->_oConfig = $oConfig;
     $this->_sTableInvites = $this->_sPrefix . 'invites';
     $this->_sTableRequests = $this->_sPrefix . 'requests';
 }
开发者ID:blas-dmx,项目名称:trident,代码行数:7,代码来源:BxInvDb.php

示例3: __construct

 public function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->_oConfig = $oConfig;
     $this->_sTable = $this->_sPrefix . 'events';
     $this->_sTableHandlers = $this->_sPrefix . 'handlers';
 }
开发者ID:blas-dmx,项目名称:trident,代码行数:7,代码来源:BxBaseModNotificationsDb.php

示例4: getLoggedId

 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->_oConfig =& $oConfig;
     $this->iViewer = getLoggedId();
     $this->aFileFields = array('medID' => 'ID', 'Categories' => 'Categories', 'medProfId' => 'Owner', 'medTitle' => 'Title', 'medUri' => 'Uri', 'medDesc' => 'Description', 'medTags' => 'Tags', 'medDate' => 'Date', 'medViews' => 'Views', 'Approved' => 'Status', 'Featured' => 'Featured', 'Rate' => 'Rate', 'RateCount' => 'RateCount');
     $this->aFavoriteFields = array('fileId' => 'ID', 'ownerId' => 'Profile', 'favDate' => 'Date');
 }
开发者ID:toxalot,项目名称:dolphin.pro,代码行数:8,代码来源:BxDolFilesDb.php

示例5:

 function __construct(&$oConfig)
 {
     parent::__construct();
     $this->_oConfig = $oConfig;
 }
开发者ID:toxalot,项目名称:dolphin.pro,代码行数:5,代码来源:BxZIPDb.php

示例6:

 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
 }
开发者ID:blas-dmx,项目名称:trident,代码行数:4,代码来源:BxDevDb.php

示例7:

 function __construct(&$oConfig)
 {
     parent::__construct();
     $this->_oConfig = $oConfig;
     $this->sTablePrefix = $oConfig->getDbPrefix();
 }
开发者ID:Prashank25,项目名称:dolphin.pro,代码行数:6,代码来源:BxSitesDb.php

示例8:

 /**
  * Constructor.
  */
 function __construct(&$oConfig)
 {
     parent::__construct();
     $this->_oConfig = $oConfig;
     $this->_aObjects = $this->getShoutboxObjects();
 }
开发者ID:Prashank25,项目名称:dolphin.pro,代码行数:9,代码来源:BxShoutBoxDb.php


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