-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFSarchive.php
More file actions
executable file
·32 lines (29 loc) · 2.13 KB
/
FSarchive.php
File metadata and controls
executable file
·32 lines (29 loc) · 2.13 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
<?php
/****************** DO NOT REMOVE OR ALTER THIS HEADER ******************************
* *
* Product: FSnode *
* FSnode is a node-based Uniform FileSystem handler, written in PHP. It allows *
* you to access all kind of file systems in the exact same manner, with the same *
* simple commands. You can write your web application once and let users switch *
* file system/platform; mount through URI. *
* *
* Latest version to download: *
* https://github.com/sentfanwyaerda/FSnode *
* *
* Documentation: *
* http://sent.wyaerda.org/FSnode/ *
* https://github.com/sentfanwyaerda/FSnode/blob/master/manual/Introduction.md *
* *
* Authors: *
* Sent fan Wyærda (fsnode@sent.wyaerda.org) [creator, main] *
* *
* License: cc-by-nd *
* Creative Commons, Attribution-No Derivative Works 3.0 Unported *
* http://creativecommons.org/licenses/by-nd/3.0/ *
* http://creativecommons.org/licenses/by-nd/3.0/legalcode *
* *
****************** CHANGES IN THE CODE ARE AT OWN RISK *****************************/
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'FSfile.php');
class FSarchive extends FSfile {
}
?>