You are here

function panels_views_legacy_admin in Panels 5.2

Page callback for the very short admin page.

1 string reference to 'panels_views_legacy_admin'
panels_views_legacy_menu in panels_views_legacy/panels_views_legacy.module
Implementation of hook_menu().

File

panels_views_legacy/panels_views_legacy.module, line 32
panels_views_legacy.module

Code

function panels_views_legacy_admin() {
  $output = '<p>';
  $output .= t('Panels legacy views does not have a normal administrative UI, such as panels pages or mini panels. With this module, all of your views are provided as panes that can be added to any panel display; these panes have many options; because of all of these options, these panes are generally unsuitable for non administrative users. It is recommended that you only use panels views legacy if 1) you are upgrading a site that already uses this kind of view or 2) you do not want the extra work of having to determine which views are available as content. Otherwise, it is recommended you use the normal "Panels views content" module.');
  $output .= '</p>';
  return $output;
}