You are here

function context_ui_help in Context 6

Same name and namespace in other branches
  1. 5 context_ui/context_ui.module \context_ui_help()
  2. 6.3 context_ui/context_ui.module \context_ui_help()
  3. 6.2 context_ui/context_ui.module \context_ui_help()
  4. 7.3 context_ui/context_ui.module \context_ui_help()

Implementation of hook_help().

File

context_ui/context_ui.module, line 178

Code

function context_ui_help($path, $arg) {
  switch ($path) {
    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;
  }
}