You are here

function imagepicker_browse_public in Image Picker 6.2

Same name and namespace in other branches
  1. 5.2 imagepicker.module \imagepicker_browse_public()
  2. 7 imagepicker.functions.inc \imagepicker_browse_public()
1 call to imagepicker_browse_public()
imagepicker_box in ./imagepicker.functions.inc
all iframe links pass through here
6 string references to 'imagepicker_browse_public'
imagepicker_admin_images in ./imagepicker.admin.inc
imagepicker_browse_public_form in ./imagepicker.functions.inc
Function to display the public status selection form
imagepicker_browse_public_form_submit in ./imagepicker.functions.inc
Submit form
_imagepicker_browse_admin in ./imagepicker.functions.inc
_imagepicker_browse_public in ./imagepicker.functions.inc

... See full list

File

./imagepicker.functions.inc, line 20
Imagepicker functions

Code

function imagepicker_browse_public($img_id = 0) {
  if ($img_id) {
    return imagepicker_image_select($img_id, FALSE, TRUE);
  }
  else {
    return theme('imagepicker_iframe', _imagepicker_browse_public());
  }
}