<?php
/**
* This script is used for performing the backups.
* It is meant to be run on the command line, but will probably work over the web too.
*/
define('EXECUTION_CONTEXT', 'system'); // tells the init script how to create the runtime environment
define('HANDLER_SUBCLASS', 'backend'); // which specific system object to load
require_once("php_env.php"); // gives us WEB_ROOT
if (!defined('WEB_ROOT')) throw new ErrorException("WEB_ROOT constant was not found");
require_once("init.php"); // this will call handle()
$handler->handle();
?>