slight change to get_avatar hook, also provided readable text for gravatar default options - the admin settings part of this plugin needs some work.

This commit is contained in:
friendica 2012-04-10 16:03:22 -07:00
parent db22719bb8
commit 9295f179b1
1 changed files with 8 additions and 8 deletions

View File

@ -36,7 +36,7 @@ function gravatar_lookup($a, &$b) {
// setting default value if nothing configured
if(! $default_avatar)
$default_avatar = 'identicon'; // pseudo-random geometric pattern based on email hash
$default_avatar = 'identicon'; // default image will be a random pattern
if(! $rating)
$rating = 'g'; // suitable for display on all websites with any audience type
@ -48,6 +48,7 @@ function gravatar_lookup($a, &$b) {
$url .= '&d=' .$default_avatar;
$b['url'] = $url;
$b['success'] = true;
}
/**
@ -67,12 +68,11 @@ function gravatar_plugin_admin (&$a, &$o) {
// Available options for the select boxes
$default_avatars = array(
'gravatar' => 'Gravatar',
'mm' => 'MM',
'identicon' => 'Identicon',
'monsterid' => 'Monsterid',
'wavatar' => 'Wavatar',
'retro' => 'Retro'
'mm' => t('generic profile image'),
'identicon' => t('random geometric pattern'),
'monsterid' => t('monster face'),
'wavatar' => t('computer generated face'),
'retro' => t('retro arcade style face'),
);
$ratings = array(
'g' => 'g',