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