Project

General

Profile

1
<?php
2
/***************************************************************************
3
* SVN Version information:
4
*
5
* $Id: save.php 1222 2009-12-28 03:27:15Z Luisehahne $
6
*
7
*****************************************************************************
8
*
9
*                          WebsiteBaker
10
*
11
* WebsiteBaker Project <http://www.websitebaker2.org/>
12
* Copyright (C) 2009, Website Baker Org. e.V.
13
*         http://start.websitebaker2.org/impressum-datenschutz.php
14
* Copyright (C) 2004-2009, Ryan Djurovich
15
*
16
*                        About WebsiteBaker
17
*
18
* Website Baker is a PHP-based Content Management System (CMS)
19
* designed with one goal in mind: to enable its users to produce websites
20
* with ease.
21
*
22
*****************************************************************************
23
*
24
*****************************************************************************
25
*                        LICENSE INFORMATION
26
*
27
* WebsiteBaker is free software; you can redistribute it and/or
28
* modify it under the terms of the GNU General Public License
29
* as published by the Free Software Foundation; either version 2
30
* of the License, or (at your option) any later version.
31
*
32
* WebsiteBaker is distributed in the hope that it will be useful,
33
* but WITHOUT ANY WARRANTY; without even the implied warranty of
34
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
35
* See the GNU General Public License for more details.
36
*
37
* You should have received a copy of the GNU General Public License
38
* along with this program; if not, write to the Free Software
39
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
40
****************************************************************************
41
*
42
*****************************************************************************
43
*                   WebsiteBaker Extra Information
44
*
45
*
46
*
47
*
48
*****************************************************************************/
49

    
50
/**
51
 *
52
 * @category     modules
53
 * @package      menu_link
54
 * @author       Ryan Djurovich
55
 * @copyright    2004-2009, Ryan Djurovich
56
 * @copyright    2009, Website Baker Org. e.V.
57
 * @version      $Id: save.php 1222 2009-12-28 03:27:15Z Luisehahne $
58
 * @platform     WebsiteBaker 2.8.x
59
 * @requirements >= PHP 4.3.4
60
 * @license      http://www.gnu.org/licenses/gpl.html
61
 *
62
 *
63
 */
64

    
65
require_once('../../config.php');
66

    
67
// Include WB admin wrapper script
68
$update_when_modified = true; // Tells script to update when this page was last updated
69
require(WB_PATH.'/modules/admin.php');
70

    
71
// Update id, anchor and target
72
if(isset($_POST['menu_link'])) {
73
	$foreign_page_id = $admin->add_slashes($_POST['menu_link']);
74
	$page_target = $admin->add_slashes($_POST['page_target']);
75
	$url_target = $admin->add_slashes($_POST['target']);
76
	$r_type = $admin->add_slashes($_POST['r_type']);
77
	if(isset($_POST['extern']))
78
		$extern = $admin->add_slashes($_POST['extern']);
79
	else
80
		$extern='';
81

    
82
	$table_pages = TABLE_PREFIX.'pages';
83
	$table_mod = TABLE_PREFIX.'mod_menu_link';
84
	$database->query("UPDATE `$table_pages` SET `target` = '$url_target' WHERE `page_id` = '$page_id'");
85
	$database->query("UPDATE `$table_mod` SET `target_page_id` = '$foreign_page_id', `anchor` = '$page_target', `extern` = '$extern', `redirect_type` = '$r_type' WHERE `page_id` = '$page_id'");
86
}
87

    
88
// Check if there is a database error, otherwise say successful
89
if($database->is_error()) {
90
	$admin->print_error($database->get_error(), $js_back);
91
} else {
92
	$admin->print_success($MESSAGE['PAGES']['SAVED'], ADMIN_URL.'/pages/modify.php?page_id='.$page_id);
93
}
94

    
95
// Print admin footer
96
$admin->print_footer();
97

    
98
?>
(7-7/9)