本文整理汇总了PHP中ListbuilderHandler::fetch方法的典型用法代码示例。如果您正苦于以下问题:PHP ListbuilderHandler::fetch方法的具体用法?PHP ListbuilderHandler::fetch怎么用?PHP ListbuilderHandler::fetch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ListbuilderHandler
的用法示例。
在下文中一共展示了ListbuilderHandler::fetch方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: fetch
/**
* Need to add additional data to the template via the fetch method
* @see Form::fetch()
* @param $args array
* @param $request PKPRequest
*/
function fetch($args, &$request)
{
$router =& $request->getRouter();
$monographId = $request->getUserVar('monographId');
$additionalVars = array('monographId' => $monographId, 'addUrl' => $router->url($request, array(), null, 'addItem', null, array('monographId' => $monographId)), 'deleteUrl' => $router->url($request, array(), null, 'deleteItems', null, array('monographId' => $monographId)));
return parent::fetch($args, &$request, $additionalVars);
}
示例2: fetch
/**
* @see ListbuilderHandler::fetch()
*/
function fetch($args, &$request)
{
$userGroupId = (int) $request->getUserVar('userGroupId');
$monograph =& $this->getMonograph();
$params = array('monographId' => $monograph->getId(), 'userGroupId' => $userGroupId, 'stageId' => $this->getStageId());
$router =& $request->getRouter();
$additionalVars = array('addUrl' => $router->url($request, array(), null, 'addItem', null, $params), 'deleteUrl' => $router->url($request, array(), null, 'deleteItems', null, $params));
return parent::fetch($args, &$request, $additionalVars);
}
示例3: fetch
/**
* Fetch the listbuilder.
* @param $args array
* @param $request PKPRequest
*/
function fetch($args, &$request)
{
$templateMgr =& TemplateManager::getManager();
$templateMgr->assign_by_ref('lists', $this->getLists());
return parent::fetch($args, $request);
}