Merge pull request #1766 from stefan-91/develop

Add support for ListItemRun in HTML writer
This commit is contained in:
troosan 2019-12-08 20:38:03 +01:00 committed by GitHub
commit dfea4e12a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 69 additions and 1 deletions

View File

@ -0,0 +1,43 @@
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @see https://github.com/PHPOffice/PHPWord
* @copyright 2010-2018 PHPWord contributors
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Writer\HTML\Element;
/**
* ListItem element HTML writer
*
* @since 0.10.0
*/
class ListItemRun extends TextRun
{
/**
* Write list item
*
* @return string
*/
public function write()
{
if (!$this->element instanceof \PhpOffice\PhpWord\Element\ListItemRun) {
return '';
}
$writer = new Container($this->parentWriter, $this->element);
$content = $writer->write() . PHP_EOL;
return $content;
}
}

View File

@ -34,7 +34,7 @@ class ElementTest extends \PHPUnit\Framework\TestCase
*/ */
public function testUnmatchedElements() public function testUnmatchedElements()
{ {
$elements = array('Container', 'Footnote', 'Image', 'Link', 'ListItem', 'Table', 'Title', 'Bookmark'); $elements = array('Container', 'Footnote', 'Image', 'Link', 'ListItem', 'ListItemRun', 'Table', 'Title', 'Bookmark');
foreach ($elements as $element) { foreach ($elements as $element) {
$objectClass = 'PhpOffice\\PhpWord\\Writer\\HTML\\Element\\' . $element; $objectClass = 'PhpOffice\\PhpWord\\Writer\\HTML\\Element\\' . $element;
$parentWriter = new HTML(); $parentWriter = new HTML();
@ -163,6 +163,31 @@ class ElementTest extends \PHPUnit\Framework\TestCase
$this->assertContains($expected, $content); $this->assertContains($expected, $content);
} }
/**
* Test write element ListItemRun
*/
public function testListItemRun()
{
$expected1 = 'List item run 1';
$expected2 = 'List item run 1 in bold';
$phpWord = new PhpWord();
$section = $phpWord->addSection();
$listItemRun = $section->addListItemRun(0, null, 'MyParagraphStyle');
$listItemRun->addText($expected1);
$listItemRun->addText($expected2, array('bold' => true));
$htmlWriter = new HTML($phpWord);
$content = $htmlWriter->getContent();
$dom = new \DOMDocument();
$dom->loadHTML($content);
$this->assertEquals($expected1, $dom->getElementsByTagName('p')->item(0)->textContent);
$this->assertEquals($expected2, $dom->getElementsByTagName('p')->item(1)->textContent);
}
/** /**
* Tests writing table with layout * Tests writing table with layout
*/ */