1 |
2
|
Manuela
|
<?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 droplets
|
20 |
|
|
* @subpackage copy_droplets
|
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.4
|
26 |
|
|
* @requirements PHP 5.4 and higher
|
27 |
|
|
* @version $Id$
|
28 |
|
|
* @filesource $HeadURL$
|
29 |
|
|
* @lastmodified $Date$
|
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 |
|
|
//$sTimeStamp = '_'.strftime('%Y%m%d_%H%M%S', time()+ TIMEZONE );
|
37 |
|
|
$sTimeStamp = '';
|
38 |
|
|
if ($iDropletAddId === false) {
|
39 |
|
|
$oApp->print_error('COPY_DROPLET::'.$oTrans->MESSAGE_GENERIC_SECURITY_ACCESS, $ToolUrl);
|
40 |
|
|
exit();
|
41 |
|
|
}
|
42 |
|
|
// Get header and footer
|
43 |
|
|
$sql = 'SELECT * FROM `'.TABLE_PREFIX.'mod_droplets` '
|
44 |
|
|
. 'WHERE `id` = '.$iDropletAddId;
|
45 |
|
|
$oDroplet = $oDb->query($sql);
|
46 |
|
|
$aCopyDroplet = $oDroplet->fetchRow(MYSQLI_ASSOC);
|
47 |
|
|
// $aCopyDroplet['name'] = '';
|
48 |
|
|
$content = (htmlspecialchars($aCopyDroplet['code']));
|
49 |
|
|
$droplet_id = $oApp->getIDKEY(0);
|