function theme_forena_inline_field in Forena Reports 7.4
Same name and namespace in other branches
- 8 forena.common.inc \theme_forena_inline_field()
- 7.5 forena.common.inc \theme_forena_inline_field()
- 7.3 forena.common.inc \theme_forena_inline_field()
Render a field without it's containers so that we can use it in a report without the wrappers.
File
- ./
forena.common.inc, line 352 - Common functions used throughout the project but loaded in this file to keep the module file lean.
Code
function theme_forena_inline_field(&$variables) {
$element = $variables['field'];
// This is also used in the installer, pre-database setup.
drupal_render_children($variables['field']);
}