mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
940deb08a9
- the backup is independent of the used DB and can eg. be used to port an install to an other DB type - autom. backup before upgrades of the DB structure - installing backups instead an installation from scratch - own backup screen in setup and admin to: + shedule repeating backups + up- and download of backups + creating and restoring backups
54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare - Admin - DB backup and restore *
|
|
* http://www.egroupware.org *
|
|
* Written by RalfBecker@outdoor-training.de *
|
|
* -------------------------------------------- *
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
* under the terms of the GNU General Public License as published by the *
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
class admin_db_backup
|
|
{
|
|
var $public_functions = array(
|
|
'do_backup' => true,
|
|
'index' => true,
|
|
);
|
|
var $db_backup;
|
|
|
|
function admin_db_backup()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Method for sheduled backups, called via asynservice
|
|
*/
|
|
function do_backup()
|
|
{
|
|
$this->db_backup = CreateObject('phpgwapi.db_backup');
|
|
|
|
if ($f = $this->db_backup->fopen_backup())
|
|
{
|
|
$this->db_backup->backup($f);
|
|
fclose($f);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* includes setup's db_backup to display/access it inside admin
|
|
*/
|
|
function index()
|
|
{
|
|
$tpl_root = PHPGW_SERVER_ROOT.'/setup/templates/default';
|
|
$self = $GLOBALS['phpgw']->link('/index.php',array('menuaction'=>'admin.admin_db_backup.index'));
|
|
$GLOBALS['phpgw']->translation->add_app('setup');
|
|
|
|
include PHPGW_SERVER_ROOT.'/setup/db_backup.php';
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
|
}
|
|
} |