You are here

function brilliant_gallery_help in Brilliant Gallery 7

Same name and namespace in other branches
  1. 5.4 brilliant_gallery.module \brilliant_gallery_help()
  2. 5.3 brilliant_gallery.module \brilliant_gallery_help()
  3. 6.4 brilliant_gallery.module \brilliant_gallery_help()
  4. 6 brilliant_gallery.module \brilliant_gallery_help()
  5. 6.2 brilliant_gallery.module \brilliant_gallery_help()
  6. 6.3 brilliant_gallery.module \brilliant_gallery_help()
  7. 7.2 brilliant_gallery.module \brilliant_gallery_help()

Display help and module information

Parameters

section which section of the site we're displaying help:

Return value

help text for section

File

./brilliant_gallery.module, line 36

Code

function brilliant_gallery_help($path, $arg) {
  switch ($path) {
    case "admin/help#brilliant_gallery":
      return '<h3>' . t('About') . '</h3>' . '<p>' . t("Highly customizable Drupal module creating a table gallery of quality-scaled images from any number of folders.") . '</p>';
  }
}