exportSystemView() public static method

Recursively export data to an xml stream.
See also: SessionInterface::exportSystemView
public static exportSystemView ( PHPCR\NodeInterface $node, PHPCR\NamespaceRegistryInterface $ns, resource $stream, boolean $skipBinary, boolean $noRecurse )
$node PHPCR\NodeInterface The node to start exporting at
$ns PHPCR\NamespaceRegistryInterface The namespace registry to export namespaces too
$stream resource as in exportSystemView
$skipBinary boolean as in exportSystemView
$noRecurse boolean as in exportSystemView
コード例 #1
0
ファイル: Session.php プロジェクト: frogriotcom/jackalope
 /**
  * {@inheritDoc}
  *
  * @api
  */
 public function exportSystemView($absPath, $stream, $skipBinary, $noRecurse)
 {
     ImportExport::exportSystemView($this->getNode($absPath), $this->workspace->getNamespaceRegistry(), $stream, $skipBinary, $noRecurse);
 }