You are here

function views_ui_help in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 5 views_ui.module \views_ui_help()
  2. 6.3 views_ui.module \views_ui_help()
  3. 6.2 views_ui.module \views_ui_help()

Implements hook_help().

File

./views_ui.module, line 11
Provide structure for the administrative interface to Views.

Code

function views_ui_help($path, $arg) {
  switch ($path) {
    case 'admin/help#views_ui':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Views UI module provides an interface for managing views for the Views module. For more information, see the <a href="@views" target="blank">online documentation for the Views UI module</a>.', array(
        '@views' => 'https://www.drupal.org/documentation/modules/views',
      )) . '</p>';
      $output .= '<h3>' . t('Uses') . '</h3>';
      $output .= '<dl>';
      $output .= '<dt>' . t('Creating and managing views') . '</dt>';
      $output .= '<dd>' . t('Views can be created from the <a href="/admin/structure/views">Views list page</a> by using the "Add view" action. Existing views can be managed from the <a href="/admin/structure/views">Views list page</a> by locating the view in the "Enabled" or "Disabled" list and selecting the desired operation action, for example "Edit".') . '</dd>';
      $output .= '<dt>' . t('Enabling and disabling views') . '</dt>';
      $output .= '<dd>' . t('Views can be enabled or disabled from the <a href="/admin/structure/views">Views list page</a>. To enable a view, find the view within the "Disabled" list and select the "Enable" operation. To disable a view find the view within the "Enabled" list and select the "Disable" operation.') . '</dd>';
      $output .= '<dt>' . t('Exporting and importing views') . '</dt>';
      $output .= '<dd>' . t('Views can be exported and imported as configuration files by using the Configuration Manager module.') . '</dd>';
      return $output;
  }
}