Skip to content

Add support for ListItemRun in HTML writer #1766

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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