blast_ui.form_single.inc 327 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. *
  5. */
  6. /**
  7. *
  8. */
  9. function blast_ui_all_in_one_form($form, $form_state) {
  10. // Give the users a message so they don't realize this was supposed to be a
  11. // form that just isn't ready yet.
  12. $form['msg'] = array(
  13. '#type' => 'item',
  14. '#markup' => theme('blast_user_menupage')
  15. );
  16. return $form;
  17. }