You are here

function socialmedia_help in Social media 7

Implements hook_help().

File

./socialmedia.module, line 264
Demonstrate basic module socialmedia.

Code

function socialmedia_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/socialmedia':
      return t('This is some help text for the socialmedia settings page.');
    case 'admin/help#socialmedia':
      $output = '<p>' . t('This is help text for the socialmedia help page') . '</p>';
      return $output;
  }
}