You are here

function imagepicker_settings_page in Image Picker 5.2

Same name and namespace in other branches
  1. 6.2 imagepicker.admin.inc \imagepicker_settings_page()
  2. 7 imagepicker.admin.inc \imagepicker_settings_page()

Menu callback; presents the settings form for imagepicker

1 string reference to 'imagepicker_settings_page'
imagepicker_menu in ./imagepicker.module
Implementation of hook_menu().

File

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

Code

function imagepicker_settings_page($op = NULL) {
  $content = drupal_get_form('imagepicker_settings_form');
  return $content;
}