-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpfs.php
More file actions
48 lines (40 loc) · 836 Bytes
/
pfs.php
File metadata and controls
48 lines (40 loc) · 836 Bytes
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
<?PHP
/* ====================
Seditio - Website engine
Copyright Neocrome & Seditio Team
http://www.neocrome.net
http://www.seditiocms.com
[BEGIN_SED]
File=pfs.php
Version=177
Updated=2015-feb-06
Type=Core
Author=Neocrome
Description=PFS loader
[END_SED]
==================== */
define('SED_CODE', TRUE);
define('SED_PFS', TRUE);
$location = 'PFS';
$z = 'pfs';
require('system/functions.php');
require('system/config.extensions.php');
require('datas/config.php');
require('system/common.php');
sed_dieifdisabled($cfg['disable_pfs']);
switch($m)
{
case 'view':
require('system/core/pfs/pfs.view.inc.php');
break;
case 'edit':
require('system/core/pfs/pfs.edit.inc.php');
break;
case 'editfolder':
require('system/core/pfs/pfs.editfolder.inc.php');
break;
default:
require('system/core/pfs/pfs.inc.php');
break;
}
?>