You are here

function page_title_theme in Page Title 7.2

Same name and namespace in other branches
  1. 8.2 page_title.module \page_title_theme()
  2. 6.2 page_title.module \page_title_theme()
  3. 6 page_title.module \page_title_theme()
  4. 7 page_title.module \page_title_theme()

Implement hook_theme().

File

./page_title.module, line 136
Enhanced control over the page title (in the head tag).

Code

function page_title_theme() {
  return array(
    'page_title_admin_settings' => array(
      'template' => 'page_title-admin-settings-form',
      'render element' => 'form',
      'file' => 'page_title.admin.inc',
    ),
    'page_title_preprocess_html' => array(
      'arguments' => array(
        'vars' => NULL,
      ),
    ),
  );
}