You are here

function theme_getdirections_direction_form in Get Directions 6

Same name and namespace in other branches
  1. 6.2 getdirections.theme.inc \theme_getdirections_direction_form()
  2. 7.3 getdirections.module \theme_getdirections_direction_form()
  3. 7.2 getdirections.module \theme_getdirections_direction_form()

File

./getdirections.theme.inc, line 140
getdirections module theming

Code

function theme_getdirections_direction_form($form) {

  // if you want to do fancy things with the form, do it here ;-)
  $output = '';
  $output .= drupal_render($form);
  return $output;
}