You are here

function avatar_selection_get_random_image in Avatar Selection 5

Same name and namespace in other branches
  1. 5.2 avatar_selection.module \avatar_selection_get_random_image()
  2. 6 avatar_selection.module \avatar_selection_get_random_image()
  3. 7 avatar_selection.module \avatar_selection_get_random_image()
1 call to avatar_selection_get_random_image()
avatar_selection_user in ./avatar_selection.module

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;
}