You are here

function imagepicker_access_theme in Image Picker 7

1 string reference to 'imagepicker_access_theme'
imagepicker_menu in ./imagepicker.module
Implement hook_menu().

File

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

Code

function imagepicker_access_theme() {
  if (imagepicker_variable_get('imagepicker_use_admin_theme', 0) && variable_get('node_admin_theme', 0)) {
    return variable_get('admin_theme');
  }
  return FALSE;
}