You are here

function invoice_theme in Invoice 6

Same name and namespace in other branches
  1. 7 invoice.module \invoice_theme()

Implementation of hook_theme()

Parameters

unknown_type $existing:

unknown_type $type:

unknown_type $theme:

unknown_type $path:

Return value

array

File

./invoice.module, line 199
Invoice module

Code

function invoice_theme($existing, $type, $theme, $path) {
  return array(
    'invoice_body' => array(
      'arguments' => array(
        'node' => NULL,
        'type' => NULL,
      ),
    ),
    'invoice_markup' => array(
      'arguments' => array(
        's_fieldname' => NULL,
        'value' => NULL,
        's_title' => NULL,
      ),
    ),
    'invoice_table' => array(
      'arguments' => array(
        'header' => NULL,
        'rows' => NULL,
        'attributes' => NULL,
        'caption' => NULL,
      ),
    ),
  );
}