You are here

function context_ui_help in Context 6.2

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 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 175

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 <em>'News'</em>, <em>'Projects'</em>, <em>'Staff'</em>, and associate different technical aspects of Drupal to each section. For example, the <em>'News'</em> section may be a collection of <em>Nodes</em>, <em>Views</em>, <em>Menus</em> and <em>Blocks</em>.") . '</p>';
      break;
  }
}