|
|
<b>List of returned objects</b>
|
|
|
<ol>
|
|
|
{foreach from=$results item=result}
|
|
|
<li> <a href="{$result.url}" >{$result.title}</a>
|
|
|
{/foreach}
|
|
|
</ol>
|
|
|
|
|
|
{wiki}
|
|
|
__Various variables__ (see [https://doc.tiki.org/PluginList-advanced-output-control-block#Accessible_variables:])
|
|
|
||
|
|
|
__variable__ | __value__ | __meaning__
|
|
|
$results | ''see below'' | containing the result set. Each results contain all values provided by the search query along with those requested manually.
|
|
|
$count | {$count} | the total result count
|
|
|
$maxRecords | {$maxRecords} | the amount of results per page
|
|
|
$offset | {$offset} | the result offset
|
|
|
$offsetplusone | {$offsetplusone} | basically $offset + 1 , so that you can say "Showing results 1 to ...."
|
|
|
$offsetplusmaxRecords | {$offsetplusmaxRecords} | basically $maxRecords + $offset , so you can say "Showing results 1 to 25"
|
|
|
$results->getEstimate() | {$results->getEstimate()} | which is the estimate of the total number of results possible, which could exceed $count , which is limited by the max Lucene search results to return set in Admin...Search
|
|
|
||
|
|
|
{/wiki}
|
|
|
|
|
|
<b>Loop on contents</b> of <code>$results</code>:
|
|
|
<br><code>{literal}{foreach from=$results item=result}<pre>{$result|@debug_print_var}</pre><hr>{/foreach}{/literal}</code>
|
|
|
{foreach from=$results item=result}
|
|
|
<pre>
|
|
|
{$result|@debug_print_var}
|
|
|
</pre>
|
|
|
{/foreach}
|
|
|
|