profile2.tpl.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation for profiles.
  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 (sanitized) profile type label.
  12. * - $url: The URL to view the current profile.
  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. * - profile-{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. <?php if (!$page): ?>
  32. <h2<?php print $title_attributes; ?>>
  33. <a href="<?php print $url; ?>"><?php print $title; ?></a>
  34. </h2>
  35. <?php endif; ?>
  36. <div class="content"<?php print $content_attributes; ?>>
  37. <?php
  38. print render($content);
  39. ?>
  40. </div>
  41. </div>