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
- drupal/includes/form.inc, line 3899
- Functions for form and batch generation and processing.
Code
function theme_submit($variables) {
return theme('button', $variables['element']);
}