mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-17 15:02:48 +00:00
14 lines
322 B
PHP
14 lines
322 B
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\IOFactory;
|
|
|
|
require __DIR__ . '/../Header.php';
|
|
|
|
// Read from Xls (.xls) template
|
|
$helper->log('Load Xlsx template file');
|
|
$reader = IOFactory::createReader('Xls');
|
|
$spreadsheet = $reader->load(__DIR__ . '/../templates/27template.xls');
|
|
|
|
// Save
|
|
$helper->write($spreadsheet, __FILE__);
|