1<?php
2/*
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
5 *
6 * == BEGIN LICENSE ==
7 *
8 * Licensed under the terms of any of the following licenses at your
9 * choice:
10 *
11 *  - GNU General Public License Version 2 or later (the "GPL")
12 *    http://www.gnu.org/licenses/gpl.html
13 *
14 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15 *    http://www.gnu.org/licenses/lgpl.html
16 *
17 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18 *    http://www.mozilla.org/MPL/MPL-1.1.html
19 *
20 * == END LICENSE ==
21 *
22 * This is the "File Uploader" for PHP.
23 */
24
25require('./config.php') ;
26require('./util.php') ;
27require('./io.php') ;
28require('./commands.php') ;
29require('./phpcompat.php') ;
30require_once('./SafeFN.class.php');
31
32function SendError( $number, $text )
33{
34	SendUploadResults( $number, '', '', $text ) ;
35}
36
37
38// Check if this uploader has been enabled.
39if ( !$Config['Enabled'] )
40	SendUploadResults( '1', '', '', 'This file uploader is disabled. Please check the "editor/filemanager/connectors/php/config.php" file' ) ;
41
42$sCommand = 'QuickUpload' ;
43
44// The file type (from the QueryString, by default 'File').
45$sType = isset( $_GET['Type'] ) ? $_GET['Type'] : 'File' ;
46
47$sCurrentFolder	= "/" ;
48
49// Is enabled the upload?
50if ( ! IsAllowedCommand( $sCommand ) )
51	SendUploadResults( '1', '', '', 'The ""' . $sCommand . '"" command isn\'t allowed' ) ;
52
53// Check if it is an allowed type.
54if ( !IsAllowedType( $sType ) )
55    SendUploadResults( 1, '', '', 'Invalid type specified' ) ;
56
57
58FileUpload( $sType, $sCurrentFolder, $sCommand )
59
60?>
61