You are here

function uc_csv_theme in Ubercart CSV 7.2

Implements hook_theme

File

./uc_csv.module, line 854

Code

function uc_csv_theme($existing, $type, $theme, $path) {
  return array(
    'uc_csv_attached_report' => array(
      'template' => 'uc-csv-attached-report',
      'arguments' => array(
        'report' => NULL,
        'boundary' => NULL,
        'contents' => NULL,
        'filename' => NULL,
        'filesize' => NULL,
      ),
    ),
    'uc_csv_help_page' => array(
      'template' => 'uc-csv-help-page',
      'arguments' => array(
        'create_new_report' => NULL,
      ),
    ),
  );
}