37 lines
990 B
PHP
37 lines
990 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @file
|
||
|
* Islandora solr search results wrapper template
|
||
|
*
|
||
|
* Variables available:
|
||
|
* - $variables: all array elements of $variables can be used as a variable.
|
||
|
* e.g. $base_url equals $variables['base_url']
|
||
|
* - $base_url: The base url of the current website. eg: http://example.com .
|
||
|
* - $user: The user object.
|
||
|
*
|
||
|
* - $secondary_profiles: Rendered secondary profiles
|
||
|
* - $results: Rendered search results (primary profile)
|
||
|
* - $islandora_solr_result_count: Solr result count string
|
||
|
* - $solrpager: The pager
|
||
|
* - $solr_debug: debug info
|
||
|
*
|
||
|
* @see template_preprocess_islandora_solr_wrapper()
|
||
|
*/
|
||
|
?>
|
||
|
|
||
|
<div id="islandora-solr-top">
|
||
|
<?php print $secondary_profiles; ?>
|
||
|
<div id="islandora-solr-result-count"><?php print $islandora_solr_result_count; ?></div>
|
||
|
</div>
|
||
|
|
||
|
<div class="islandora-solr-content">
|
||
|
<?php print $solr_pager; ?>
|
||
|
<?php print $results; ?>
|
||
|
<?php print $solr_debug; ?>
|
||
|
<?php print $solr_pager; ?>
|
||
|
</div>
|
||
|
|
||
|
<?php
|
||
|
//dpm(get_defined_vars());
|
||
|
?>
|