You are here

function skinr_help in Skinr 8.2

Same name and namespace in other branches
  1. 6.2 skinr.module \skinr_help()
  2. 6 skinr.module \skinr_help()
  3. 7.2 skinr.module \skinr_help()

Implements hook_help().

File

./skinr.module, line 28
Handles core Skinr functionality.

Code

function skinr_help($path, $arg) {
  switch ($path) {
    case 'help.page.skinr':
      return t('Visit the <a href="http://skinr.org/" target="_blank">Skinr.org</a> for full documentation.');
      break;
  }
}