You are here

function theme_imagepicker_edit_form in Image Picker 6.2

Same name and namespace in other branches
  1. 7 imagepicker.module \theme_imagepicker_edit_form()

File

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

Code

function theme_imagepicker_edit_form($form) {
  $output = '';
  $form['title']['#prefix'] = '<div id="imgp_edit_form">';
  $form['description']['#suffix'] = '</div>';
  $form['submit']['#prefix'] = '<div id="imgp_controls">';
  $form['cancel']['#suffix'] = '</div>';
  $output .= drupal_render($form);
  return $output;
}