You are here

function hide_submit_theme in Hide submit button 6

Same name and namespace in other branches
  1. 7 hide_submit.module \hide_submit_theme()

Implementation of hook_theme()

File

./hide_submit.module, line 195
Hide the submit button after clicked to prevent/reduce duplicate postings.

Code

function hide_submit_theme() {
  $theme = array(
    'hide_submit_images_fieldset' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
  return $theme;
}