You are here

function admin_views_system_display_help in Administration Views 7

Implements hook_help().

File

./admin_views_system_display.module, line 19
Custom Views display mode for overriding system pages.

Code

function admin_views_system_display_help($path, $arg) {
  switch ($path) {
    case 'admin/help#admin_views_system_display':
      return t('This adds a new page display plugin for Views that allows system pages provided by Drupal core to be overridden. This is used by the Admin Views module to replace some of the Drupal core admin pages.');
  }
}