本文整理汇总了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());
}
}
示例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());
}
}
示例3: array
function __construct(&$oConfig, &$oDb)
{
parent::__construct($oConfig, $oDb);
$this->_aTemplates = array('comments');
$this->_oModule = null;
$this->oPaginate = null;
$this->sCssPrefix = '';
}
示例4:
function __construct(&$oConfig, &$oDb)
{
parent::__construct($oConfig, $oDb);
}
示例5: array
/**
* Constructor
*/
function __construct(&$oConfig, &$oDb)
{
parent::__construct($oConfig, $oDb);
$this->_aTemplates = array('divider', 'balloon', 'repost', 'common', 'common_media', 'comments', 'actions');
}
示例6:
/**
* Constructor
*/
function __construct(&$oConfig, &$oDb)
{
parent::__construct($oConfig, $oDb);
$this->_sLangsPrefix = $this->_oConfig->getLangsPrefix();
}
示例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');
}
示例8:
/**
* Constructor
*/
function __construct(&$oConfig, &$oDb)
{
parent::__construct($oConfig, $oDb);
$this->addJs('main.js');
$this->addCss('main.css');
}
示例9: array
function __construct(&$oConfig, &$oDb)
{
parent::__construct($oConfig, $oDb);
$this->_aTemplates = array('crss_unit', 'view', 'member_rss_list_loaded');
}
示例10:
function __construct(&$oConfig)
{
$oDb = null;
parent::__construct($oConfig, $oDb);
$this->_isAjaxOutput = $this->_isAjaxRequest();
}
示例11:
function __construct(&$oConfig, &$oDb, $sRootPath = BX_DIRECTORY_PATH_ROOT, $sRootUrl = BX_DOL_URL_ROOT)
{
parent::__construct($oConfig, $oDb, $sRootPath, $sRootUrl);
}
示例12: array
/**
* Constructor
*/
function __construct(&$oConfig, &$oDb)
{
parent::__construct($oConfig, $oDb);
$this->_aTemplates = array('unit', 'adm_unit');
}
示例13:
function __construct(&$oConfig, &$oDb)
{
parent::__construct($oConfig, $oDb);
$this->addStudioCss(array('main.css'));
}
示例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');
}