You are here

apachesolr-nan.tpl.php in Apache Solr Not-A-Node 7.2

Default theme implementation for entities.

Available variables:

  • $content: An array of comment items. Use render($content) to print them all, or print a subset such as render($content['field_example']). Use hide($content['field_example']) to temporarily suppress the printing of a given element.
  • $title: The (sanitized) entity label.
  • $url: Direct url of the current entity if specified.
  • $page: Flag for the full page state.
  • $classes: String of classes that can be used to style contextually through CSS. It can be manipulated through the variable $classes_array from preprocess functions. By default the following classes are available, where the parts enclosed by {} are replaced by the appropriate values:

    • entity-{ENTITY_TYPE}
    • {ENTITY_TYPE}-{BUNDLE}

Other variables:

  • $classes_array: Array of html class attribute values. It is flattened into a string within the variable $classes.

File

theme/apachesolr-nan.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation for entities.
 *
 * Available variables:
 * - $content: An array of comment items. Use render($content) to print them all, or
 *   print a subset such as render($content['field_example']). Use
 *   hide($content['field_example']) to temporarily suppress the printing of a
 *   given element.
 * - $title: The (sanitized) entity label.
 * - $url: Direct url of the current entity if specified.
 * - $page: Flag for the full page state.
 * - $classes: String of classes that can be used to style contextually through
 *   CSS. It can be manipulated through the variable $classes_array from
 *   preprocess functions. By default the following classes are available, where
 *   the parts enclosed by {} are replaced by the appropriate values:
 *   - entity-{ENTITY_TYPE}
 *   - {ENTITY_TYPE}-{BUNDLE}
 *
 * Other variables:
 * - $classes_array: Array of html class attribute values. It is flattened
 *   into a string within the variable $classes.
 *
 * @see template_preprocess()
 * @see template_preprocess_entity()
 * @see template_process()
 */
?>
<article<?php

print $attributes;
?>>
<div<?php

print $content_attributes;
?>>
  <div class="results-content-container">
    <h2<?php

print $title_attributes;
?>><a href="/<?php

print $apachesolr_nan->path;
?>" rel="bookmark"><?php

print $apachesolr_nan->title;
?></a></h2>
    <p><?php

print $apachesolr_nan->search_snippet;
?></p>
  </div>
</div>
</article>