Skip to content

Commit

Permalink
Merge pull request #1766 from stefan-91/develop
Browse files Browse the repository at this point in the history
Add support for ListItemRun in HTML writer
  • Loading branch information
troosan authored Dec 8, 2019
2 parents 5940d18 + 1451fad commit dfea4e1
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 1 deletion.
43 changes: 43 additions & 0 deletions src/PhpWord/Writer/HTML/Element/ListItemRun.php
Original file line number Diff line number Diff line change
@@ -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;
}
}
27 changes: 26 additions & 1 deletion tests/PhpWord/Writer/HTML/ElementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ElementTest extends \PHPUnit\Framework\TestCase
*/
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) {
$objectClass = 'PhpOffice\\PhpWord\\Writer\\HTML\\Element\\' . $element;
$parentWriter = new HTML();
Expand Down Expand Up @@ -163,6 +163,31 @@ public function testWriteTitleTextRun()
$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
*/
Expand Down

0 comments on commit dfea4e1

Please sign in to comment.