PHP Classes

File: WIAdmin/WIPlugin/WIUpload/server/php/index.php

Recommend this page to a friend!
  Classes of Jules Warner   WICMS   WIAdmin/WIPlugin/WIUpload/server/php/index.php   Download  
File: WIAdmin/WIPlugin/WIUpload/server/php/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: WICMS
Database driven content management system with PDO
Author: By
Last change:
Date: 7 years ago
Size: 1,255 bytes
 

Contents

Class file image Download
<?php
/*
 * jQuery File Upload Plugin PHP Example 5.7
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2010, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

error_reporting(E_ALL | E_STRICT);

require(
'upload.class.php');

$upload_handler = new UploadHandler();

header('Pragma: no-cache');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Content-Disposition: inline; filename="files.json"');
header('X-Content-Type-Options: nosniff');
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: OPTIONS, HEAD, GET, POST, PUT, DELETE');
header('Access-Control-Allow-Headers: X-File-Name, X-File-Type, X-File-Size');

switch (
$_SERVER['REQUEST_METHOD']) {
    case
'OPTIONS':
        break;
    case
'HEAD':
    case
'GET':
       
$upload_handler->get();
        break;
    case
'POST':
        if (isset(
$_REQUEST['_method']) && $_REQUEST['_method'] === 'DELETE') {
           
$upload_handler->delete();
        } else {
           
$upload_handler->post();
        }
        break;
    case
'DELETE':
       
$upload_handler->delete();
        break;
    default:
       
header('HTTP/1.1 405 Method Not Allowed');
}