2016-08-31 16:15:54 +00:00
|
|
|
<?php
|
|
|
|
|
2017-05-17 22:02:17 +00:00
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Style\Color;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Style\Conditional;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
|
|
|
|
|
2017-10-01 08:48:59 +00:00
|
|
|
require __DIR__ . '/../Header.php';
|
2016-08-31 16:15:54 +00:00
|
|
|
|
|
|
|
// Create new Spreadsheet object
|
|
|
|
$helper->log('Create new Spreadsheet object');
|
2017-05-17 22:02:17 +00:00
|
|
|
$spreadsheet = new Spreadsheet();
|
2016-08-31 16:15:54 +00:00
|
|
|
|
|
|
|
// Set document properties
|
|
|
|
$helper->log('Set document properties');
|
|
|
|
$spreadsheet->getProperties()->setCreator('Maarten Balliauw')
|
2018-01-28 06:59:38 +00:00
|
|
|
->setLastModifiedBy('Maarten Balliauw')
|
|
|
|
->setTitle('Office 2007 XLSX Test Document')
|
|
|
|
->setSubject('Office 2007 XLSX Test Document')
|
|
|
|
->setDescription('Test document for Office 2007 XLSX, generated using PHP classes.')
|
|
|
|
->setKeywords('office 2007 openxml php')
|
|
|
|
->setCategory('Test result file');
|
2016-08-31 16:15:54 +00:00
|
|
|
|
|
|
|
// Create a first sheet, representing sales data
|
|
|
|
$helper->log('Add some data');
|
|
|
|
$spreadsheet->setActiveSheetIndex(0);
|
|
|
|
$spreadsheet->getActiveSheet()
|
2018-01-28 06:59:38 +00:00
|
|
|
->setCellValue('A1', '-0.5')
|
|
|
|
->setCellValue('A2', '-0.25')
|
|
|
|
->setCellValue('A3', '0.0')
|
|
|
|
->setCellValue('A4', '0.25')
|
|
|
|
->setCellValue('A5', '0.5')
|
|
|
|
->setCellValue('A6', '0.75')
|
|
|
|
->setCellValue('A7', '1.0')
|
|
|
|
->setCellValue('A8', '1.25');
|
2016-08-31 16:15:54 +00:00
|
|
|
|
|
|
|
$spreadsheet->getActiveSheet()->getStyle('A1:A8')
|
2018-01-28 06:59:38 +00:00
|
|
|
->getNumberFormat()
|
|
|
|
->setFormatCode(
|
|
|
|
NumberFormat::FORMAT_PERCENTAGE_00
|
|
|
|
);
|
2016-08-31 16:15:54 +00:00
|
|
|
|
|
|
|
// Add conditional formatting
|
|
|
|
$helper->log('Add conditional formatting');
|
2017-05-17 22:02:17 +00:00
|
|
|
$conditional1 = new Conditional();
|
|
|
|
$conditional1->setConditionType(Conditional::CONDITION_CELLIS)
|
2018-01-28 06:59:38 +00:00
|
|
|
->setOperatorType(Conditional::OPERATOR_LESSTHAN)
|
|
|
|
->addCondition('0');
|
2017-05-17 22:02:17 +00:00
|
|
|
$conditional1->getStyle()->getFont()->getColor()->setARGB(Color::COLOR_RED);
|
2016-08-31 16:15:54 +00:00
|
|
|
|
2017-05-17 22:02:17 +00:00
|
|
|
$conditional3 = new Conditional();
|
|
|
|
$conditional3->setConditionType(Conditional::CONDITION_CELLIS)
|
2018-01-28 06:59:38 +00:00
|
|
|
->setOperatorType(Conditional::OPERATOR_GREATERTHANOREQUAL)
|
|
|
|
->addCondition('1');
|
2017-05-17 22:02:17 +00:00
|
|
|
$conditional3->getStyle()->getFont()->getColor()->setARGB(Color::COLOR_GREEN);
|
2016-08-31 16:15:54 +00:00
|
|
|
|
|
|
|
$conditionalStyles = $spreadsheet->getActiveSheet()->getStyle('A1')->getConditionalStyles();
|
2017-10-19 02:07:31 +00:00
|
|
|
$conditionalStyles[] = $conditional1;
|
|
|
|
$conditionalStyles[] = $conditional3;
|
2016-08-31 16:15:54 +00:00
|
|
|
$spreadsheet->getActiveSheet()->getStyle('A1')->setConditionalStyles($conditionalStyles);
|
|
|
|
|
2018-08-06 02:02:16 +00:00
|
|
|
// duplicate the conditional styles across a range of cells
|
2016-08-31 16:15:54 +00:00
|
|
|
$helper->log('Duplicate the conditional formatting across a range of cells');
|
|
|
|
$spreadsheet->getActiveSheet()->duplicateConditionalStyle(
|
|
|
|
$spreadsheet->getActiveSheet()->getStyle('A1')->getConditionalStyles(),
|
|
|
|
'A2:A8'
|
|
|
|
);
|
|
|
|
|
|
|
|
// Save
|
|
|
|
$helper->write($spreadsheet, __FILE__);
|