-
Notifications
You must be signed in to change notification settings - Fork 17
/
settings_screens.inc.php
101 lines (72 loc) · 3.66 KB
/
settings_screens.inc.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
// -------------------------------------------------------------------------------
// | net2ftp: a web based FTP client |
// | Copyright (c) 2003-2013 by David Gartner |
// | |
// -------------------------------------------------------------------------------
// | |
// | Enter your settings and preferences below. |
// | |
// | The structure of each line is like this: |
// | $net2ftp_settings["setting_name"] = "setting_value"; |
// | |
// | BE CAREFUL WHEN EDITING THE FILE: ONLY EDIT THE setting_value, AND DO NOT |
// | ERASE THE " OR THE ; CHARACTERS. |
// -------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------
// Functions on the Browse screen - TOP LEFT
// Indicate which functions are enabled or disabled
// ----------------------------------------------------------------------------------
// Create new directory
$net2ftp_settings["functionuse_newdir"] = "yes";
// Create new file
$net2ftp_settings["functionuse_newfile"] = "yes";
// Upload (upload, upload-and-unzip)
$net2ftp_settings["functionuse_upload"] = "yes";
// Java upload
$net2ftp_settings["functionuse_jupload"] = "yes";
// Create a website from pre-made HTML templates
$net2ftp_settings["functionuse_easyWebsite"] = "no";
// Bookmark a page
$net2ftp_settings["functionuse_bookmark"] = "yes";
// Install functions
$net2ftp_settings["functionuse_install"] = "no";
// Advanced functions
$net2ftp_settings["functionuse_advanced"] = "no";
// ----------------------------------------------------------------------------------
// Functions on the Browse screen - TOP RIGHT
// Indicate which functions are enabled or disabled
// ----------------------------------------------------------------------------------
// Copy, move and delete directories and files
$net2ftp_settings["functionuse_copy"] = "yes";
$net2ftp_settings["functionuse_move"] = "yes";
$net2ftp_settings["functionuse_delete"] = "yes";
// Rename
$net2ftp_settings["functionuse_rename"] = "yes";
// Chmod
$net2ftp_settings["functionuse_chmod"] = "yes";
// Zip-and-download
$net2ftp_settings["functionuse_downloadzip"] = "yes";
// Unzip
$net2ftp_settings["functionuse_unzip"] = "yes";
// Zip-and-save, zip-and-email
$net2ftp_settings["functionuse_zip"] = "yes";
// Calculate size
$net2ftp_settings["functionuse_calculatesize"] = "yes";
// Find string
$net2ftp_settings["functionuse_findstring"] = "yes";
// ----------------------------------------------------------------------------------
// Functions on the Browse screen - ROW LEVEL
// Indicate which functions are enabled or disabled
// ----------------------------------------------------------------------------------
// Download file
$net2ftp_settings["functionuse_downloadfile"] = "yes";
// View file
$net2ftp_settings["functionuse_view"] = "yes";
// Edit file
$net2ftp_settings["functionuse_edit"] = "yes";
// Update file (beta function)
$net2ftp_settings["functionuse_update"] = "no";
// Open file
$net2ftp_settings["functionuse_open"] = "yes";
?>