You are here

function imagepicker_path_load in Image Picker 7

File

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

Code

function imagepicker_path_load($arg) {
  $allowed = array(
    'upload',
    'images',
    'groups',
    'stats',
  );
  return in_array($arg, $allowed) ? $arg : FALSE;
  return $arg;
}