You are here

function imagepicker_get_thickbox_perms in Image Picker 6.2

2 calls to imagepicker_get_thickbox_perms()
imagepicker_form_alter in ./imagepicker.module
Implementation of hook_form_alter().
imagepicker_thickbox_js in ./imagepicker.functions.inc
hook into (patched) thickbox module.

File

./imagepicker.module, line 769
Enables permitted roles to upload images for insertion into configured nodes.

Code

function imagepicker_get_thickbox_perms() {
  global $user;
  if (module_exists('thickbox') && isset($user->imagepicker_advanced_thickbox) && $user->imagepicker_advanced_thickbox && variable_get('imagepicker_advanced_thickbox', 0) || module_exists('thickbox') && !isset($user->imagepicker_advanced_thickbox) && variable_get('imagepicker_advanced_thickbox', 0)) {
    return TRUE;
  }
  return FALSE;
}