You are here

function panels_help in Panels 5

Same name and namespace in other branches
  1. 5.2 panels.module \panels_help()

Implementation of hook_help()

File

./panels.module, line 6

Code

function panels_help($section = '') {
  switch ($section) {
    case 'admin/build/panels':
    case 'admin/build/panels/list':
      return t('<p>You may peruse a list of your current panels layouts and edit them, or click add to create a new page.</p>');
    case 'admin/build/panels/add':
      return t('<p>Choose a layout for your new page from the list below.</p>');
  }
}