You are here

function feeds_xls_download_template_helper in Feeds XLS 7

1 call to feeds_xls_download_template_helper()
feeds_xls_download_template in ./feeds_xls.template.inc
Callback function to provide the template.

File

./feeds_xls.template.inc, line 802

Code

function feeds_xls_download_template_helper($feeds_importer, $output = 'php://output') {
  _feeds_xls_initialise_phpexcel();

  // Create new PHPExcel object
  $objPHPExcel = new PHPExcel();
  feeds_xls_set_headers($feeds_importer, $objPHPExcel, $output);
}