You are here

function page_title_theme in Page Title 6.2

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

Implementation of hook_theme().

File

./page_title.module, line 140
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',
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'page_title_preprocess_page' => array(
      'arguments' => array(
        'vars' => NULL,
      ),
    ),
  );
}