You are here

function homebox_help in Homebox 6.2

Same name and namespace in other branches
  1. 8 homebox.module \homebox_help()
  2. 6.3 homebox.module \homebox_help()
  3. 6 homebox.module \homebox_help()
  4. 7.3 homebox.module \homebox_help()
  5. 7.2 homebox.module \homebox_help()

Implementation of hook_help().

File

./homebox.module, line 195
Homebox main file, takes care of global functions settings constants, etc.

Code

function homebox_help($path, $arg) {
  switch ($path) {
    case 'admin/build/homebox':
      return '<p>' . theme('advanced_help_topic', 'homebox', 'introduction') . '&nbsp;' . t("Homebox pages are listed below. Each page is accessible from a single url on your site that you specify during page creation. You can create as many pages as you need. Be sure to review all available layout options and settings.</p>");
    case 'admin/build/homebox/layout/%':
      return '<p>' . theme('advanced_help_topic', 'homebox', 'default-layout') . '&nbsp;' . t("This page behave the same way as Drupal block administration page. Drag blocks to whatever column you want to enable it for your users. Note that you can change the number of columns in the <a href='!settings_url'>settings page</a>", array(
        '!settings_url' => url('admin/build/homebox/settings/' . arg(4)),
      )) . '.</p>';
    case 'admin/build/homebox/settings/%':
      return '<p>' . theme('advanced_help_topic', 'homebox', 'settings') . '&nbsp;' . t('Homebox configuration page.');
  }
}