function panels_page_help in Panels 5.2
Same name and namespace in other branches
- 6.2 panels_page/panels_page.module \panels_page_help()
Implementation of hook_help().
File
- panels_page/
panels_page.module, line 16 - panels_page.module
Code
function panels_page_help($section = '') {
switch ($section) {
case 'admin/panels/panel-page':
case 'admin/panels/panel-page/list':
$output = '<p>';
$output .= t('You may peruse a list of your current panels layouts and edit them, or click add to create a new page.');
$output .= '</p>';
break;
case 'admin/panels/panel-page/add':
$output = '<p>';
$output .= t('Choose a layout for your new page from the list below.');
$output .= '</p>';
break;
}
return $output;
}