Project

General

Profile

1
<?php
2

    
3
// $Id: frontend.functions.php 869 2008-10-29 19:05:42Z thorn $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2008, 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 is purely for ensuring compatibility with 3rd party
28
	contributions made for WB version 2.5.2 or below
29
*/
30
if(!defined('WB_URL')) {
31
	header('Location: ../index.php');
32
	exit(0);
33
}
34

    
35
// references to objects and variables that changed their names
36

    
37
$admin = &$wb;
38

    
39
$default_link=&$wb->default_link;
40

    
41
$page_trail=&$wb->page_trail;
42
$page_description=&$wb->page_description;
43
$page_keywords=&$wb->page_keywords;
44
$page_link=&$wb->link;
45

    
46
// extra_sql is not used anymore - this is basically a register_globals exploit prevention...
47
$extra_sql=&$wb->extra_sql;
48
$extra_where_sql=&$wb->extra_where_sql;
49

    
50
$query="SELECT directory FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'snippet'";
51
$query_result=$database->query($query);
52
if ($query_result->numRows()>0) {
53
	while ($row = $query_result->fetchRow()) {
54
		$module_dir = $row['directory'];
55
		if (file_exists(WB_PATH.'/modules/'.$module_dir.'/include.php')) {
56
			include(WB_PATH.'/modules/'.$module_dir.'/include.php');
57
		}
58
	}
59
}
60

    
61
// Frontend functions
62
if (!function_exists('page_link')) {
63
	function page_link($link) {
64
		global $wb;
65
		return $wb->page_link($link);
66
	}
67
}
68

    
69
//function to highlight search results
70
if (!function_exists('search_highlight')) {
71
function search_highlight($foo='', $arr_string=array()) {
72
	require_once(WB_PATH.'/framework/functions.php');
73
	static $string_ul_umlauts=array();
74
	if($string_ul_umlauts == array())
75
		require(WB_PATH.'/search/search_convert.php');
76
	$foo = entities_to_umlauts($foo, 'UTF-8');
77
	array_walk($arr_string, create_function('&$v,$k','$v = preg_quote($v, \'/\');'));
78
	$search_string = implode("|", $arr_string);
79
	$string = strtr($search_string, $string_ul_umlauts);
80
	// the highlighting
81
	// match $string, but not inside <style>...</style>, <script>...</script>, <!--...--> or HTML-Tags
82
	// split $string into pieces - "cut away" styles, scripts, comments, HTML-tags and eMail-addresses
83
	// for HTML-Tags use <(?:[^<]|<.*>)*> which will match strings like <input ... value="<b>value</b>" >
84
	$matches = preg_split("/(<style.*<\/style>|<script.*<\/script>|<!--.*-->|<(?:[^<]|<.*>)*>|\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,8}\b)/iUs",$foo,-1,(PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY));
85
	if(is_array($matches) && $matches != array()) {
86
		$foo = "";
87
		foreach($matches as $match) {
88
			if($match{0}!="<" && !preg_match('/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,8}$/i', $match)) {
89
				$match = strtr($match, array('&lt;'=>'<', '&gt;'=>'>', '&amp;'=>'&', '&quot;'=>'"', '&#39;'=>'\'', '&nbsp;'=>"\xC2\xA0"));
90
				$match = preg_replace('/('.$string.')/iS', '_span class=_highlight__$1_/span_',$match);
91
				$match = strtr($match, array('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;', '\''=>'&#39;', "\xC2\xA0"=>'&nbsp;'));
92
				$match = str_replace(array('_span class=_highlight__', '_/span_'), array('<span class="highlight">', '</span>'), $match);
93
			}
94
			$foo .= $match;
95
		}
96
	}
97
	
98
	if(DEFAULT_CHARSET != 'utf-8') {
99
		$foo = umlauts_to_entities($foo, 'UTF-8');
100
	}
101
	return $foo;
102
}
103
}
104

    
105
// Old menu call invokes new menu function
106
if (!function_exists('page_menu')) {
107
	function page_menu($parent = 0, $menu_number = 1, $item_template = '<li[class]>[a] [menu_title] [/a]</li>', $menu_header = '<ul>', $menu_footer = '</ul>', $default_class = ' class="menu_default"', $current_class = ' class="menu_current"', $recurse = LEVEL) {
108
		global $wb;
109
		$wb->menu_number=$menu_number;
110
		$wb->menu_item_template=$item_template;
111
		$wb->menu_item_footer='';
112
		$wb->menu_parent = $parent;
113
		$wb->menu_header = $menu_header; 
114
		$wb->menu_footer = $menu_footer;
115
		$wb->menu_default_class = $default_class;
116
		$wb->menu_current_class = $current_class;
117
		$wb->menu_recurse = $recurse+2; 	
118
		$wb->menu();
119
		unset($wb->menu_parent);
120
		unset($wb->menu_number);
121
		unset($wb->menu_item_template);
122
		unset($wb->menu_item_footer);
123
		unset($wb->menu_header);
124
		unset($wb->menu_footer);
125
		unset($wb->menu_default_class);
126
		unset($wb->menu_current_class);
127
		unset($wb->menu_start_level);
128
		unset($wb->menu_collapse);
129
		unset($wb->menu_recurse);
130
	}
131
}
132

    
133
if (!function_exists('show_menu')) {
134
	function show_menu($menu_number = NULL, $start_level=NULL, $recurse = NULL, $collapse = NULL, $item_template = NULL, $item_footer = NULL, $menu_header = NULL, $menu_footer = NULL, $default_class = NULL, $current_class = NULL, $parent = NULL) {
135
		global $wb;
136
		if (isset($menu_number))
137
			$wb->menu_number=$menu_number;
138
		if (isset($start_level))
139
			$wb->menu_start_level=$start_level;
140
		if (isset($recurse))
141
			$wb->menu_recurse=$recurse;
142
		if (isset($collapse))
143
			$wb->menu_collapse=$collapse;
144
		if (isset($item_template))
145
			$wb->menu_item_template=$item_template;
146
		if (isset($item_footer))
147
			$wb->menu_item_footer=$item_footer;
148
		if (isset($menu_header))
149
			$wb->menu_header=$menu_header;
150
		if (isset($menu_footer))
151
			$wb->menu_footer=$menu_footer;
152
		if (isset($default_class))
153
			$wb->menu_default_class=$default_class;
154
		if (isset($current_class))
155
			$wb->menu_current_class=$current_class;
156
		if (isset($parent))
157
			$wb->menu_parent=$parent;
158
		$wb->menu();
159
		unset($wb->menu_recurse);
160
		unset($wb->menu_parent);
161
		unset($wb->menu_start_level);
162
	}
163
}
164

    
165
if (!function_exists('page_content')) {
166
	function page_content($block = 1) {
167
		// Get outside objects
168
		global $TEXT,$MENU,$HEADING,$MESSAGE;
169
		global $globals;
170
		global $database;
171
		global $wb;
172
		$admin = & $wb;
173
		if ($wb->page_access_denied==true) {
174
	        echo $MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'];
175
			exit();
176
		}
177
		if ($wb->page_no_active_sections==true) {
178
	        echo $MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'];
179
			exit();
180
		}
181
		if(isset($globals) AND is_array($globals)) { foreach($globals AS $global_name) { global $$global_name; } }
182
		// Make sure block is numeric
183
		if(!is_numeric($block)) { $block = 1; }
184
		// Include page content
185
		if(!defined('PAGE_CONTENT') OR $block!=1) {
186
			$page_id=$wb->page_id;
187
			// First get all sections for this page
188
			$query_sections = $database->query("SELECT section_id,module,publ_start,publ_end FROM ".TABLE_PREFIX."sections WHERE page_id = '".$page_id."' AND block = '$block' ORDER BY position");
189
			// If none were found, check if default content is supposed to be shown
190
			if($query_sections->numRows() == 0) {
191
				if ($wb->default_block_content=='none') {
192
					return;
193
				}
194
				if (is_numeric($wb->default_block_content)) {
195
					$page_id=$wb->default_block_content;
196
				} else {
197
					$page_id=$wb->default_page_id;
198
				}				
199
				$query_sections = $database->query("SELECT section_id,module,publ_start,publ_end FROM ".TABLE_PREFIX."sections WHERE page_id = '".$page_id."' AND block = '$block' ORDER BY position");
200
				// Still no cotent found? Give it up, there's just nothing to show!
201
				if($query_sections->numRows() == 0) {
202
					return;
203
				}
204
			}
205
			// Loop through them and include their module file
206
			while($section = $query_sections->fetchRow()) {
207
				// skip this section if it is out of publication-date
208
				$now = time();
209
				if( !(($now<=$section['publ_end'] || $section['publ_end']==0) && ($now>=$section['publ_start'] || $section['publ_start']==0)) ) {
210
					continue;
211
				}
212
				$section_id = $section['section_id'];
213
				$module = $section['module'];
214
				// make a anchor for every section. This is for the search_extension
215
				echo "<a id=\"wb_section_$section_id\" name=\"wb_section_$section_id\"></a>";
216
				// highlights searchresults
217
				if (isset($_GET['searchresult']) AND is_numeric($_GET['searchresult']) AND !isset($_GET['nohighlight'])) {
218
					if (isset($_GET['sstring']) AND !empty($_GET['sstring']) ){
219
						$arr_string = explode(" ", $_GET['sstring']);
220
						if($_GET['searchresult'] == 2) {
221
							// exact match
222
							$arr_string[0] = strtr($arr_string[0], "_"," ");
223
						}
224
						ob_start(); //start output buffer
225
						require(WB_PATH.'/modules/'.$module.'/view.php');
226
						$foo = ob_get_contents();    // put outputbuffer in $foo
227
						ob_end_clean();             // clear outputbuffer
228
						echo search_highlight($foo, $arr_string);
229
					}
230
				} else {
231
					require(WB_PATH.'/modules/'.$module.'/view.php');
232
				}
233
			}
234
		} else {
235
			require(PAGE_CONTENT);
236
		}
237
	}
238
}
239

    
240
if (!function_exists('show_content')) {
241
	function show_content($block=1) {
242
		page_content($block);
243
	}
244
}
245

    
246
if (!function_exists('show_breadcrumbs')) {
247
	function show_breadcrumbs($sep=' > ',$tier=1,$links=true,$depth=-1) {
248
		global $wb;
249
		$page_id=$wb->page_id;
250
		if ($page_id!=0)
251
		{
252
	 		global $database;
253
			$bca=$wb->page_trail;
254
			$counter=0;
255
			foreach ($bca as $temp)
256
			{
257
		        if ($counter>=($tier-1) AND ($depth<0 OR $tier+$depth>$counter))
258
		        {
259
					if ($counter>=$tier) echo $sep;
260
					$query_menu=$database->query("SELECT menu_title,link FROM ".TABLE_PREFIX."pages WHERE page_id=$temp");
261
					$page=$query_menu->fetchRow();
262
					if ($links==true AND $temp!=$page_id)
263
						echo '<a href="'.page_link($page['link']).'">'.$page['menu_title'].'</a>';
264
					else
265
					    echo $page['menu_title'];
266
		        }
267
	            $counter++;
268
			}
269
		}
270
	}
271
}
272

    
273
// Function for page title
274
if (!function_exists('page_title')) {
275
	function page_title($spacer = ' - ', $template = '[WEBSITE_TITLE][SPACER][PAGE_TITLE]') {
276
		$vars = array('[WEBSITE_TITLE]', '[PAGE_TITLE]', '[MENU_TITLE]', '[SPACER]');
277
		$values = array(WEBSITE_TITLE, PAGE_TITLE, MENU_TITLE, $spacer);
278
		echo str_replace($vars, $values, $template);
279
	}
280
}
281

    
282
// Function for page description
283
if (!function_exists('page_description')) {
284
	function page_description() {
285
		global $wb;
286
		if ($wb->page_description!='') {
287
			echo $wb->page_description;
288
		} else {
289
			echo WEBSITE_DESCRIPTION;
290
		}
291
	}
292
}
293

    
294
// Function for page keywords
295
if (!function_exists('page_keywords')) {
296
	function page_keywords() {
297
		global $wb;
298
		if ($wb->page_keywords!='') {
299
			echo $wb->page_keywords;
300
		} else {
301
			echo WEBSITE_KEYWORDS;
302
		}
303
	}
304
}
305

    
306
// Function for page header
307
if (!function_exists('page_header')) {
308
	function page_header($date_format = 'Y') {
309
		echo WEBSITE_HEADER;
310
	}
311
}
312

    
313
// Function for page footer
314
if (!function_exists('page_footer')) {
315
	function page_footer($date_format = 'Y') {
316
		global $starttime;
317
		$vars = array('[YEAR]', '[PROCESS_TIME]');
318
		$processtime=array_sum(explode(" ",microtime()))-$starttime;
319
		$values = array(date($date_format),$processtime);
320
		echo str_replace($vars, $values, WEBSITE_FOOTER);
321
	}
322
}
323

    
324
// Function to add optional module Javascript or CSS stylesheets into the <head> section of the frontend
325
if(!function_exists('register_frontend_modfiles')) {
326
	function register_frontend_modfiles($file_id="css") {
327
		// sanity check of parameter passed to the function
328
		$file_id = strtolower($file_id);
329
		if($file_id !== "css" && $file_id !== "javascript" && $file_id !== "js") { 
330
			return;
331
		}
332

    
333
		global $wb, $database;
334
		// define default baselink and filename for optional module javascript and stylesheet files
335
		$head_links = "";
336
		if($file_id == "css") {
337
      $base_link = '<link href="'.WB_URL.'/modules/{MODULE_DIRECTORY}/frontend.css"'; 
338
			$base_link.= ' rel="stylesheet" type="text/css" media="screen" />';
339
			$base_file = "frontend.css";
340
		} else {
341
			$base_link = '<script type="text/javascript" src="'.WB_URL.'/modules/{MODULE_DIRECTORY}/frontend.js"></script>';
342
			$base_file = "frontend.js";
343
		}
344

    
345
  	// gather information for all models embedded on actual page
346
		$page_id = $wb->page_id;
347
    $query_modules = $database->query("SELECT module FROM " .TABLE_PREFIX ."sections 
348
			WHERE page_id=$page_id AND module<>'wysiwyg'");
349

    
350
    while($row = $query_modules->fetchRow()) {
351
		// check if page module directory contains a frontend.js or frontend.css file
352
    	if(file_exists(WB_PATH ."/modules/" .$row['module'] ."/$base_file")) {
353
				// create link with frontend.js or frontend.css source for the current module
354
				$tmp_link = str_replace("{MODULE_DIRECTORY}", $row['module'], $base_link);
355

    
356
        // define constant indicating that the register_frontent_files was invoked
357
				if($file_id == 'css') {
358
					if(!defined('MOD_FRONTEND_CSS_REGISTERED')) define('MOD_FRONTEND_CSS_REGISTERED', true);
359
				} else {
360
					if(!defined('MOD_FRONTEND_JAVASCRIPT_REGISTERED')) define('MOD_FRONTEND_JAVASCRIPT_REGISTERED', true);
361
				}
362

    
363
        // ensure that frontend.js or frontend.css is only added once per module type
364
        if(strpos($head_links, $tmp_link) === false) {
365
					$head_links .= $tmp_link ."\n";
366
				}
367
			}
368
    }
369
  	// include the Javascript email protection function
370
  	if($file_id != 'css' && file_exists(WB_PATH .'/modules/output_filter/js/mdcr.js')) {
371
			$head_links .= '<script type="text/javascript" src="'.WB_URL.'/modules/output_filter/js/mdcr.js"></script>' ."\n";
372
		}
373
  		
374
		// write out links with all external module javascript/CSS files, remove last line feed
375
		echo $head_links;
376
	}
377
}
378

    
379
// Begin WB < 2.4.x template compatibility code
380
	// Make extra_sql accessable through private_sql
381
	$private_sql = $extra_sql;
382
	$private_where_sql = $extra_where_sql;
383
	// Query pages for menu
384
	$menu1 = $database->query("SELECT page_id,menu_title,page_title,link,target,visibility$extra_sql FROM ".TABLE_PREFIX."pages WHERE parent = '0' AND $extra_where_sql ORDER BY position ASC");
385
	// Check if current pages is a parent page and if we need its submenu
386
	if(PARENT == 0) {
387
		// Get the pages submenu
388
		$menu2 = $database->query("SELECT page_id,menu_title,page_title,link,target,visibility$extra_sql FROM ".TABLE_PREFIX."pages WHERE parent = '".PAGE_ID."' AND $extra_where_sql ORDER BY position ASC");
389
	} else {
390
		// Get the pages submenu
391
		$menu2 = $database->query("SELECT page_id,menu_title,page_title,link,target,visibility$extra_sql FROM ".TABLE_PREFIX."pages WHERE parent = '".PARENT."' AND $extra_where_sql ORDER BY position ASC");
392
	}
393
// End WB < 2.4.x template compatibility code
394
// Include template file
395

    
396

    
397
?>
(9-9/14)