You are here

function imagepicker_uid_load in Image Picker 7

Same name and namespace in other branches
  1. 6.2 imagepicker.module \imagepicker_uid_load()

File

./imagepicker.module, line 472
@author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function imagepicker_uid_load($arg) {
  global $user;
  return is_numeric($arg) && $user->uid == $arg ? $arg : FALSE;
}