theme_token
- 5 – 6
theme_token($element)
Format a form token.
Related topics
- Form generation
- Functions to enable the processing and display of HTML forms.
- Default theme implementations
- Functions and templates that present output to the user, and can be
implemented by themes.
Code
drupal/includes/form.inc, line 2018
<?php
function theme_token($element) {
return theme('hidden', $element);
}
?>