tinymce-editor/Application/fileman/php/deletefile.php

41 lines
1.3 KiB
PHP
Raw Normal View History

2016-08-01 14:20:20 +02:00
<?php
/*
2023-04-10 22:47:06 +02:00
RoxyFileman - web based file manager. Ready to use with CKEditor, TinyMCE.
2016-08-01 14:20:20 +02:00
Can be easily integrated with any other WYSIWYG editor or CMS.
Copyright (C) 2013, RoxyFileman.com - Lyubomir Arsov. All rights reserved.
For licensing, see LICENSE.txt or http://RoxyFileman.com/license
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Contact: Lyubomir Arsov, liubo (at) web-lobby.com
*/
include '../system.inc.php';
include 'functions.inc.php';
verifyAction('DELETEFILE');
checkAccess('DELETEFILE');
2022-06-09 21:11:02 +02:00
$path = RoxyFile::FixPath(trim($_POST['f']));
2016-08-01 14:20:20 +02:00
verifyPath($path);
2023-04-10 22:25:46 +02:00
if (is_file(fixPath($path))) {
if (unlink(fixPath($path))) {
echo getSuccessRes();
} else {
echo getErrorRes(t('E_DeletеFile') . ' ' . basename($path));
}
} else {
echo getErrorRes(t('E_DeleteFileInvalidPath'));
2023-04-10 22:47:06 +02:00
}