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