function imagecache_reflect_help in ImageCache Reflect 8
Implements hook_help().
File
- ./
imagecache_reflect.module, line 10 - Module file for imagecache_reflect
Code
function imagecache_reflect_help($path) {
switch ($path) {
case 'admin/help#imagecache_reflect':
// Help text for the admin section, using the module name in the path.
return t("This is help text created in the imagecache reflect module.");
}
}