. */ require_once 'phing/TaskPhing.php'; require_once 'phing/tasks/ext/svn/SvnBaseTask.php'; /** * Exports/checks out a repository to a local directory * * @author Michiel Rook * @version $Id: SvnExportTask.php 3076 2006-12-18 08:52:12Z fabien $ * @package phing.tasks.ext.svn * @see VersionControl_SVN * @since 2.1.0 */ class SvnExportTask extends SvnBaseTask { private $toDir = ""; /** * Sets the path to export/checkout to */ function setToDir($toDir) { $this->toDir = $toDir; } /** * Returns the path to export/checkout to */ function getToDir() { return $this->toDir; } /** * The main entry point * * @throws BuildException */ function main() { $this->setup('export'); $this->log("Exporting SVN repository to '" . $this->toDir . "'"); $this->run(array($this->toDir)); } } ?>