You are here

function theme_imagepicker_browse_order_form in Image Picker 6.2

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

File

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

Code

function theme_imagepicker_browse_order_form($form) {
  $output = '';
  $form['imagepicker_browser_order']['#prefix'] = '<div id="imgp_order_form" class="container-inline">';
  $form['submit']['#suffix'] = '</div>';
  $output .= drupal_render($form);
  return $output;
}