當前位置: 首頁>>代碼示例>>PHP>>正文


PHP BxDolModuleTemplate::__construct方法代碼示例

本文整理匯總了PHP中BxDolModuleTemplate::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP BxDolModuleTemplate::__construct方法的具體用法?PHP BxDolModuleTemplate::__construct怎麽用?PHP BxDolModuleTemplate::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在BxDolModuleTemplate的用法示例。


在下文中一共展示了BxDolModuleTemplate::__construct方法的14個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

 /**
  * Constructor
  */
 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     if (isset($GLOBALS['oAdmTemplate'])) {
         $GLOBALS['oAdmTemplate']->addDynamicLocation($this->_oConfig->getHomePath(), $this->_oConfig->getHomeUrl());
     }
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:10,代碼來源:BxProfileCustomizeTemplate.php

示例2:

 function __construct(&$oConfig, &$oDb, $sRootPath = BX_DIRECTORY_PATH_ROOT, $sRootUrl = BX_DOL_URL_ROOT)
 {
     parent::__construct($oConfig, $oDb, $sRootPath, $sRootUrl);
     if (isset($GLOBALS['oAdmTemplate'])) {
         $GLOBALS['oAdmTemplate']->addDynamicLocation($this->_oConfig->getHomePath(), $this->_oConfig->getHomeUrl());
     }
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:7,代碼來源:BxDolTwigTemplate.php

示例3: array

 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->_aTemplates = array('comments');
     $this->_oModule = null;
     $this->oPaginate = null;
     $this->sCssPrefix = '';
 }
開發者ID:toxalot,項目名稱:dolphin.pro,代碼行數:8,代碼來源:BxDolTextTemplate.php

示例4:

 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
 }
開發者ID:blas-dmx,項目名稱:trident,代碼行數:4,代碼來源:BxInvTemplate.php

示例5: array

 /**
  * Constructor
  */
 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->_aTemplates = array('divider', 'balloon', 'repost', 'common', 'common_media', 'comments', 'actions');
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:8,代碼來源:BxWallTemplate.php

示例6:

 /**
  * Constructor
  */
 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->_sLangsPrefix = $this->_oConfig->getLangsPrefix();
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:8,代碼來源:BxPmtTemplate.php

示例7: array

 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->_aTemplates = array('unit_ads', 'category', 'filter_form', 'ad_of_day', 'wall_outline_extra_info');
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:5,代碼來源:BxAdsTemplate.php

示例8:

 /**
  * Constructor
  */
 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->addJs('main.js');
     $this->addCss('main.css');
 }
開發者ID:Baloo7super,項目名稱:dolphin,代碼行數:9,代碼來源:BxSitesTemplate.php

示例9: array

 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->_aTemplates = array('crss_unit', 'view', 'member_rss_list_loaded');
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:5,代碼來源:BxCRSSTemplate.php

示例10:

 function __construct(&$oConfig)
 {
     $oDb = null;
     parent::__construct($oConfig, $oDb);
     $this->_isAjaxOutput = $this->_isAjaxRequest();
 }
開發者ID:Baloo7super,項目名稱:dolphin,代碼行數:6,代碼來源:BxProfilerTemplate.php

示例11:

 function __construct(&$oConfig, &$oDb, $sRootPath = BX_DIRECTORY_PATH_ROOT, $sRootUrl = BX_DOL_URL_ROOT)
 {
     parent::__construct($oConfig, $oDb, $sRootPath, $sRootUrl);
 }
開發者ID:toxalot,項目名稱:dolphin.pro,代碼行數:4,代碼來源:BxDolMobileTemplate.php

示例12: array

 /**
  * Constructor
  */
 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->_aTemplates = array('unit', 'adm_unit');
 }
開發者ID:toxalot,項目名稱:dolphin.pro,代碼行數:8,代碼來源:BxQuotesTemplate.php

示例13:

 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->addStudioCss(array('main.css'));
 }
開發者ID:blas-dmx,項目名稱:trident,代碼行數:5,代碼來源:BxDevTemplate.php

示例14: array

 function __construct(&$oConfig, &$oDb)
 {
     parent::__construct($oConfig, $oDb);
     $this->_aTemplates = array('blog_unit', 'blog', 'blogpost_unit', 'admin_page', 'blogpost_unit_mobile', 'browse_unit_private_mobile');
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:5,代碼來源:BxBlogsTemplate.php


注:本文中的BxDolModuleTemplate::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。