You are here

function hide_submit_theme in Hide submit button 7

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

Implements hook_theme().

File

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

Code

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