Source for file html.php
Documentation is available at html.php
require_once 'OpenDocument.php'; // open document class
foreach ($obj->getChildren () as $child) {
case 'OpenDocument_TextElement':
case 'OpenDocument_Paragraph':
case 'OpenDocument_Span':
case 'OpenDocument_Heading':
$html .= '<h' . $child->level . '>';
$html .= '</h' . $child->level . '>';
case 'OpenDocument_Hyperlink':
$html .= '<a href="' . $child->location . '" target="' . $child->target . '">';
$html .= '<del>unknown element</del>';
Documentation generated on Mon, 11 Mar 2019 15:06:45 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|