1
|
<?php
|
2
|
/**
|
3
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
|
4
|
*
|
5
|
* This program is free software: you can redistribute it and/or modify
|
6
|
* it under the terms of the GNU General Public License as published by
|
7
|
* the Free Software Foundation, either version 3 of the License, or
|
8
|
* (at your option) any later version.
|
9
|
*
|
10
|
* This program is distributed in the hope that it will be useful,
|
11
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
* GNU General Public License for more details.
|
14
|
*
|
15
|
* You should have received a copy of the GNU General Public License
|
16
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17
|
*
|
18
|
* @category modules
|
19
|
* @package test
|
20
|
* @subpackage test
|
21
|
* @author Dietmar Wöllbrink
|
22
|
* @copyright WebsiteBaker Org. e.V.
|
23
|
* @link http://websitebaker.org/
|
24
|
* @license http://www.gnu.org/licenses/gpl.html
|
25
|
* @platform WebsiteBaker 2.8.3
|
26
|
* @requirements PHP 5.4 and higher
|
27
|
* @version $Id: delete_archiv.php 2 2017-07-02 15:14:29Z Manuela $
|
28
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb/2.10.x/trunk/modules/droplets/commands/delete_archiv.php $
|
29
|
* @lastmodified $Date: 2017-07-02 17:14:29 +0200 (Sun, 02 Jul 2017) $
|
30
|
*
|
31
|
*/
|
32
|
/* -------------------------------------------------------- */
|
33
|
// Must include code to stop this file being accessed directly
|
34
|
if(defined('WB_PATH') == false) { die('Cannot access '.basename(__DIR__).'/'.basename(__FILE__).' directly'); }
|
35
|
/* -------------------------------------------------------- */
|
36
|
|
37
|
if( !$oApp->checkFTAN() ){
|
38
|
$oApp->print_error($oTrans->MESSAGE_GENERIC_SECURITY_ACCESS, $ToolUrl );
|
39
|
exit();
|
40
|
}
|
41
|
if ( @$aRequestVars['zipFiles'] == '' ) {
|
42
|
msgQueue::add( $oTrans->DROPLET_MESSAGE_GENERIC_MISSING_ARCHIVE_FILE );
|
43
|
} else {
|
44
|
|
45
|
$sArchFile = $oReg->AppPath.$aRequestVars['zipFiles'];
|
46
|
$unlink = @unlink($sArchFile);
|
47
|
|
48
|
if( $unlink==false ) {
|
49
|
msgQueue::add( $oTrans->DROPLET_MESSAGE_ARCHIVE_NOT_DELETED );
|
50
|
} else {
|
51
|
msgQueue::add( $oTrans->DROPLET_MESSAGE_ARCHIVE_DELETED, true );
|
52
|
}
|
53
|
|
54
|
}
|
55
|
|