Skip to content

Commit

Permalink
5.5.2.2525: Bug fix for Excel header rotation and inclusion of compos…
Browse files Browse the repository at this point in the history
…er files for simplified installation
  • Loading branch information
classaxe committed Mar 26, 2018
1 parent d872215 commit c45b895
Show file tree
Hide file tree
Showing 5 changed files with 177 additions and 19 deletions.
7 changes: 6 additions & 1 deletion classes/class.excel_export.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
<?php
/*
Version History:
1.0.1 (2018-03-25)
1) Bug fix for header text rotation
*/

class Excel_Export extends Record {
const VERSION = '1.0.0';
const VERSION = '1.0.1';

private $ObjPHPExcel;
private $ObjReport;
Expand Down
2 changes: 2 additions & 0 deletions classes/class.excel_export.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1.0.0 (2018-03-25)
Initial release - split from class.export.php and extensively refactored
30 changes: 12 additions & 18 deletions codebase.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
define("CODEBASE_VERSION", "5.5.1");
define("CODEBASE_VERSION", "5.5.2");
define('ECC_PHP_7_STRICT', 1);
define("DEBUG_FORM", 0);
define("DEBUG_REPORT", 0);
Expand All @@ -19,36 +19,30 @@
//define("DOCTYPE", '<!DOCTYPE html SYSTEM "%HOST%/xhtml1-strict-with-iframe.dtd">');
/*
--------------------------------------------------------------------------------
5.5.1.2524 (2018-03-25)
5.5.2.2525 (2018-03-25)
Summary:
1) Replaced obsolete PHP Excel with composer-maintained PhpOffice\PhpSpreadsheet\Spreadsheet
2) Excel export now moved into its own class and extensively refactored
1) Bug fix for header text rotation
2) Added composer.json and composer.lock to package for simplified installation
Final Checksums:
Classes CS:14f93374
Classes CS:1153d028
Database CS:41de4e36
Libraries CS:dc4687c4
Libraries CS:9ce32401
Reports CS:22839f7c
Code Changes:
codebase.php 5.5.1 (2018-03-25)
codebase.php 5.5.2 (2018-03-26)
1) Updated version information
system.php 1.0.42 (2018-03-25)
1) Call to export module is no longer static - was incorrect before and broke SQL exports
classes/class.export.php 1.0.29 (2018-03-24)
1) Excel code moved into new class called ExcelExport
classes/class.excel_export.php 1.0.1 (2018-03-25)
1) Bug fix for header text rotation
2524.sql
2525.sql
1) Set version information
Delete:
class.php_excel.php 1.0.3
Promote:
codebase.php 5.5.1
system.php 1.0.42
codebase.php 5.5.2
classes/ (1 file changed)
class.export.php 1.0.29 CS:ca152539
class.excel_export.php 1.0.1 CS:1d6a920
Bug:
where two postings (e.g. gallery album and article) have same name and date
Expand Down
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"require": {
"phpoffice/phpspreadsheet": "^1.2"
}
}
152 changes: 152 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c45b895

Please sign in to comment.