Revision 1289
Added by kweitzel almost 15 years ago
modify.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project <http://www.websitebaker.org/> |
|
8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
*/ |
|
25 |
|
|
26 |
// Get page id |
|
27 |
if(!isset($_GET['page_id']) OR !is_numeric($_GET['page_id'])) { |
|
28 |
header("Location: index.php"); |
|
29 |
exit(0); |
|
30 |
} else { |
|
31 |
$page_id = $_GET['page_id']; |
|
32 |
} |
|
33 |
|
|
34 |
// Create new admin object |
|
35 |
require('../../config.php'); |
|
36 |
require_once(WB_PATH.'/framework/class.admin.php'); |
|
37 |
$admin = new admin('Pages', 'pages_modify'); |
|
38 |
|
|
39 |
// Get perms |
|
40 |
if(!$admin->get_page_permission($page_id,'admin')) { |
|
41 |
$admin->print_error($MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS']); |
|
42 |
} |
|
43 |
|
|
44 |
// Get page details |
|
45 |
$results_array=$admin->get_page_details($page_id); |
|
46 |
|
|
47 |
// Get display name of person who last modified the page |
|
48 |
$user=$admin->get_user_details($results_array['modified_by']); |
|
49 |
|
|
50 |
// Convert the unix ts for modified_when to human a readable form |
|
51 |
if($results_array['modified_when'] != 0) { |
|
52 |
$modified_ts = gmdate(TIME_FORMAT.', '.DATE_FORMAT, $results_array['modified_when']+TIMEZONE); |
|
53 |
} else { |
|
54 |
$modified_ts = 'Unknown'; |
|
55 |
} |
|
56 |
|
|
57 |
// Include page info script |
|
58 |
$template = new Template(THEME_PATH.'/templates'); |
|
59 |
$template->set_file('page', 'pages_modify.htt'); |
|
60 |
$template->set_block('page', 'main_block', 'main'); |
|
61 |
$template->set_var(array( |
|
62 |
'PAGE_ID' => $results_array['page_id'], |
|
63 |
'PAGE_TITLE' => ($results_array['page_title']), |
|
64 |
'MODIFIED_BY' => $user['display_name'], |
|
65 |
'MODIFIED_BY_USERNAME' => $user['username'], |
|
66 |
'MODIFIED_WHEN' => $modified_ts, |
|
67 |
'ADMIN_URL' => ADMIN_URL, |
|
68 |
'WB_URL' => WB_URL, |
|
69 |
'WB_PATH' => WB_PATH, |
|
70 |
'THEME_URL' => THEME_URL |
|
71 |
) |
|
72 |
); |
|
73 |
if($modified_ts == 'Unknown') { |
|
74 |
$template->set_var('DISPLAY_MODIFIED', 'hide'); |
|
75 |
} else { |
|
76 |
$template->set_var('DISPLAY_MODIFIED', ''); |
|
77 |
} |
|
78 |
|
|
79 |
// Work-out if we should show the "manage sections" link |
|
80 |
$query_sections = $database->query("SELECT section_id FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' AND module = 'menu_link'"); |
|
81 |
if($query_sections->numRows() > 0) { |
|
82 |
$template->set_var('DISPLAY_MANAGE_SECTIONS', 'none'); |
|
83 |
} elseif(MANAGE_SECTIONS == 'enabled') { |
|
84 |
$template->set_var('TEXT_MANAGE_SECTIONS', $HEADING['MANAGE_SECTIONS']); |
|
85 |
} else { |
|
86 |
$template->set_var('DISPLAY_MANAGE_SECTIONS', 'none'); |
|
87 |
} |
|
88 |
|
|
89 |
// Insert language TEXT |
|
90 |
$template->set_var(array( |
|
91 |
'TEXT_CURRENT_PAGE' => $TEXT['CURRENT_PAGE'], |
|
92 |
'TEXT_CHANGE_SETTINGS' => $TEXT['CHANGE_SETTINGS'], |
|
93 |
'LAST_MODIFIED' => $MESSAGE['PAGES']['LAST_MODIFIED'], |
|
94 |
'HEADING_MODIFY_PAGE' => $HEADING['MODIFY_PAGE'] |
|
95 |
) |
|
96 |
); |
|
97 |
|
|
98 |
// Parse and print header template |
|
99 |
$template->parse('main', 'main_block', false); |
|
100 |
$template->pparse('output', 'page'); |
|
101 |
|
|
102 |
// get template used for the displayed page (for displaying block details) |
|
103 |
if (SECTION_BLOCKS) { |
|
104 |
$sql = "SELECT `template` from `" . TABLE_PREFIX . "pages` WHERE `page_id` = '$page_id' "; |
|
105 |
$result = $database->query($sql); |
|
106 |
if ($result && $result->numRows() == 1) { |
|
107 |
$row = $result->fetchRow(); |
|
108 |
$page_template = ($row['template'] == '') ? DEFAULT_TEMPLATE : $row['template']; |
|
109 |
// include template info file if exists |
|
110 |
if (file_exists(WB_PATH . '/templates/' . $page_template . '/info.php')) { |
|
111 |
include_once(WB_PATH . '/templates/' . $page_template . '/info.php'); |
|
112 |
} |
|
113 |
} |
|
114 |
} |
|
115 |
|
|
116 |
// Get sections for this page |
|
117 |
$module_permissions = $_SESSION['MODULE_PERMISSIONS']; |
|
118 |
$query_sections = $database->query("SELECT section_id, module, block |
|
119 |
FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' ORDER BY position ASC"); |
|
120 |
if($query_sections->numRows() > 0) { |
|
121 |
while($section = $query_sections->fetchRow()) { |
|
122 |
$section_id = $section['section_id']; |
|
123 |
$module = $section['module']; |
|
124 |
//Have permission? |
|
125 |
if(!is_numeric(array_search($module, $module_permissions))) { |
|
126 |
// Include the modules editing script if it exists |
|
127 |
if(file_exists(WB_PATH.'/modules/'.$module.'/modify.php')) { |
|
128 |
echo '<a name="'.$section_id.'"></a>'; |
|
129 |
// output block name if blocks are enabled |
|
130 |
if (SECTION_BLOCKS) { |
|
131 |
if (isset($block[$section['block']]) && trim(strip_tags(($block[$section['block']]))) != '') { |
|
132 |
$block_name = htmlentities(strip_tags($block[$section['block']])); |
|
133 |
} else { |
|
134 |
if ($section['block'] == 1) { |
|
135 |
$block_name = $TEXT['MAIN']; |
|
136 |
} else { |
|
137 |
$block_name = '#' . (int) $section['block']; |
|
138 |
} |
|
139 |
} |
|
140 |
echo '<b>' . $TEXT['BLOCK'] . ': </b>' . $block_name; |
|
141 |
} |
|
142 |
require(WB_PATH.'/modules/'.$module.'/modify.php'); |
|
143 |
} |
|
144 |
} |
|
145 |
} |
|
146 |
} |
|
147 |
|
|
148 |
// Print admin footer |
|
149 |
$admin->print_footer(); |
|
150 |
|
|
1 |
<?php |
|
2 |
/** |
|
3 |
* |
|
4 |
* @category admin |
|
5 |
* @package pages |
|
6 |
* @author WebsiteBaker Project |
|
7 |
* @copyright 2004-2009, Ryan Djurovich |
|
8 |
* @copyright 2009-2010, 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 4.3.4 and higher |
|
13 |
* @version $Id$ |
|
14 |
* @filesource $HeadURL$ |
|
15 |
* @lastmodified $Date$ |
|
16 |
* |
|
17 |
*/ |
|
18 |
|
|
19 |
// Get page id |
|
20 |
if(!isset($_GET['page_id']) OR !is_numeric($_GET['page_id'])) { |
|
21 |
header("Location: index.php"); |
|
22 |
exit(0); |
|
23 |
} else { |
|
24 |
$page_id = $_GET['page_id']; |
|
25 |
} |
|
26 |
|
|
27 |
// Create new admin object |
|
28 |
require('../../config.php'); |
|
29 |
require_once(WB_PATH.'/framework/class.admin.php'); |
|
30 |
$admin = new admin('Pages', 'pages_modify'); |
|
31 |
|
|
32 |
// Get perms |
|
33 |
if(!$admin->get_page_permission($page_id,'admin')) { |
|
34 |
$admin->print_error($MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS']); |
|
35 |
} |
|
36 |
|
|
37 |
$sectionId = isset($_GET['wysiwyg']) ? htmlspecialchars($admin->get_get('wysiwyg')) : NULL; |
|
38 |
|
|
39 |
// Get page details |
|
40 |
$results_array=$admin->get_page_details($page_id); |
|
41 |
|
|
42 |
// Get display name of person who last modified the page |
|
43 |
$user=$admin->get_user_details($results_array['modified_by']); |
|
44 |
|
|
45 |
// Convert the unix ts for modified_when to human a readable form |
|
46 |
|
|
47 |
$modified_ts = ($results_array['modified_when'] != 0) |
|
48 |
? $modified_ts = gmdate(TIME_FORMAT.', '.DATE_FORMAT, $results_array['modified_when']+TIMEZONE) |
|
49 |
: 'Unknown'; |
|
50 |
|
|
51 |
// Include page info script |
|
52 |
$template = new Template(THEME_PATH.'/templates'); |
|
53 |
$template->set_file('page', 'pages_modify.htt'); |
|
54 |
$template->set_block('page', 'main_block', 'main'); |
|
55 |
$template->set_var(array( |
|
56 |
'PAGE_ID' => $results_array['page_id'], |
|
57 |
'PAGE_TITLE' => ($results_array['page_title']), |
|
58 |
'MENU_TITLE' => ($results_array['menu_title']), |
|
59 |
'MODIFIED_BY' => $user['display_name'], |
|
60 |
'MODIFIED_BY_USERNAME' => $user['username'], |
|
61 |
'MODIFIED_WHEN' => $modified_ts, |
|
62 |
'ADMIN_URL' => ADMIN_URL, |
|
63 |
'WB_URL' => WB_URL, |
|
64 |
'WB_PATH' => WB_PATH, |
|
65 |
'THEME_URL' => THEME_URL |
|
66 |
) |
|
67 |
); |
|
68 |
if($modified_ts == 'Unknown') { |
|
69 |
$template->set_var('CLASS_DISPLAY_MODIFIED', 'hide'); |
|
70 |
} else { |
|
71 |
$template->set_var('CLASS_DISPLAY_MODIFIED', ''); |
|
72 |
} |
|
73 |
|
|
74 |
// Work-out if we should show the "manage sections" link |
|
75 |
$query_sections = $database->query("SELECT section_id FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' AND module = 'menu_link'"); |
|
76 |
if($query_sections->numRows() > 0) { |
|
77 |
$template->set_var('DISPLAY_MANAGE_SECTIONS', 'display:none;'); |
|
78 |
} elseif(MANAGE_SECTIONS == 'enabled') { |
|
79 |
$template->set_var('TEXT_MANAGE_SECTIONS', $HEADING['MANAGE_SECTIONS']); |
|
80 |
} else { |
|
81 |
$template->set_var('DISPLAY_MANAGE_SECTIONS', 'display:none;'); |
|
82 |
} |
|
83 |
|
|
84 |
// Insert language TEXT |
|
85 |
$template->set_var(array( |
|
86 |
'TEXT_CURRENT_PAGE' => $TEXT['CURRENT_PAGE'], |
|
87 |
'TEXT_CHANGE_SETTINGS' => $TEXT['CHANGE_SETTINGS'], |
|
88 |
'LAST_MODIFIED' => $MESSAGE['PAGES']['LAST_MODIFIED'], |
|
89 |
'HEADING_MODIFY_PAGE' => $HEADING['MODIFY_PAGE'] |
|
90 |
) |
|
91 |
); |
|
92 |
|
|
93 |
// Parse and print header template |
|
94 |
$template->parse('main', 'main_block', false); |
|
95 |
$template->pparse('output', 'page'); |
|
96 |
|
|
97 |
// get template used for the displayed page (for displaying block details) |
|
98 |
if (SECTION_BLOCKS) |
|
99 |
{ |
|
100 |
$sql = "SELECT `template` from `" . TABLE_PREFIX . "pages` WHERE `page_id` = '$page_id' "; |
|
101 |
$result = $database->query($sql); |
|
102 |
if ($result && $result->numRows() == 1) { |
|
103 |
$row = $result->fetchRow(); |
|
104 |
$page_template = ($row['template'] == '') ? DEFAULT_TEMPLATE : $row['template']; |
|
105 |
// include template info file if exists |
|
106 |
if (file_exists(WB_PATH . '/templates/' . $page_template . '/info.php')) { |
|
107 |
include_once(WB_PATH . '/templates/' . $page_template . '/info.php'); |
|
108 |
} |
|
109 |
} |
|
110 |
} |
|
111 |
|
|
112 |
// Get sections for this page |
|
113 |
$module_permissions = $_SESSION['MODULE_PERMISSIONS']; |
|
114 |
// workout for edit only one section for faster pageloading |
|
115 |
// Constant later set in wb_settings, in meantime defined in framework/initialize.php |
|
116 |
if(defined('EDIT_ONE_SECTION') and EDIT_ONE_SECTION and is_numeric($sectionId)) |
|
117 |
{ |
|
118 |
$query_sections = $database->query("SELECT section_id, module, block |
|
119 |
FROM ".TABLE_PREFIX."sections WHERE section_id = '$sectionId' ORDER BY position ASC"); |
|
120 |
} |
|
121 |
else |
|
122 |
{ |
|
123 |
$query_sections = $database->query("SELECT section_id, module, block |
|
124 |
FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' ORDER BY position ASC"); |
|
125 |
} |
|
126 |
|
|
127 |
if($query_sections->numRows() > 0) |
|
128 |
{ |
|
129 |
while($section = $query_sections->fetchRow()) |
|
130 |
{ |
|
131 |
$section_id = $section['section_id']; |
|
132 |
$module = $section['module']; |
|
133 |
//Have permission? |
|
134 |
if(!is_numeric(array_search($module, $module_permissions))) |
|
135 |
{ |
|
136 |
// Include the modules editing script if it exists |
|
137 |
if(file_exists(WB_PATH.'/modules/'.$module.'/modify.php')) |
|
138 |
{ |
|
139 |
print /* '<a name="'.$section_id.'"></a>'. */"\n"; |
|
140 |
// output block name if blocks are enabled |
|
141 |
if (SECTION_BLOCKS) { |
|
142 |
if (isset($block[$section['block']]) && trim(strip_tags(($block[$section['block']]))) != '') |
|
143 |
{ |
|
144 |
$block_name = htmlentities(strip_tags($block[$section['block']])); |
|
145 |
} else { |
|
146 |
if ($section['block'] == 1) |
|
147 |
{ |
|
148 |
$block_name = $TEXT['MAIN']; |
|
149 |
} else { |
|
150 |
$block_name = '#' . (int) $section['block']; |
|
151 |
} |
|
152 |
} |
|
153 |
print '<div id="wb'.$section['section_id'].'"><b>' . $TEXT['BLOCK'] . ': </b>' . $block_name; |
|
154 |
print '<b> Modul: </b>' . $section['module']." "; |
|
155 |
print '<b> ID: </b>' . $section_id."</div>\n"; |
|
156 |
} |
|
157 |
require(WB_PATH.'/modules/'.$module.'/modify.php'); |
|
158 |
} |
|
159 |
} |
|
160 |
} |
|
161 |
} |
|
162 |
|
|
163 |
// Print admin footer |
|
164 |
$admin->print_footer(); |
|
165 |
|
|
151 | 166 |
?> |
152 | 167 |
Also available in: Unified diff
Branch 2.8.1 merged back into Trunk