Full ELMS Learning Network documentation
function theme_hidden
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 form.inc | theme_hidden($variables) |
cle7 form.inc | theme_hidden($variables) |
elmsmedia7 form.inc | theme_hidden($variables) |
icor7 form.inc | theme_hidden($variables) |
meedjum_blog7 form.inc | theme_hidden($variables) |
mooc7 form.inc | theme_hidden($variables) |
Returns HTML for a hidden form element.
Parameters
$variables: An associative array containing:
- element: An associative array containing the properties of the element. Properties used: #name, #value, #attributes.
Related topics
256 string references to the theme hook from theme_hidden()
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- accessibility_install in sites/
all/ modules/ ulmus/ accessibility/ accessibility.install - Implements hook_install().
- adaptivetheme_form_system_theme_settings_alter in sites/
all/ themes/ ulmus/ adaptivetheme/ at_core/ theme-settings.php - @file Implimentation of hook_form_system_theme_settings_alter()
- admin_menu_links_menu in sites/
all/ modules/ ulmus/ admin_menu/ admin_menu.inc - Build the administration menu as renderable menu links.
- advagg_validator_admin_form_generator in sites/
all/ modules/ ulmus/ advagg/ advagg_validator/ advagg_validator.admin.inc - Scan the file system and build a form tree from it.
- advagg_validator_admin_test_advagg_css_directory_callback in sites/
all/ modules/ ulmus/ advagg/ advagg_validator/ advagg_validator.admin.inc - Display file info via ajax callback.
File
- includes/
form.inc, line 3845 - Functions for form and batch generation and processing.
Code
function theme_hidden($variables) {
$element = $variables['element'];
$element['#attributes']['type'] = 'hidden';
element_set_attributes($element, array('name', 'value'));
return '<input' . drupal_attributes($element['#attributes']) . " />\n";
}