You are here

function _metatags_quick_set_html_title in Meta tags quick 7.2

Sets the title for preprocess_html.

2 calls to _metatags_quick_set_html_title()
metatags_quick_field_formatter_view in ./metatags_quick.module
Implements hook_field_formatter_view().
metatags_quick_preprocess_html in ./metatags_quick.module
Implements hook_preprocess_html().

File

./metatags_quick.module, line 624
Quick and dirty implementation of meta tags for drupal 7 Module defines new field type 'meta'. Fields of this type are not displayed in HTML. Instead, they add html meta to the head section.

Code

function _metatags_quick_set_html_title($new_title = NULL) {
  $title =& drupal_static(__FUNCTION__, NULL);
  if ($new_title) {
    $title = $new_title;
  }
  return $title;
}