Project

General

Profile

« Previous | Next » 

Revision 1224

Added by Dietmar over 14 years ago

update header

View differences:

edit_module_files.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
/**
27
	This file contains the routines to edit the optional module files: frontend.css and backend.css
28
	Mechanism was introduced with WB 2.7 to provide a global solution for all modules
29
*/
30

  
31
// prevent this file from being accessed directly
32
if(!(isset($_POST['page_id']) && isset($_POST['section_id']) && isset($_POST['action']) 
33
	&& isset($_POST['mod_dir'])  && isset($_POST['edit_file']))) die(header('Location: index.php')); 
34

  
35
// include configuration file and admin wrapper script
36
require('../config.php');
37

  
38
// include the and admin wrapper script
39
require(WB_PATH.'/modules/admin.php');
40

  
41
// leave if the required module.functions.php file does not exist
42
if(!file_exists(WB_PATH .'/framework/module.functions.php')) {
43
	echo 'The required file: /framework/module.functions.php is missing - script stopped.';
44
	die;
45
}
46

  
47
// register the textarea to use edit_area
48
echo (function_exists('registerEditArea')) ? registerEditArea('code_area', 'css', false) : '';
49

  
50
// set default text output if varibles are not defined in the global WB language files
51
$HEADING_CSS_FILE = (isset($GLOBALS['TEXT']['HEADING_CSS_FILE'])) ?$GLOBALS['TEXT']['HEADING_CSS_FILE'] :'Actual module file: ';
52
$TXT_EDIT_CSS_FILE = (isset($GLOBALS['TEXT']['TXT_EDIT_CSS_FILE'])) ?$GLOBALS['TEXT']['TXT_EDIT_CSS_FILE'] :'Edit the CSS definitions in the textarea below.';
53

  
54
// include functions to edit the optional module CSS files (frontend.css, backend.css)
55
require_once(WB_PATH .'/framework/module.functions.php');
56

  
57
// check if the module directory is valid
58
$mod_dir = check_module_dir($_POST['mod_dir']);
59
if($mod_dir == '') {
60
	echo 'The specified module directory is invalid - script stopped.';
61
	die;
62
};
63

  
64
// check if action is: save or edit
65
if($_POST['action'] == 'save' && mod_file_exists($mod_dir, $_POST['edit_file'])) {
66
	/** 
67
		SAVE THE UPDATED CONTENTS TO THE CSS FILE
68
	*/
69
	$css_content = '';
70
	if (isset($_POST['css_data']) && strlen($_POST['css_data']) > 0) {
71
		$css_content = stripslashes($_POST['css_data']);
72
	}
73

  
74
	$bytes = 0;
75
	if ($css_content != '') {
76
		// open the module CSS file for writting
77
		$mod_file = @fopen(WB_PATH .'/modules/' .$mod_dir .'/' .$_POST['edit_file'], 'wb');
78
		// write new content to the module CSS file
79
		$bytes = @fwrite($mod_file, $css_content);
80
		// close the file
81
		@fclose($mod_file);
82
	}
83

  
84
	// write out status message
85
	if($bytes == 0 ) {
86
		$admin->print_error($TEXT['ERROR'], ADMIN_URL.'/pages/modify.php?page_id='.$page_id);
87
	} else {
88
		$admin->print_success($TEXT['SUCCESS'], ADMIN_URL.'/pages/modify.php?page_id='.$page_id);
89
	}
90

  
91

  
92
} else {
93
	/** 
94
		MODIFY CONTENTS OF THE CSS FILE VIA TEXT AREA 
95
	*/
96
	// check if module backend.css file needs to be included into the <body>
97
	if((!method_exists($admin, 'register_backend_modfiles') || !isset($_GET['page_id']))
98
			&& file_exists(WB_PATH .'/modules/'.$mod_dir.'/backend.css')) {
99
		echo '<style type="text/css">';
100
		include(WB_PATH .'/modules/' .$mod_dir .'/backend.css');
101
		echo "\n</style>\n";
102
	}
103

  
104
	// check which module file to edit (frontend.css, backend.css or '')
105
	$css_file = (in_array($_POST['edit_file'], array('frontend.css', 'backend.css'))) ? $_POST['edit_file'] : '';
106

  
107
	// display output
108
	if($css_file == '') {
109
		// no valid module file to edit; display error message and backlink to modify.php
110
		echo "<h2>Nothing to edit</h2>";
111
		echo "<p>No valid module file exists for this module.</p>";
112
		$output  = "<a href=\"#\" onclick=\"javascript: window.location = '";
113
		$output .= ADMIN_URL ."/pages/modify.php?page_id=" .$page_id ."'\">back</a>";
114
		echo $output;
115
	
116
	} else {
117
		// store content of the module file in variable
118
		$css_content = @file_get_contents(WB_PATH .'/modules/' .$mod_dir .'/' .$css_file);
119
		// write out heading
120
		echo '<h2>' .$HEADING_CSS_FILE .'"' .$css_file .'"</h2>';
121
		// include button to switch between frontend.css and backend.css (only shown if both files exists)
122
		toggle_css_file($mod_dir, $css_file); 
123
		echo '<p>' .$TXT_EDIT_CSS_FILE .'</p>';
124

  
125
		// output content of module file to textareas
126
	?>
127
		<form name="edit_module_file" action="<?php echo $_SERVER['PHP_SELF'];?>" method="post" style="margin: 0;">
128
	  	<input type="hidden" name="page_id" value="<?php echo $page_id; ?>" />
129
	  	<input type="hidden" name="section_id" value="<?php echo $section_id; ?>" />
130
	  	<input type="hidden" name="mod_dir" value="<?php echo $mod_dir; ?>" />
131
		<input type="hidden" name="edit_file" value="<?php echo $css_file; ?>" />
132
	  	<input type="hidden" name="action" value="save" />
133
		<textarea id="code_area" name="css_data" cols="115" rows="25" wrap="VIRTUAL" style="margin:2px;"><?php
134
			echo htmlspecialchars($css_content); ?>
135
		</textarea>
136

  
137
  			<table cellpadding="0" cellspacing="0" border="0" width="100%">
138
  			<tr>
139
    			<td align="left">
140
 				<input name="save" type="submit" value="<?php echo $TEXT['SAVE'];?>" style="width: 100px; margin-top: 5px;" />
141
    			</td>
142
  				<td align="right">
143
      			<input type="button" value="<?php echo $TEXT['CANCEL']; ?>"
144
						onclick="javascript: window.location = '<?php echo ADMIN_URL;?>/pages/modify.php?page_id=<?php echo $page_id; ?>';"
145
						style="width: 100px; margin-top: 5px;" />
146
  				</td>
147
  			</tr>
148
  			</table>
149
		</form>
150
		<?php 
151
	}
152
}
153

  
154
// Print admin footer
155
$admin->print_footer();
156

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

  
61
// prevent this file from being accessed directly
62
if(!(isset($_POST['page_id']) && isset($_POST['section_id']) && isset($_POST['action'])
63
	&& isset($_POST['mod_dir'])  && isset($_POST['edit_file']))) die(header('Location: index.php'));
64

  
65
// include configuration file and admin wrapper script
66
require('../config.php');
67

  
68
// include the and admin wrapper script
69
require(WB_PATH.'/modules/admin.php');
70

  
71
// leave if the required module.functions.php file does not exist
72
if(!file_exists(WB_PATH .'/framework/module.functions.php')) {
73
	echo 'The required file: /framework/module.functions.php is missing - script stopped.';
74
	die;
75
}
76

  
77
// register the textarea to use edit_area
78
echo (function_exists('registerEditArea')) ? registerEditArea('code_area', 'css', false) : '';
79

  
80
// set default text output if varibles are not defined in the global WB language files
81
$HEADING_CSS_FILE = (isset($GLOBALS['TEXT']['HEADING_CSS_FILE'])) ?$GLOBALS['TEXT']['HEADING_CSS_FILE'] :'Actual module file: ';
82
$TXT_EDIT_CSS_FILE = (isset($GLOBALS['TEXT']['TXT_EDIT_CSS_FILE'])) ?$GLOBALS['TEXT']['TXT_EDIT_CSS_FILE'] :'Edit the CSS definitions in the textarea below.';
83

  
84
// include functions to edit the optional module CSS files (frontend.css, backend.css)
85
require_once(WB_PATH .'/framework/module.functions.php');
86

  
87
// check if the module directory is valid
88
$mod_dir = check_module_dir($_POST['mod_dir']);
89
if($mod_dir == '') {
90
	echo 'The specified module directory is invalid - script stopped.';
91
	die;
92
};
93

  
94
// check if action is: save or edit
95
if($_POST['action'] == 'save' && mod_file_exists($mod_dir, $_POST['edit_file'])) {
96
	/** 
97
		SAVE THE UPDATED CONTENTS TO THE CSS FILE
98
	*/
99
	$css_content = '';
100
	if (isset($_POST['css_data']) && strlen($_POST['css_data']) > 0) {
101
		$css_content = stripslashes($_POST['css_data']);
102
	}
103

  
104
	$bytes = 0;
105
	if ($css_content != '') {
106
		// open the module CSS file for writting
107
		$mod_file = @fopen(WB_PATH .'/modules/' .$mod_dir .'/' .$_POST['edit_file'], 'wb');
108
		// write new content to the module CSS file
109
		$bytes = @fwrite($mod_file, $css_content);
110
		// close the file
111
		@fclose($mod_file);
112
	}
113

  
114
	// write out status message
115
	if($bytes == 0 ) {
116
		$admin->print_error($TEXT['ERROR'], ADMIN_URL.'/pages/modify.php?page_id='.$page_id);
117
	} else {
118
		$admin->print_success($TEXT['SUCCESS'], ADMIN_URL.'/pages/modify.php?page_id='.$page_id);
119
	}
120

  
121

  
122
} else {
123
	/** 
124
		MODIFY CONTENTS OF THE CSS FILE VIA TEXT AREA 
125
	*/
126
	// check if module backend.css file needs to be included into the <body>
127
	if((!method_exists($admin, 'register_backend_modfiles') || !isset($_GET['page_id']))
128
			&& file_exists(WB_PATH .'/modules/'.$mod_dir.'/backend.css')) {
129
		echo '<style type="text/css">';
130
		include(WB_PATH .'/modules/' .$mod_dir .'/backend.css');
131
		echo "\n</style>\n";
132
	}
133

  
134
	// check which module file to edit (frontend.css, backend.css or '')
135
	$css_file = (in_array($_POST['edit_file'], array('frontend.css', 'backend.css'))) ? $_POST['edit_file'] : '';
136

  
137
	// display output
138
	if($css_file == '') {
139
		// no valid module file to edit; display error message and backlink to modify.php
140
		echo "<h2>Nothing to edit</h2>";
141
		echo "<p>No valid module file exists for this module.</p>";
142
		$output  = "<a href=\"#\" onclick=\"javascript: window.location = '";
143
		$output .= ADMIN_URL ."/pages/modify.php?page_id=" .$page_id ."'\">back</a>";
144
		echo $output;
145
	
146
	} else {
147
		// store content of the module file in variable
148
		$css_content = @file_get_contents(WB_PATH .'/modules/' .$mod_dir .'/' .$css_file);
149
		// write out heading
150
		echo '<h2>' .$HEADING_CSS_FILE .'"' .$css_file .'"</h2>';
151
		// include button to switch between frontend.css and backend.css (only shown if both files exists)
152
		toggle_css_file($mod_dir, $css_file); 
153
		echo '<p>' .$TXT_EDIT_CSS_FILE .'</p>';
154

  
155
		// output content of module file to textareas
156
	?>
157
		<form name="edit_module_file" action="<?php echo $_SERVER['PHP_SELF'];?>" method="post" style="margin: 0;">
158
	  	<input type="hidden" name="page_id" value="<?php echo $page_id; ?>" />
159
	  	<input type="hidden" name="section_id" value="<?php echo $section_id; ?>" />
160
	  	<input type="hidden" name="mod_dir" value="<?php echo $mod_dir; ?>" />
161
		<input type="hidden" name="edit_file" value="<?php echo $css_file; ?>" />
162
	  	<input type="hidden" name="action" value="save" />
163
		<textarea id="code_area" name="css_data" cols="115" rows="25" wrap="VIRTUAL" style="margin:2px;"><?php
164
			echo htmlspecialchars($css_content); ?>
165
		</textarea>
166

  
167
  			<table cellpadding="0" cellspacing="0" border="0" width="100%">
168
  			<tr>
169
    			<td align="left">
170
 				<input name="save" type="submit" value="<?php echo $TEXT['SAVE'];?>" style="width: 100px; margin-top: 5px;" />
171
    			</td>
172
  				<td align="right">
173
      			<input type="button" value="<?php echo $TEXT['CANCEL']; ?>"
174
						onclick="javascript: window.location = '<?php echo ADMIN_URL;?>/pages/modify.php?page_id=<?php echo $page_id; ?>';"
175
						style="width: 100px; margin-top: 5px;" />
176
  				</td>
177
  			</tr>
178
  			</table>
179
		</form>
180
		<?php 
181
	}
182
}
183

  
184
// Print admin footer
185
$admin->print_footer();
186

  
157 187
?>

Also available in: Unified diff