You are here

function gravatar_help in Gravatar integration 7

Same name and namespace in other branches
  1. 5 gravatar.module \gravatar_help()
  2. 6 gravatar.module \gravatar_help()

Implements hook_help().

File

./gravatar.module, line 93
Integrates gravatar service for user pictures.

Code

function gravatar_help($path, $arg) {
  switch ($path) {

    //case 'admin/help#gravatar':
    case 'admin/config/people/gravatar':
    case 'admin/config/people/settings':
      module_load_install('gravatar');
      gravatar_check_requirements();
      break;
  }
}