function context_ui_help in Context 5
Same name and namespace in other branches
- 6.3 context_ui/context_ui.module \context_ui_help()
- 6 context_ui/context_ui.module \context_ui_help()
- 6.2 context_ui/context_ui.module \context_ui_help()
- 7.3 context_ui/context_ui.module \context_ui_help()
Implementation of hook_help().
File
- context_ui/
context_ui.module, line 231
Code
function context_ui_help($section) {
switch ($section) {
case 'admin/build/context':
return "<p>" . t('Contexts provide you with a way to organize your site using terms familiar to real human beings. You can create a set of sections like <b>"News"</b>, <b>"Projects"</b>, <b>"Staff"</b>, and associate different technical aspects of Drupal to each section. For example, the <b>"News"</b> section may be a collection of <b>Nodes</b>, <b>Views</b>, <b>Menus</b> and <b>Blocks</b>.') . "</p>";
break;
}
}