本文整理汇总了PHP中SMWQueryResult::getQuery方法的典型用法代码示例。如果您正苦于以下问题:PHP SMWQueryResult::getQuery方法的具体用法?PHP SMWQueryResult::getQuery怎么用?PHP SMWQueryResult::getQuery使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SMWQueryResult
的用法示例。
在下文中一共展示了SMWQueryResult::getQuery方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getQuery
/**
* @since 2.3
*
* @return Query|null
*/
public function getQuery()
{
return $this->queryResult instanceof QueryResult ? $this->queryResult->getQuery() : null;
}
示例2: getNavigationBar
/**
* Build the navigation for some given query result, reuse url-tail parameters.
*
* @param SMWQueryResult $res
* @param array $urlArgs
*
* @return string
*/
protected function getNavigationBar(SMWQueryResult $res, array $urlArgs)
{
global $smwgQMaxInlineLimit, $wgLang;
// Bug 49216
$offset = $res->getQuery()->getOffset();
$limit = $this->params['limit']->getValue();
// Prepare navigation bar.
if ($offset > 0) {
$navigation = Html::element('a', array('href' => SpecialPage::getSafeTitleFor('Ask')->getLocalURL(array('offset' => max(0, $offset - $limit), 'limit' => $limit) + $urlArgs), 'rel' => 'nofollow'), wfMessage('smw_result_prev')->text());
} else {
$navigation = wfMessage('smw_result_prev')->escaped();
}
// @todo FIXME: i18n: Patchwork text.
$navigation .= '     <b>' . wfMessage('smw_result_results')->escaped() . ' ' . $wgLang->formatNum($offset + 1) . ' – ' . $wgLang->formatNum($offset + $res->getCount()) . '</b>    ';
if ($res->hasFurtherResults()) {
$navigation .= Html::element('a', array('href' => SpecialPage::getSafeTitleFor('Ask')->getLocalURL(array('offset' => $offset + $limit, 'limit' => $limit) + $urlArgs), 'rel' => 'nofollow'), wfMessage('smw_result_next')->text());
} else {
$navigation .= wfMessage('smw_result_next')->escaped();
}
$first = true;
foreach (array(20, 50, 100, 250, 500) as $l) {
if ($l > $smwgQMaxInlineLimit) {
break;
}
if ($first) {
$navigation .= '        (';
$first = false;
} else {
$navigation .= ' | ';
}
if ($limit != $l) {
$navigation .= Html::element('a', array('href' => SpecialPage::getSafeTitleFor('Ask')->getLocalURL(array('offset' => $offset, 'limit' => $l) + $urlArgs), 'rel' => 'nofollow'), $l);
} else {
$navigation .= '<b>' . $l . '</b>';
}
}
$navigation .= ')';
return $navigation;
}