parent
04d0c02e23
commit
bded91af9f
|
|
@ -20,6 +20,7 @@ v0.15.0 (?? ??? 2018)
|
|||
- Save PNG alpha information when using remote images. @samsullivan #779
|
||||
- Fix parsing of `<w:br/>` tag. @troosan #1274
|
||||
- Bookmark are not writton as internal link in html writer @troosan #1263
|
||||
- It should be possible to add a Footnote in a ListItemRun @troosan #1287 #1287
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -67,6 +67,8 @@ $listItemRun->addText(' in bold', array('bold' => true));
|
|||
$listItemRun = $section->addListItemRun();
|
||||
$listItemRun->addText('List item 2');
|
||||
$listItemRun->addText(' in italic', array('italic' => true));
|
||||
$footnote = $listItemRun->addFootnote();
|
||||
$footnote->addText('this is a footnote on a list item');
|
||||
$listItemRun = $section->addListItemRun();
|
||||
$listItemRun->addText('List item 3');
|
||||
$listItemRun->addText(' underlined', array('underline' => 'dash'));
|
||||
|
|
|
|||
|
|
@ -207,7 +207,7 @@ abstract class AbstractContainer extends AbstractElement
|
|||
'Table' => array('Section', 'Header', 'Footer', 'Cell', 'TextBox'),
|
||||
'CheckBox' => array('Section', 'Header', 'Footer', 'Cell', 'TextRun'),
|
||||
'TextBox' => array('Section', 'Header', 'Footer', 'Cell'),
|
||||
'Footnote' => array('Section', 'TextRun', 'Cell'),
|
||||
'Footnote' => array('Section', 'TextRun', 'Cell', 'ListItemRun'),
|
||||
'Endnote' => array('Section', 'TextRun', 'Cell'),
|
||||
'PreserveText' => array('Section', 'Header', 'Footer', 'Cell'),
|
||||
'Title' => array('Section', 'Cell'),
|
||||
|
|
|
|||
|
|
@ -415,6 +415,10 @@ class Html
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param bool $isOrderedList
|
||||
* @return array
|
||||
*/
|
||||
private static function getListStyle($isOrderedList)
|
||||
{
|
||||
if ($isOrderedList) {
|
||||
|
|
@ -547,13 +551,13 @@ class Html
|
|||
case 'width':
|
||||
if (preg_match('/([0-9]+[a-z]+)/', $cValue, $matches)) {
|
||||
$styles['width'] = Converter::cssToTwip($matches[1]);
|
||||
$styles['unit'] = \PhpOffice\PhpWord\Style\Table::WIDTH_TWIP;
|
||||
$styles['unit'] = \PhpOffice\PhpWord\SimpleType\TblWidth::TWIP;
|
||||
} elseif (preg_match('/([0-9]+)%/', $cValue, $matches)) {
|
||||
$styles['width'] = $matches[1] * 50;
|
||||
$styles['unit'] = \PhpOffice\PhpWord\Style\Table::WIDTH_PERCENT;
|
||||
$styles['unit'] = \PhpOffice\PhpWord\SimpleType\TblWidth::PERCENT;
|
||||
} elseif (preg_match('/([0-9]+)/', $cValue, $matches)) {
|
||||
$styles['width'] = $matches[1];
|
||||
$styles['unit'] = \PhpOffice\PhpWord\Style\Table::WIDTH_AUTO;
|
||||
$styles['unit'] = \PhpOffice\PhpWord\SimpleType\TblWidth::AUTO;
|
||||
}
|
||||
break;
|
||||
case 'border':
|
||||
|
|
|
|||
|
|
@ -17,6 +17,8 @@
|
|||
|
||||
namespace PhpOffice\PhpWord\Style;
|
||||
|
||||
use PhpOffice\PhpWord\SimpleType\TblWidth;
|
||||
|
||||
/**
|
||||
* Table cell style
|
||||
*/
|
||||
|
|
@ -123,7 +125,7 @@ class Cell extends Border
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
private $unit = Table::WIDTH_TWIP;
|
||||
private $unit = TblWidth::TWIP;
|
||||
|
||||
/**
|
||||
* Get vertical align.
|
||||
|
|
@ -308,7 +310,7 @@ class Cell extends Border
|
|||
*/
|
||||
public function setUnit($value)
|
||||
{
|
||||
$this->unit = $this->setEnumVal($value, array(Table::WIDTH_AUTO, Table::WIDTH_PERCENT, Table::WIDTH_TWIP), Table::WIDTH_TWIP);
|
||||
$this->unit = $this->setEnumVal($value, array(TblWidth::AUTO, TblWidth::PERCENT, TblWidth::TWIP), TblWidth::TWIP);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue