You are here

function hide_submit_install in Hide submit button 7

Same name and namespace in other branches
  1. 5 hide_submit.install \hide_submit_install()
  2. 6 hide_submit.install \hide_submit_install()

Implement hook install

File

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

Code

function hide_submit_install() {

  // TODO update_sql has been removed. Use the database API for any schema or data changes.
  // update_sql("UPDATE {system} SET weight = 10 WHERE type = 'module' AND name = 'hide_submit'");
  drupal_set_message(st('Hide submit module installed.'));
}