You are here

function page_title_views_plugins in Page Title 7.2

Same name and namespace in other branches
  1. 8.2 page_title.module \page_title_views_plugins()
  2. 6.2 page_title.module \page_title_views_plugins()

Implements hook_views_plugins().

File

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

Code

function page_title_views_plugins() {
  return array(
    'module' => 'page_title',
    'display' => array(
      'page_with_page_title' => array(
        'title' => t('Page (with Page Title)'),
        'help' => t('Same as a normal Page, but also includes the Page Title control.'),
        'parent' => 'page',
        'uses hook menu' => TRUE,
        'use ajax' => FALSE,
        'use pager' => TRUE,
        'accept attachments' => TRUE,
        'admin' => t('Page with Page Title'),
        'module' => 'page_title',
        'path' => drupal_get_path('module', 'page_title') . '/views/plugins',
        'file' => 'page_title_plugin_display_page_with_page_title.inc',
        'handler' => 'page_title_plugin_display_page_with_page_title',
        'theme' => 'views_view',
        'theme path' => drupal_get_path('module', 'views') . '/theme',
        'theme file' => 'theme.inc',
      ),
    ),
  );
}