You are here

function gravatar_variables in Gravatar integration 5

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

Internal default variables for gravatar_var().

2 calls to gravatar_variables()
gravatar_uninstall in ./gravatar.install
Implementation of hook_uninstall().
gravatar_var in ./gravatar.module
Internal implementation of variable_get().

File

./gravatar.module, line 385
Integrates gravatar service for comment user pictures.

Code

function gravatar_variables() {
  return array(
    'gravatar_rating' => 'G',
    'gravatar_default' => GRAVATAR_DEFAULT_MODULE,
    'gravatar_url' => 'http://www.gravatar.com/avatar/',
    'gravatar_prepend' => 1,
  );
}