phpexcel 4.0.0-beta3

Bug fixes
New features

Update module compatibility.
#3373673 Module crashes with Drupal 10.0 and 10.1

phpexcel 4.0.0-beta1

New features

Services.
Import data from an Excel file.

$phpexcel = \Drupal::service('phpexcel');
$filepath = 'modules/contrib/phpexcel/tests/Functional/data/phpexcel.test.multi_sheet.xlsx';
$result = $phpexcel->import($filepath);
print_r($result);

Export data as an Excel file.

phpexcel 7.x-3.8

Bug fixes
New features

Changelog:

  • Version is now automatically detected from changelog.txt file.
  • SQLite caching option is now functional.
  • Fix for #2327377: Why limitation to xls and xlsx?: we no longer limit ourselves to XLS or XLSX files.

phpexcel 7.x-3.4

New features
Bug fixes

Includes fix for #1853384: Empty Worksheet. PHPExcel creates an empty worksheet by default. Use that worksheet for the first one instead of creating a new one.

Adds administration UI for caching options provided by PHPExcel. Allows admins to select a caching mechanism for better performance, especially usefull when dealing with large datasets.

phpexcel 7.x-3.3

Bug fixes

Reverting patch by @mikran from #1853384: Empty Worksheet. It makes some exports fail in certain conditions.

phpexcel 7.x-3.2

Bug fixes

Apply patch from Mikran. Actual code that 7.x-3.1 should have contained.

phpexcel 7.x-3.0

New features

Module now depends on the Libraries API module: #1884552: Use the Libraries API.
The file phpexcel.api.inc has now completely been removed in favor of phpexcel.inc, as to avoid confusion with phpexcel.api.php (which contains the documentation).

phpexcel 7.x-3.x-dev

New features

The 3.x branch uses the Libraries API module for including the PHPExcel library.
The import/export functions return constants instead of booleans. This allows developers to easily catch specific errors, instead of checking the watchdog logs.

phpexcel 7.x-2.2

Bug fixes

Correct 'ignore_headers' option. Export can now truly ignore headers by passing an empty array (or NULL).

phpexcel 7.x-2.0

Bug fixes

Port of D6 2.x branch. Contains Unit tests. Corrected a bug with file_munge_filename().

phpexcel 6.x-2.0

New features

New features and more flexibility for programmers. Programmers can now use a template file for exporting data.

phpexcel 7.x-2.x-dev

New features

Gives programmers more freedom with the PHPExcel API

phpexcel 6.x-2.x-dev

New features

Gives programmers more freedom with the PHPExcel API

phpexcel 7.x-1.0-alpha1

Alpha release for D7. No new functionality. Has not been tested and should not be used in production.

phpexcel 6.x-1.5

Bug fixes

On import, when keying the array with the header values, the header values weren't trimmed, which could give unexpected results.

phpexcel 6.x-1.3

New features

PHPExcel now gives developers the ability to control the import and export with hooks. See API.txt for more info (#1408872: Cannot benefit from the power of PHPExcel (formatting, merging, calculations, templates)).

phpexcel 6.x-1.3-beta2

Bug fixes

Made a small code correction (http://drupal.org/node/1408824#comment-5502952). See release note for beta-1 for more info on new features.

phpexcel 6.x-1.2

New features
Bug fixes

Corrected a small bug when importing an Excel file with multiple sheets and keying the results by headers.

Added a test suite for SimpleTest.

Subscribe with RSS Subscribe to Releases for PHPExcel