tripal_data.tpl.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * @file
  4. * A basic template for model entities
  5. *
  6. * Available variables:
  7. * - $content: An array of comment items. Use render($content) to print them all, or
  8. * print a subset such as render($content['field_example']). Use
  9. * hide($content['field_example']) to temporarily suppress the printing of a
  10. * given element.
  11. * - $title: The title of the entity
  12. * - $url: The standard URL for viewing the object
  13. * - $page: TRUE if this is the main view page $url points too.
  14. * - $classes: String of classes that can be used to style contextually through
  15. * CSS. It can be manipulated through the variable $classes_array from
  16. * preprocess functions. By default the following classes are available, where
  17. * the parts enclosed by {} are replaced by the appropriate values:
  18. * - entity-profile
  19. * - model-{TYPE}
  20. *
  21. * Other variables:
  22. * - $classes_array: Array of html class attribute values. It is flattened
  23. * into a string within the variable $classes.
  24. *
  25. * @see template_preprocess()
  26. * @see template_preprocess_entity()
  27. * @see template_process()
  28. */
  29. ?>
  30. <div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
  31. <div class="content"<?php print $content_attributes; ?>><?php
  32. print render($content);?>
  33. </div>
  34. </div>