You are here

function forena_theme in Forena Reports 8

Same name and namespace in other branches
  1. 7.5 forena.module \forena_theme()
  2. 7.3 forena.module \forena_theme()
  3. 7.4 forena.module \forena_theme()

File

./forena.module, line 614

Code

function forena_theme() {
  return array(
    'forena_web_report' => array(
      'variables' => array(
        'doc_types' => NULL,
        'parameters' => NULL,
        'content' => NULL,
      ),
    ),
    'forena_inline_form_element' => array(
      'render element' => 'element',
      'file' => 'forena.common.inc',
    ),
    'forena_inline_field' => array(
      'render element' => 'field',
      'file' => 'forena.common.inc',
    ),
    'forena_fieldset_template' => array(
      'render element' => 'fieldset',
      'file' => 'forena.common.inc',
    ),
    'forena_data_table' => array(
      'file' => 'forena.common.inc',
      'variables' => array(
        'header' => NULL,
        'data' => NULL,
      ),
    ),
    'forena_report_parameters_form' => array(
      'file' => 'forena.report.inc',
      'render element' => 'form',
    ),
    'forena_element_draggable' => array(
      'file' => 'forena.report.inc',
      'render element' => 'element',
    ),
  );
}