BxDolTwigModule::_actionTags PHP Method

_actionTags() public method

public _actionTags ( $sTitle, $sTitleAllTags = '' )
    function _actionTags($sTitle, $sTitleAllTags = '')
    {
        bx_import('BxTemplTagsModule');
        $aParam = array('type' => $this->_sPrefix, 'orderby' => 'popular');
        $oTags = new BxTemplTagsModule($aParam, $sTitleAllTags, BX_DOL_URL_ROOT . $this->_oConfig->getBaseUri() . 'tags');
        $this->_oTemplate->pageStart();
        echo $oTags->getCode();
        $this->_oTemplate->pageCode($sTitle, false, false);
    }

Usage Example

コード例 #1
0
 function actionTags()
 {
     parent::_actionTags(_t('_bx_store_page_title_tags'));
 }
All Usage Examples Of BxDolTwigModule::_actionTags