Last change
on this file since 428 was 239, checked in by luc, 9 years ago |
Admin: correzione visulaizzazione immissione dati spoglio per Chrome e Safari - Aggiornamento dell'editor da FCKeditor a CKeditor , accessibili anche a Chrome e Safari.
|
-
Property svn:executable
set to
*
|
File size:
1.1 KB
|
Rev | Line | |
---|
[239] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | /** This file is part of KCFinder project
|
---|
| 4 | *
|
---|
| 5 | * @desc Upload calling script
|
---|
| 6 | * @package KCFinder
|
---|
| 7 | * @version 2.51
|
---|
| 8 | * @author Pavel Tzonkov <pavelc@users.sourceforge.net>
|
---|
| 9 | * @copyright 2010, 2011 KCFinder Project
|
---|
| 10 | * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2
|
---|
| 11 | * @license http://www.opensource.org/licenses/lgpl-2.1.php LGPLv2
|
---|
| 12 | * @link http://kcfinder.sunhater.com
|
---|
| 13 | */
|
---|
| 14 |
|
---|
| 15 | ##############################################
|
---|
| 16 | # WL-CMS inclusion #
|
---|
| 17 | # adapted to Accessbile Portal #
|
---|
| 18 | # ================= #
|
---|
| 19 | # Copyright (c) 2010 by Weblord #
|
---|
| 20 | # http://www.weblord.it #
|
---|
| 21 | # http://www.webelite.it #
|
---|
| 22 | # http://www.portaleacccessibile.com #
|
---|
| 23 | ##############################################
|
---|
| 24 |
|
---|
| 25 | define('FILEMANAGER_FILE', true);
|
---|
| 26 | include_once "check.php";
|
---|
| 27 | if (check_admin()) {
|
---|
| 28 | require "core/autoload.php";
|
---|
| 29 | $uploader = new uploader();
|
---|
| 30 | $uploader->upload();
|
---|
| 31 | } else {
|
---|
| 32 | echo '<div style="margin-top:-10px">Accesso Negato</div>';
|
---|
| 33 | }
|
---|
| 34 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.