serialize($schema); $types_document->save(dirname(__FILE__) . '/../types.xml'); // only ONE // generate configdoc.xml, documents configuration directives $schema_serializer = new ConfigDoc_XMLSerializer_ConfigSchema(); $schema_document = $schema_serializer->serialize($schema); $schema_document->save('configdoc.xml'); // setup transformation $xsl_stylesheet = dirname(__FILE__) . "/../styles/$xsl_stylesheet_name.xsl"; $xslt_processor = new ConfigDoc_HTMLXSLTProcessor(); $xslt_processor->setParameters($parameters); $xslt_processor->importStylesheet($xsl_stylesheet); return $xslt_processor->transformToHTML($schema_document); } /** * Remove any generated files * @return boolean Success? */ public function cleanup() { return unlink('configdoc.xml'); } }