/[drupal]/contributions/modules/title_rewrite/template.php
ViewVC logotype

Contents of /contributions/modules/title_rewrite/template.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Mon Apr 7 15:37:55 2008 UTC (19 months, 3 weeks ago) by shannonlucas
Branch: MAIN
CVS Tags: DRUPAL-5--1-0, DRUPAL-5--1-2, HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
initial checkin
1 <?php
2
3 function _phptemplate_variables($hook, $vars = array()) {
4
5 if ($hook == 'page') {
6 if (module_exists('title_rewrite')) {
7 $current = isset($vars['head_title']) ? $vars['head_title'] : NULL;
8 $vars['head_title'] = title_rewrite_page_get_title($current, $vars['node']);
9 }
10 }
11
12 return $vars;
13 }

  ViewVC Help
Powered by ViewVC 1.1.2