You are here

function theme_submit in Drupal 7

Same name and namespace in other branches
  1. 4 includes/form.inc \theme_submit()
  2. 5 includes/form.inc \theme_submit()
  3. 6 includes/form.inc \theme_submit()

Returns HTML for a submit button form element.

Parameters

$variables: An associative array containing:

  • element: An associative array containing the properties of the element. Properties used: #attributes, #button_type, #name, #value.

Related topics

File

includes/form.inc, line 3908
Functions for form and batch generation and processing.

Code

function theme_submit($variables) {
  return theme('button', $variables['element']);
}