-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (35 loc) · 1.5 KB
/
index.php
File metadata and controls
37 lines (35 loc) · 1.5 KB
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
<?php
header("Content-type: text/html; charset=utf-8");
date_default_timezone_set('Asia/Tbilisi');
@include "backup.php";
$main_options = array(
"_root"=>$_SERVER['DOCUMENT_ROOT'],
"_path"=>"_temp",
"slug"=>array(
"home"=>"index.php",
"addlink"=>"index.php?addbackup=true",
"removelink"=>"index.php?removebackup=true",
),
"uploadable_perm"=>"0755",
"lang"=>array(
"name"=>"დასახელება",
"backup"=>"რეზერვი",
"date"=>"თარიღი",
"action"=>"მოქმედება",
"addlink"=>"დამატება",
"errorMsg"=>"მოხდა შეცდომა !",
"errorMsgPerm"=>"მოხდა შეცდომა ! <br /><br /><b>დირექტორიებს: </b> <br /> %s <br />%s/%s <br />%s/%s <br />%s/%s <br /><br />უნდა ჰქონდეს %s ნებართვა !",
"success"=>"ოპერაცია წარმატებით დასრულდა !",
"delBackup"=>"გნებავთ წაშალოთ მონაცემი ?",
"delete"=>"წაშლა",
"download"=>"ჩამოტვირთვა",
"download_pendding"=>"ფაილი ვერ მოიძებნა",
"back"=>"უკან",
"addBackup"=>"რეზერვის დამატება",
"addBackupTitle"=>"რეზერვის სახელი",
"chooseDir"=>"აირჩიეთ დირექტორია"
)
);
$backup = new studio404\backup($main_options);
$backup->load();
?>