function vbo_export_theme in VBO export 7
Same name and namespace in other branches
- 8 vbo_export.module \vbo_export_theme()
- 8.2 vbo_export.module \vbo_export_theme()
Implements hook_theme().
File
- ./
vbo_export.module, line 37 - Provides VBO action to create a csv based on returned results.
Code
function vbo_export_theme() {
return array(
'vbo_export_csv' => array(
'variables' => array(
'header' => array(),
'rows' => array(),
'separator' => ';',
),
'file' => 'vbo_export.theme.inc',
),
'vbo_export_xlsx' => array(
'variables' => array(
'header' => array(),
'rows' => array(),
),
'file' => 'vbo_export.theme.inc',
),
);
}