parent
aef4d711f5
commit
7aa6233185
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
### Added
|
||||
|
||||
- Support for chart fill color - @CrazyBite [#158](https://github.com/PHPOffice/PhpSpreadsheet/pull/158)
|
||||
- Support for read Hyperlink for xml - [@GreatHumorist](https://github.com/GreatHumorist) [#223](https://github.com/PHPOffice/PhpSpreadsheet/pull/223)
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
@ -1167,7 +1167,7 @@
|
|||
<td style="padding-left: 1em;">Hyperlinks</td>
|
||||
<td style="text-align: center; color: green;">✔</td>
|
||||
<td style="text-align: center; color: green;">✔</td>
|
||||
<td style="text-align: center; color: red;">✖</td>
|
||||
<td style="text-align: center; color: green;">✔</td>
|
||||
<td style="text-align: center; color: green;">✔</td>
|
||||
<td style="text-align: center; color: red;">✖</td>
|
||||
<td style="text-align: center; color: red;">✖</td>
|
||||
|
@ -1496,4 +1496,4 @@
|
|||
</table>
|
||||
|
||||
1. Only BIFF8 files support Rich Text. Prior to that, comments could only be plain text
|
||||
2. Only BIFF8 files support alignment and rotation. Prior to that, comments could only be unformatted text
|
||||
2. Only BIFF8 files support alignment and rotation. Prior to that, comments could only be unformatted text
|
||||
|
|
|
@ -549,7 +549,9 @@
|
|||
<Data ss:Type="String">AE</Data>
|
||||
</Cell>
|
||||
<Cell ss:StyleID="ce5"/>
|
||||
<Cell ss:StyleID="ce5"/>
|
||||
<Cell ss:StyleID="ce5" ss:HRef="http://phpspreadsheet.readthedocs.io/">
|
||||
<Data ss:Type="String">PhpSpreadsheet</Data>
|
||||
</Cell>
|
||||
<Cell ss:StyleID="ce5"/>
|
||||
<Cell ss:StyleID="ce5"/>
|
||||
<Cell ss:StyleID="ce5"/>
|
||||
|
|
|
@ -610,6 +610,10 @@ class Xml extends BaseReader implements IReader
|
|||
}
|
||||
}
|
||||
|
||||
if (isset($cell_ss['HRef'])) {
|
||||
$spreadsheet->getActiveSheet()->getCell($cellRange)->getHyperlink()->setUrl($cell_ss['HRef']);
|
||||
}
|
||||
|
||||
if ((isset($cell_ss['MergeAcross'])) || (isset($cell_ss['MergeDown']))) {
|
||||
$columnTo = $columnID;
|
||||
if (isset($cell_ss['MergeAcross'])) {
|
||||
|
|
|
@ -2,13 +2,35 @@
|
|||
|
||||
namespace PhpOffice\PhpSpreadsheetTests\Reader;
|
||||
|
||||
use PhpOffice\PhpSpreadsheet\Cell\DataType;
|
||||
use PhpOffice\PhpSpreadsheet\Reader\BaseReader;
|
||||
use PhpOffice\PhpSpreadsheet\Reader\Exception;
|
||||
use PhpOffice\PhpSpreadsheet\Reader\Xml;
|
||||
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
||||
use PHPUnit_Framework_TestCase;
|
||||
|
||||
class XEEValidatorTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* @var Spreadsheet
|
||||
*/
|
||||
private $spreadsheetXEETest;
|
||||
|
||||
/**
|
||||
* @return Spreadsheet
|
||||
*/
|
||||
protected function loadXEETestFile()
|
||||
{
|
||||
if (!$this->spreadsheetXEETest) {
|
||||
$filename = '../samples/templates/Excel2003XMLTest.xml';
|
||||
|
||||
// Load into this instance
|
||||
$reader = new Xml();
|
||||
$this->spreadsheetXEETest = $reader->load($filename);
|
||||
}
|
||||
|
||||
return $this->spreadsheetXEETest;
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider providerInvalidXML
|
||||
* @expectedException \PhpOffice\PhpSpreadsheet\Reader\Exception
|
||||
|
@ -77,4 +99,19 @@ class XEEValidatorTest extends PHPUnit_Framework_TestCase
|
|||
|
||||
return $tests;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if it can read XML Hyperlink correctly.
|
||||
*/
|
||||
public function testReadHyperlinks()
|
||||
{
|
||||
$spreadsheet = $this->loadXEETestFile();
|
||||
$firstSheet = $spreadsheet->getSheet(0);
|
||||
|
||||
$hyperlink = $firstSheet->getCell('L1');
|
||||
|
||||
self::assertEquals(DataType::TYPE_STRING, $hyperlink->getDataType());
|
||||
self::assertEquals('PhpSpreadsheet', $hyperlink->getValue());
|
||||
self::assertEquals('http://phpspreadsheet.readthedocs.io/', $hyperlink->getHyperlink()->getUrl());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue