You are here

function imagecache_ui_help in ImageCache 6.2

Same name and namespace in other branches
  1. 5.2 imagecache_ui.module \imagecache_ui_help()

Implementation of hook_help().

File

./imagecache_ui.module, line 11

Code

function imagecache_ui_help($path, $arg) {
  switch ($path) {
    case 'admin/build/imagecache':
      return t('Manage ImageCache presets.');
    case 'admin/build/imagecache/%/export':
      return t('Place the following snippet in your module as part of <code>hook_imagecache_default_presets()</code>.');
  }
}