You are here

function theme_imagepicker_browse_admin_form in Image Picker 7

Same name and namespace in other branches
  1. 6.2 imagepicker.module \theme_imagepicker_browse_admin_form()

File

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

Code

function theme_imagepicker_browse_admin_form($variables) {
  $form = $variables['form'];
  $output = '';
  $src = $form['options']['src']['#value'];
  $cols = $form['options']['cols']['#value'];
  $public = $form['options']['public']['#value'];
  $form['options']['#prefix'] = '<div class="container-inline">';
  $form['options']['#suffix'] = '</div>';
  $output .= drupal_render_children($form);
  return $output;
}