当前位置: 首页>>代码示例>>PHP>>正文


PHP BxDolService::getSerializedService方法代码示例

本文整理汇总了PHP中BxDolService::getSerializedService方法的典型用法代码示例。如果您正苦于以下问题:PHP BxDolService::getSerializedService方法的具体用法?PHP BxDolService::getSerializedService怎么用?PHP BxDolService::getSerializedService使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BxDolService的用法示例。


在下文中一共展示了BxDolService::getSerializedService方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getCommentsBlock

 /**
  * get full comments block with initializations
  */
 function getCommentsBlock($iParentId = 0, $iVParentId = 0, $bInDesignbox = true)
 {
     $aBp = array('parent_id' => $iParentId, 'vparent_id' => $iVParentId);
     $aDp = array('show_empty' => true);
     //add live update
     $sServiceCall = BxDolService::getSerializedService('system', 'get_live_updates_comments', array($this->_sSystem, $this->_iId, $this->_getAuthorId()), 'TemplCmtsServices');
     bx_import('BxDolLiveUpdates');
     BxDolLiveUpdates::getInstance()->add($this->_sSystem . '_live_updates_cmts', 1, $sServiceCall);
     //add live update
     $sCaption = _t('_cmt_block_comments_title', $this->getCommentsCount());
     $sContent = BxDolTemplate::getInstance()->parseHtmlByName('comments_block.html', array('system' => $this->_sSystem, 'list_anchor' => $this->getListAnchor(), 'id' => $this->getId(), 'comments' => $this->getComments($aBp, $aDp), 'post_form_top' => $this->getFormBoxPost($aBp, array('type' => $this->_sDisplayType, 'position' => BX_CMT_PFP_TOP)), 'post_form_bottom' => $this->getFormBoxPost($aBp, array('type' => $this->_sDisplayType, 'position' => BX_CMT_PFP_BOTTOM)), 'view_image_popup' => $this->_getViewImagePopup(), 'script' => $this->getJsScript()));
     return $bInDesignbox ? DesignBoxContent($sCaption, $sContent, BX_DB_PADDING_DEF, $this->_getControlsBox()) : array('title' => $sCaption, 'content' => $sContent, 'designbox_id' => BX_DB_PADDING_DEF, 'menu' => $this->_getControlsBox());
 }
开发者ID:blas-dmx,项目名称:trident,代码行数:16,代码来源:BxBaseCmts.php


注:本文中的BxDolService::getSerializedService方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。