"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) fasm source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "en.inc" see the
Fossies "Dox" file reference documentation.
1 <?
2 /*
3 This file is part of Event Horizon (EVH).
4
5 EVH is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 EVH is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 // ------------------------------------------
20 // Application name, description and purpose
21 // ------------------------------------------
22 $appname = 'Event Horizon';
23 $appdesc = 'A single-use file transfer system';
24
25 $apppurpose = '<em>' . $appname . ': According to general relativity, an event horizon is a boundary in spacetime, defined with respect to an observer,
26 beyond which events cannot affect the observer. Light emitted beyond the horizon can never reach the observer, and
27 anything that passes through the horizon from the observer\'s side is never seen again.</em> (Source:
28 <a href="http://en.wikipedia.org/wiki/Event_horizon" target=blank>Wikipedia:Event Horizon</a>)<br>
29 <br><!--
30 ' . $appname . ' was developed to allow the secure and timely transfer of information between Morinda Holdings /
31 Tahitian Noni International and its external contacts. As such, this system is to be used by
32 authorized parties only. Any unauthorized use will be logged and action taken against any offending
33 users.<br>
34 <br>
35 Why is it named ' . $appname . '? Like all creative applications, the name hints to the application\'s purpose.
36 This application is expected to behave, in some ways, similar to a black hole. -->';
37
38
39 // --------------------------------------
40 // Navigation links at top of pages
41 // --------------------------------------
42 $homelinktext = 'Home';
43 $uploadlinktext = 'Upload';
44 $downloadlinktext = 'Download';
45 $moddellinktext = 'Modify/Delete';
46 $helplinktext = 'Help';
47 $sep = ' .:. ';
48
49
50 // --------------------------------------
51 // Footer text
52 // --------------------------------------
53 $footertext = 'This site is for official ' . $companyname . ' file transfers only.';
54 $historyfootertext = 'All file transfers are logged.';
55
56 // -------------------------------------------
57 // Options below are for the specified pages
58
59 // --------------------------------------
60 // Home page
61 // --------------------------------------
62 $menutitle = 'Menu';
63 $uploadnewfile = 'Upload new file';
64 $downloadfile = 'Download existing file';
65 $modifyfile = 'Modify existing file';
66
67 // --------------------------------------
68 // Upload page
69 // --------------------------------------
70 $notesheading = 'NOTES:';
71 $note1 = 'All fields are mandatory except for the file description. If you have more than one file to upload,
72 combine all files into one (using zip or a similar program). Then, upload the resulting file.';
73 $note2 = 'For multiple email addresses be sure all addresses are separated with commas (,).';
74 $note3 = 'The availability period is how long the file will be kept on the system before it is deleted. Any
75 deleted files (manual or scheduled) cannot be recovered.';
76 $note4 = '<font color=red>File sizes are limited to under 2GB</font>';
77
78 // --------------------------------------
79 // Upload2 page
80 // --------------------------------------
81 $u2note1 = $note1;
82 $u2note2 = $note2;
83 $u2note3 = $note3;
84
85 $emailfieldtitle = 'Your email';
86 $destemailfieldtitle = 'Destination Email(s)';
87 $availfieldtitle = 'Availability Period';
88 $filefieldtitle = 'File';
89 $descfieldtitle = 'Description';
90 $largefilesdisclaimer = 'Large files may take a very long time to upload. During this time, the browser will appear busy.';
91
92 $nofilefounderror = '<font color=red>Error: No File Found!</font><p>One of three things just happened:
93 <ol>
94 <li>No file was uploaded</li>
95 <li>The file was uploaded into the wrong FTP directory</li>
96 <li>An internal error occurred.</li>
97 </ol>
98 NOTE: You can go "Back" and fix the problem then re-click "Next".';
99
100 // --------------------------------------
101 // FTP Transfer page
102 // --------------------------------------
103 $ftpheading = 'INSTRUCTIONS:';
104 $ftpnote1 = 'Using the account information below, upload the file to the specified server and path.';
105 $ftpnote2 = 'Once the file upload is complete, please click the "Next" button to finish processing the file.';
106 $ftpnote3 = 'FTP uploads are still limited to a single file. So please create zip/sit/tar archives if you want to upload multiple files.';
107 $ftpnote4 = '<font color=red>If this process is not completed within 24-hours, the file will be deleted.</font>';
108
109 $ftpserverfieldtitle = 'FTP Server';
110 $ftpusernamefieldtitle = 'Login';
111 $ftppasswordfieldtitle = 'Password';
112 $ftppathfieldtitle = 'Path';
113
114 // --------------------------------------
115 // Sendfile page
116 // --------------------------------------
117 $sendnote1 = 'Your download should begin in less than 10 seconds.';
118 $sendnote2 = 'If your download does not start, use the information below to download your file.';
119
120 $ftpsendnote1 = 'Please use the information below to retrieve your file.';
121
122 $sendpathfieldtitle = 'Direct Download Link';
123 $sendfilenamefeldtitle = 'Filename';
124
125 // --------------------------------------
126 // Download page
127 // --------------------------------------
128 $emailfield2title = $emailfieldtitle;
129 $verification = 'Download';
130 $modification = 'Modification';
131
132 ?>