function avatar_selection_get_random_image in Avatar Selection 5
Same name and namespace in other branches
- 5.2 avatar_selection.module \avatar_selection_get_random_image()
- 6 avatar_selection.module \avatar_selection_get_random_image()
- 7 avatar_selection.module \avatar_selection_get_random_image()
1 call to avatar_selection_get_random_image()
File
- ./
avatar_selection.module, line 210
Code
function avatar_selection_get_random_image($user) {
$avatars = _avatar_selection_image_list($user);
$avatar = array_rand($avatars['avatars'], 1);
return $avatar;
}