function theme_markup
Related topics
1 theme call to theme_markup()
- drupal_render in drupal-6.x/
includes/ common.inc - Renders HTML given a structured array tree.
Archivo
- drupal-6.x/
includes/ form.inc, line 2137
Código
function theme_markup($element) {
return (isset($element['#value']) ? $element['#value'] : '') . (isset($element['#children']) ? $element['#children'] : '');
}