region.tpl.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to display a region.
  5. *
  6. * Available variables:
  7. * - $content: The content for this region, typically blocks.
  8. * - $classes: String of classes that can be used to style contextually through
  9. * CSS. It can be manipulated through the variable $classes_array from
  10. * preprocess functions. The default values can be one or more of the following:
  11. * - region: The current template type, i.e., "theming hook".
  12. * - region-[name]: The name of the region with underscores replaced with
  13. * dashes. For example, the page_top region would have a region-page-top class.
  14. * - $region: The name of the region variable as defined in the theme's .info file.
  15. *
  16. * Helper variables:
  17. * - $classes_array: Array of html class attribute values. It is flattened
  18. * into a string within the variable $classes.
  19. * - $is_admin: Flags true when the current user is an administrator.
  20. * - $is_front: Flags true when presented in the front page.
  21. * - $logged_in: Flags true when the current user is a logged-in member.
  22. *
  23. * @see template_preprocess()
  24. * @see template_preprocess_region()
  25. * @see template_process()
  26. *
  27. * @ingroup themeable
  28. */
  29. ?>
  30. <?php if ($content): ?>
  31. <div class="<?php print $classes; ?>">
  32. <?php print $content; ?>
  33. </div>
  34. <?php endif; ?>