BxDolTwigModule::_actionCategories PHP Method

_actionCategories() public method

public _actionCategories ( $sTitle )
    function _actionCategories($sTitle)
    {
        bx_import('BxTemplCategoriesModule');
        $aParam = array('type' => $this->_sPrefix);
        $oCateg = new BxTemplCategoriesModule($aParam, _t('_categ_users'), BX_DOL_URL_ROOT . $this->_oConfig->getBaseUri() . 'categories');
        $this->_oTemplate->pageStart();
        echo $oCateg->getCode();
        $this->_oTemplate->pageCode($sTitle, false, false);
    }

Usage Example

Ejemplo n.º 1
0
 function actionCategories()
 {
     parent::_actionCategories(_t('_bx_store_page_title_categories'));
 }
All Usage Examples Of BxDolTwigModule::_actionCategories