All pastes #306094 Raw Copy code Copy link Edit

Someone

public text v1 · immutable
#306094 ·published 2007-01-05 01:52 UTC
rendered paste body
<?php
function dojo_form_alter($form_id, &$form) {
  $form['#theme'] = 'dojo';
}

functon theme_dojo($form) {
  $output = '<h1>I added this to the top of the form</h1>';
  $output .= drupal_render($form);
  return $output;
}