-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_export.php
executable file
·75 lines (63 loc) · 2.17 KB
/
admin_export.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
include 'tpl/auth.php';
include 'tpl/sql.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>growTENT :: Export & Backups</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Include the compiled Ratchet CSS -->
<link rel="stylesheet" href="ratchet-theme-ios.min.css">
<link rel="stylesheet" href="ratchet.min.css">
<link rel="stylesheet" href="app.css">
<!-- Include the compiled Ratchet JS -->
<!-- <script src="ratchet.js"></script> -->
<script src="html5-qrcode.min.js"></script>
</head>
<body>
<!-- Make sure all your bars are the first things in your <body> -->
<header class="bar bar-nav">
<a href="admin.php"><button class="btn btn-link btn-nav pull-left">
<span class="icon icon-home"></span>
Home
</button></a>
<h1 class="title">Export & Backups</h1>
</header>
<!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) -->
<div class="content">
<p class="content-padded" align='center'>Create and download historical backups</p>
<?php if($savesuccess=='true'){ echo "<p class='content-padded' align='center'><font color='red'>Saved!</font></p>";} ?>
<div class="card">
<ul class="table-view">
<li class="table-view-cell">
<a class="navigate-right" href="admin_export_backupdb.php">
Backup database
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_export_backupqr.php">
Backup QR codes
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_export_backupdoc.php">
Backup Procedural documents
</a>
</li>
<li class="table-view-divider"></li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_export_view_backups.php">
View all backups
</a>
</li>
</ul>
</div>
</div>
</body>
</html>