You are here

hide_submit.api.php in Hide submit button 7.2

File

hide_submit.api.php
View source
<?php

/**
 * Allows modules to alter the behavior of the hide_submit settings.
 *
 * This example sets Hide Submit to only be active on the module and module
 * confirmation forms.
 */
function hook_hide_submit_alter(&$hide_submit_settings) {
  $current_path = current_path();
  if (!($current_path === 'admin/modules') && !($current_path === 'admin/modules/list/confirm')) {
    $hide_submit_settings['hide_submit']['hide_submit_status'] = FALSE;
  }
}

Functions

Namesort descending Description
hook_hide_submit_alter Allows modules to alter the behavior of the hide_submit settings.