html2richtext.inc in Sheetnode 7
Same filename and directory in other branches
Class to convert an HTML fragment to a fully-parsed array of styles. Uses TCDPF which is included in PHPExcel.
File
modules/sheetnode_phpexcel/html2richtext.incView source
<?php
/**
* @file
* Class to convert an HTML fragment to a fully-parsed array of styles.
* Uses TCDPF which is included in PHPExcel.
*/
class Sheetnode_PHPExcel_HTML2RichText extends TCPDF {
var $html;
public function Sheetnode_PHPExcel_HTML2RichText($html) {
$this->html = $html;
$this
->setPageUnit('px');
}
public function convert($cell) {
$dom = $this
->getHtmlDomArray($this->html);
if (empty($dom)) {
return FALSE;
}
$rtf = new PHPExcel_RichText();
$run = $rtf
->createTextRun();
foreach ($dom as $entry) {
if ($entry['tag']) {
// HTML tag
if (!$entry['opening']) {
continue;
}
// Defer the work to third-party implementations.
module_invoke_all('sheetnode_phpexcel_html2richtext', $run, $cell, $entry, $this);
}
else {
// text
if (empty($entry['value'])) {
continue;
}
$run
->setText($entry['value']);
$run = $rtf
->createTextRun();
}
drupal_alter('sheetnode_phpexcel_html2richtext', $run, $cell, $entry, $this);
}
return $rtf;
}
}
Classes
Name | Description |
---|---|
Sheetnode_PHPExcel_HTML2RichText | @file Class to convert an HTML fragment to a fully-parsed array of styles. Uses TCDPF which is included in PHPExcel. |