You are here

function imagepicker_browse in Image Picker 7

Same name and namespace in other branches
  1. 5.2 imagepicker.module \imagepicker_browse()
  2. 5 imagepicker.module \imagepicker_browse()
  3. 6.2 imagepicker.functions.inc \imagepicker_browse()

Menu local task; presents the browse and select pages for imagepicker

1 call to imagepicker_browse()
imagepicker_box in ./imagepicker.functions.inc

File

./imagepicker.functions.inc, line 14
@author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function imagepicker_browse($img_id = 0) {
  if ($img_id) {
    return imagepicker_image_select($img_id);
  }
  else {
    return theme('imagepicker_iframe', array(
      'content' => _imagepicker_browse(),
    ));
  }
}