Example configuration
Example screenshot

This project is not covered by Drupal’s security advisory policy.

Let's you set a title for each region on your page.
It works with the magic of the Context module, which means you can choose custom region titles for different sections or even pages of your site.

See http://drupal.org/project/context for more information.

Requires: context module.

Skill level: themer.

Versions

This is currently for Drupal 6.

Drupal 7 version will probably use template_preprocess_region as that makes more sense.

Installation

Context can be installed like any other Drupal module -- place it in
the modules directory for your site and enable it on the 'admin/build/modules' page.

Usage

By itself, the module simply provides variables that you can use in your theme.
If you're new to theming, see http://drupal.org/documentation/theme

The variables have the following naming convention:

$[region_name]_title

For example, the title for the region called 'left' will be called $left_title.

Example

For example, the Garland theme in Drupal 6 outputs the right-sidebar region like this:

<?php if ($right): ?>
  <div id="sidebar-right" class="sidebar">
    <?php if (!$left && $search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
    <?php print $right ?>
  </div>
<?php endif; ?>

We can add a line like this, which checks if a title has been set, and if so, prints it with a bit of markup around it:

<?php if ($right_title): ?><h2 class="title"><?php print $right_title ?></h2><?php endif; ?>

The end result could be something like this:

<?php if ($right): ?>
  <div id="sidebar-right" class="sidebar">
    <?php if ($right_title): ?><h2 class="title"><?php print $right_title ?></h2><?php endif; ?>
    <?php if (!$left && $search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
    <?php print $right ?>
  </div>
<?php endif; ?>

Project information

  • caution Seeking new maintainer
    The current maintainers are looking for new people to take ownership.
  • caution No further development
    No longer developed by its maintainers.
  • Module categories: Content Editing Experience
  • Created by mcjim on , updated
  • shield alertThis project is not covered by the security advisory policy.
    Use at your own risk! It may have publicly disclosed vulnerabilities.

Releases