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


PHP BxDolModuleTemplate類代碼示例

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


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

示例1: BxProfileCustomizeTemplate

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

示例2: BxDolTextTemplate

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

示例3: BxFaceBookConnectTemplate

 /**
  * Class constructor
  */
 function BxFaceBookConnectTemplate(&$oConfig, &$oDb)
 {
     parent::BxDolModuleTemplate($oConfig, $oDb);
 }
開發者ID:newton27,項目名稱:dolphin.pro,代碼行數:7,代碼來源:BxFaceBookConnectTemplate.php

示例4: BxDolMobileTemplate

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

示例5: BxPageACTemplate

 /**
  * Constructor
  */
 function BxPageACTemplate(&$oConfig, &$oDb)
 {
     parent::BxDolModuleTemplate($oConfig, $oDb);
 }
開發者ID:Gotgot59,項目名稱:dolphin.pro,代碼行數:7,代碼來源:BxPageACTemplate.php

示例6: BxDolFilesTemplate

 /**
  * Constructor
  */
 function BxDolFilesTemplate(&$oConfig, &$oDb)
 {
     parent::BxDolModuleTemplate($oConfig, $oDb);
 }
開發者ID:dalinhuang,項目名稱:shopexts,代碼行數:7,代碼來源:BxDolFilesTemplate.php

示例7: BxDataMigrationTemplate

 /**
  * Class constructor
  */
 function BxDataMigrationTemplate(&$oConfig, &$oDb)
 {
     parent::BxDolModuleTemplate($oConfig, $oDb);
 }
開發者ID:dalinhuang,項目名稱:shopexts,代碼行數:7,代碼來源:BxDataMigrationTemplate.php

示例8: BxWallTemplate

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

示例9:

 /**
  * 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

示例10: loadTemplates

 function loadTemplates()
 {
     parent::loadTemplates();
     $this->_aTemplates['script'] = '<script language="javascript" type="text/javascript">__content__</script>';
     $this->_aTemplates['on_result'] = '<script language="javascript" type="text/javascript">alert(\'__message__\')</script>';
     $this->_aTemplates['on_result_inline'] = '<script language="javascript" type="text/javascript">parent.__js_object__.showResultInline(__params__);</script>';
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:7,代碼來源:BxPmtTemplate.php

示例11: 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

示例12:

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

示例13:

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

示例14: parseHtmlByName

 function parseHtmlByName($sName, $aVariables, $mixedKeyWrapperHtml = null, $sCheckIn = BX_DOL_TEMPLATE_CHECK_IN_BOTH)
 {
     return parent::parseHtmlByName($sName . (strlen($sName) < 6 || substr_compare($sName, '.html', -5, 5) !== 0 ? '.html' : ''), $aVariables);
 }
開發者ID:Prashank25,項目名稱:dolphin.pro,代碼行數:4,代碼來源:BxDolTwigTemplate.php

示例15: 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


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