function brilliant_gallery_help in Brilliant Gallery 7
Same name and namespace in other branches
- 5.4 brilliant_gallery.module \brilliant_gallery_help()
- 5.3 brilliant_gallery.module \brilliant_gallery_help()
- 6.4 brilliant_gallery.module \brilliant_gallery_help()
- 6 brilliant_gallery.module \brilliant_gallery_help()
- 6.2 brilliant_gallery.module \brilliant_gallery_help()
- 6.3 brilliant_gallery.module \brilliant_gallery_help()
- 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>';
}
}