blob: c885dfd705cc35a81eb044cfabd0075917c7254f [file] [log] [blame]
<?php
require_once 'tutorial_autoload.php';
$store = new ezcTreeXmlInternalDataStore();
$tree = new ezcTreeXml( 'files/example1.xml', $store );
$visitor = new ezcTreeVisitorGraphViz;
$tree->accept( $visitor );
file_put_contents( 'files/graphviz.dot', (string) $visitor );
?>