Project

General

Profile

1
<?php
2

    
3
/****************************************************************************
4
* SVN Version information:
5
*
6
* $Id: tool.php 1224 2009-12-28 03:50:04Z Luisehahne $
7
*
8
*****************************************************************************
9
*
10
*****************************************************************************
11
*                          WebsiteBaker
12
*
13
* WebsiteBaker Project <http://www.websitebaker2.org/>
14
* Copyright (C) 2009, Website Baker Org. e.V.
15
*         http://start.websitebaker2.org/impressum-datenschutz.php
16
* Copyright (C) 2004-2009, Ryan Djurovich
17
*
18
*                        About WebsiteBaker
19
*
20
* Website Baker is a PHP-based Content Management System (CMS)
21
* designed with one goal in mind: to enable its users to produce websites
22
* with ease.
23
*
24
*****************************************************************************
25
*
26
*****************************************************************************
27
*                   WebsiteBaker Extra Information (where needed)
28
*
29
*
30
*
31
*****************************************************************************
32
*
33
*****************************************************************************
34
*                        LICENSE INFORMATION
35
*
36
* WebsiteBaker is free software; you can redistribute it and/or
37
* modify it under the terms of the GNU General Public License
38
* as published by the Free Software Foundation; either version 2
39
* of the License, or (at your option) any later version.
40
*
41
* WebsiteBaker is distributed in the hope that it will be useful,
42
* but WITHOUT ANY WARRANTY; without even the implied warranty of
43
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
44
* See the GNU General Public License for more details.
45
*
46
* You should have received a copy of the GNU General Public License
47
* along with this program; if not, write to the Free Software
48
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
49
*****************************************************************************/
50
/**
51
 *
52
 * @category     modules
53
 * @package      backup
54
 * @author       Ryan Djurovich
55
 * @copyright    2004-2009, Ryan Djurovich
56
 * @copyright    2009, Website Baker Org. e.V.
57
 * @version      $Id: tool.php 1224 2009-12-28 03:50:04Z Luisehahne $
58
 * @platform     WebsiteBaker 2.8.x
59
 * @requirements >= PHP 4.3.4
60
 * @license      http://www.gnu.org/licenses/gpl.html
61
 *
62
 *
63
 */
64

    
65
// Direct access prevention
66
defined('WB_PATH') OR die(header('Location: ../index.php'));
67

    
68
// check if module language file exists for the language set by the user (e.g. DE, EN)
69
if(!file_exists(WB_PATH .'/modules/backup/languages/'.LANGUAGE .'.php')) {
70
	// no module language file exists for the language set by the user, include default module language file EN.php
71
	require_once(WB_PATH .'/modules/backup/languages/EN.php');
72
} else {
73
	// a module language file exists for the language defined by the user, load it
74
	require_once(WB_PATH .'/modules/backup/languages/'.LANGUAGE .'.php');
75
}
76

    
77
// Show form
78
?>
79
<br />
80
<form name="prompt" method="post" action="<?php echo WB_URL; ?>/modules/backup/backup-sql.php">
81
		<input type="radio" checked="checked" name="tables" value="ALL"><?php echo $MOD_BACKUP['BACKUP_ALL_TABLES']; ?><br>
82
		<input type="radio" name="tables" value="WB"><?php echo $MOD_BACKUP['BACKUP_WB_SPECIFIC']; ?><br><br> 
83
	<input type="submit" name="backup" value="<?php echo $TEXT['BACKUP_DATABASE']; ?>" onClick="javascript: if(!confirm('<?php echo $MESSAGE['GENERIC']['PLEASE_BE_PATIENT']; ?>')) { return false; }" />
84
</form>
(4-4/4)