function invoice_theme in Invoice 7
Same name and namespace in other branches
- 6 invoice.module \invoice_theme()
Implements hook_theme()
Parameters
array $existing:
string $type:
string $theme:
string $path:
Return value
array
File
- ./
invoice.module, line 283 - Invoice module
Code
function invoice_theme($existing, $type, $theme, $path) {
return array(
'invoice_body' => array(
'variables' => array(
'node' => NULL,
'type' => NULL,
),
),
'invoice_markup' => array(
'variables' => array(
's_fieldname' => NULL,
'value' => NULL,
's_title' => NULL,
),
),
);
}