1<b>List of returned objects</b>
2<ol>
3	{foreach from=$results item=result}
4		<li> <a href="{$result.url}" >{$result.title}</a>
5	{/foreach}
6</ol>
7
8{wiki}
9__Various variables__ (see [https://doc.tiki.org/PluginList-advanced-output-control-block#Accessible_variables:])
10||
11__variable__ | __value__ | __meaning__
12$results | ''see below'' | containing the result set. Each results contain all values provided by the search query along with those requested manually.
13$count | {$count} | the total result count
14$maxRecords | {$maxRecords} | the amount of results per page
15$offset | {$offset} | the result offset
16$offsetplusone | {$offsetplusone} | basically $offset + 1 , so that you can say "Showing results 1 to ...."
17$offsetplusmaxRecords | {$offsetplusmaxRecords} | basically $maxRecords + $offset , so you can say "Showing results 1 to 25"
18$results-&gt;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
19||
20{/wiki}
21
22<b>Loop on contents</b> of <code>$results</code>:
23<br><code>{literal}{foreach from=$results item=result}&lt;pre&gt;{$result|@debug_print_var}&lt;/pre&gt;&lt;hr&gt;{/foreach}{/literal}</code>
24{foreach from=$results item=result}
25<pre>
26{$result|@debug_print_var}
27</pre>
28{/foreach}
29
30