Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        admin
5
 * @package         pages
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher and higher
13
 * @version         $Id: modify.php 1625 2012-02-29 00:50:57Z Luisehahne $
14
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/admin/pages/modify.php $
15
 * @lastmodified    $Date: 2012-02-29 01:50:57 +0100 (Wed, 29 Feb 2012) $
16
 *
17
*/
18
/*
19
*/
20
// Create new admin object
21
require('../../config.php');
22
require_once(WB_PATH.'/framework/class.admin.php');
23

    
24
$admin = new admin('Pages', 'pages_modify');
25
/*
26
// Get page id
27
if(!isset($_GET['page_id']) || !is_numeric($_GET['page_id'])) {
28
	header("Location: index.php");
29
	exit(0);
30
} else {
31
	$page_id = (int)$_GET['page_id'];
32
}
33
*/
34
// Get page id
35
	$requestMethod = '_'.strtoupper($_SERVER['REQUEST_METHOD']);
36
	$page_id = intval(isset(${$requestMethod}['page_id'])) ? ${$requestMethod}['page_id'] : 0;
37
	if(	($page_id == 0)) {
38
		header("Location: index.php");
39
		exit(0);
40
	}
41

    
42
/*
43
if( (!($page_id = $admin->checkIDKEY('page_id', $page_id, $_SERVER['REQUEST_METHOD']))) )
44
{
45
	$admin->print_error($MESSAGE['GENERIC_SECURITY_ACCESS']);
46
}
47
*/
48

    
49
// Get perms
50
if(!$admin->get_page_permission($page_id,'admin')) {
51
	$admin->print_error($MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS']);
52
}
53

    
54
$sectionId = isset($_GET['wysiwyg']) ? htmlspecialchars($admin->get_get('wysiwyg')) : NULL;
55

    
56
// Get page details
57
$results_array=$admin->get_page_details($page_id);
58

    
59
// Get display name of person who last modified the page
60
$user=$admin->get_user_details($results_array['modified_by']);
61

    
62
// Convert the unix ts for modified_when to human a readable form
63

    
64
$modified_ts = ($results_array['modified_when'] != 0)
65
        ? $modified_ts = date(TIME_FORMAT.', '.DATE_FORMAT, $results_array['modified_when']+TIMEZONE)
66
        : 'Unknown';
67
// $ftan_module = $GLOBALS['ftan_module'];
68
// Setup template object, parse vars to it, then parse it
69
// Create new template object
70
$template = new Template(dirname($admin->correct_theme_source('pages_modify.htt')));
71
// $template->debug = true;
72
$template->set_file('page', 'pages_modify.htt');
73
$template->set_block('page', 'main_block', 'main');
74
$template->set_var('FTAN', $admin->getFTAN() );
75

    
76
$template->set_var(array(
77
			'PAGE_ID' => $results_array['page_id'],
78
			// 'PAGE_IDKEY' => $admin->getIDKEY($results_array['page_id']),
79
			'PAGE_IDKEY' => $results_array['page_id'],
80
			'PAGE_TITLE' => ($results_array['page_title']),
81
			'MENU_TITLE' => ($results_array['menu_title']),
82
			'ADMIN_URL' => ADMIN_URL,
83
			'WB_URL' => WB_URL,
84
			'THEME_URL' => THEME_URL
85
			));
86

    
87
$template->set_var(array(
88
			'MODIFIED_BY' => $user['display_name'],
89
			'MODIFIED_BY_USERNAME' => $user['username'],
90
			'MODIFIED_WHEN' => $modified_ts,
91
			'LAST_MODIFIED' => $MESSAGE['PAGES']['LAST_MODIFIED'],
92
			));
93

    
94
$template->set_block('main_block', 'show_modify_block', 'show_modify');
95
if($modified_ts == 'Unknown')
96
{
97
    $template->set_block('show_modify', '');
98
	$template->set_var('CLASS_DISPLAY_MODIFIED', 'hide');
99

    
100
} else {
101
	$template->set_var('CLASS_DISPLAY_MODIFIED', '');
102
    $template->parse('show_modify', 'show_modify_block', true);
103
}
104

    
105
// Work-out if we should show the "manage sections" link
106
$sql  = 'SELECT `section_id` FROM `'.TABLE_PREFIX.'sections` WHERE `page_id` = '.(int)$page_id.' ';
107
$sql .= 'AND `module` = "menu_link"';
108
$query_sections = $database->query($sql);
109

    
110
$template->set_block('main_block', 'show_section_block', 'show_section');
111
if($query_sections->numRows() > 0)
112
{
113
	$template->set_block('show_section', '');
114
	$template->set_var('DISPLAY_MANAGE_SECTIONS', 'display:none;');
115

    
116
} elseif(MANAGE_SECTIONS == 'enabled')
117
{
118

    
119
	$template->set_var('TEXT_MANAGE_SECTIONS', $HEADING['MANAGE_SECTIONS']);
120
    $template->parse('show_section', 'show_section_block', true);
121

    
122
} else {
123
	$template->set_block('show_section', '');
124
	$template->set_var('DISPLAY_MANAGE_SECTIONS', 'display:none;');
125

    
126
}
127

    
128
// Insert language TEXT
129
$template->set_var(array(
130
				'TEXT_CURRENT_PAGE' => $TEXT['CURRENT_PAGE'],
131
				'TEXT_CHANGE_SETTINGS' => $TEXT['CHANGE_SETTINGS'],
132
				'HEADING_MODIFY_PAGE' => $HEADING['MODIFY_PAGE']
133
				));
134

    
135
// Parse and print header template
136
$template->parse('main', 'main_block', false);
137
$template->pparse('output', 'page');
138

    
139
// get template used for the displayed page (for displaying block details)
140
if (SECTION_BLOCKS)
141
{
142
	$sql = "SELECT `template` from `" . TABLE_PREFIX . "pages` WHERE `page_id` = '$page_id' ";
143
	$result = $database->query($sql);
144
	if ($result && $result->numRows() == 1) {
145
		$row = $result->fetchRow();
146
		$page_template = ($row['template'] == '') ? DEFAULT_TEMPLATE : $row['template'];
147
		// include template info file if exists
148
		if (file_exists(WB_PATH . '/templates/' . $page_template . '/info.php'))
149
		{
150
			include_once(WB_PATH . '/templates/' . $page_template . '/info.php');
151
		}
152
	}
153
}
154

    
155
// Get sections for this page
156
$module_permissions = $_SESSION['MODULE_PERMISSIONS'];
157
// workout for edit only one section for faster pageloading
158
// Constant later set in wb_settings, in meantime defined in framework/initialize.php
159
$sql = 'SELECT `section_id`, `module`, `block` FROM `'.TABLE_PREFIX.'sections` ';
160

    
161
$sql .= (defined('EDIT_ONE_SECTION') && EDIT_ONE_SECTION && is_numeric($sectionId))
162
		? 'WHERE `section_id` = '.$sectionId
163
		: 'WHERE `page_id` = '.intval($page_id);
164
$sql .= ' ORDER BY position ASC';
165
$query_sections = $database->query($sql);
166
if($query_sections->numRows() > 0)
167
{
168
	while($section = $query_sections->fetchRow())
169
    {
170
		$section_id = $section['section_id'];
171
		$module = $section['module'];
172
		//Have permission?
173
		if(!is_numeric(array_search($module, $module_permissions)))
174
        {
175
			// Include the modules editing script if it exists
176
			if(file_exists(WB_PATH.'/modules/'.$module.'/modify.php'))
177
            {
178
				print /* '<a name="'.$section_id.'"></a>'. */"\n";
179
				// output block name if blocks are enabled
180
				if (SECTION_BLOCKS) {
181
					if (isset($block[$section['block']]) && trim(strip_tags(($block[$section['block']]))) != '')
182
                    {
183
						$block_name = htmlentities(strip_tags($block[$section['block']]));
184
					} else {
185
						if ($section['block'] == 1)
186
                        {
187
							$block_name = $TEXT['MAIN'];
188
						} else {
189
							$block_name = '#' . (int) $section['block'];
190
						}
191
					}
192

    
193
                    $sec_anchor = (defined( 'SEC_ANCHOR' ) && ( SEC_ANCHOR != '' )  ? 'id="'.SEC_ANCHOR.$section['section_id'].'"' : '');
194
					print '<div class="section-info" '.$sec_anchor.' ><b>' . $TEXT['BLOCK'] . ': </b>' . $block_name;
195
					print '<b>  Modul: </b>' . $section['module']." ";
196
					print '<b>  ID: </b>' . $section_id."</div>\n";
197

    
198
				}
199
				require(WB_PATH.'/modules/'.$module.'/modify.php');
200
			}
201
		}
202
	}
203
}
204

    
205
// Print admin footer
206
$admin->print_footer();
(9-9/22)