You are here

function views_ui_help in Views (for Drupal 7) 6.3

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

File

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

Code

function views_ui_help($path, $arg = '') {
  switch ($path) {
    case 'admin/build/views/tools/convert':
      return '<p>' . t('The converter will make a best-effort attempt to convert a Views 1 view to Views 2. This conversion is not reliable; you will very likely have to make adjustments to your view to get it to match. You can import Views 1 views through the normal Import tab.') . '</p>';
  }
}