You are here

function theme_forena_inline_field in Forena Reports 7.3

Same name and namespace in other branches
  1. 8 forena.common.inc \theme_forena_inline_field()
  2. 7.5 forena.common.inc \theme_forena_inline_field()
  3. 7.4 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 435
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']);
}