| 1 | <?php
 | 
  
    | 2 | 
 | 
  
    | 3 | // $Id: frontend.functions.php 442 2007-04-01 13:09:35Z Ruebenwurzel $
 | 
  
    | 4 | 
 | 
  
    | 5 | /*
 | 
  
    | 6 | 
 | 
  
    | 7 |  Website Baker Project <http://www.websitebaker.org/>
 | 
  
    | 8 |  Copyright (C) 2004-2007, 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 | function search_highlight($foo='', $arr_string=array()) {
 | 
  
    | 71 | 	$last_string="";
 | 
  
    | 72 | 	foreach($arr_string as $string) {
 | 
  
    | 73 | 		// filter meta-characters
 | 
  
    | 74 | 		$string=preg_quote($string, '/');
 | 
  
    | 75 | 		if ($string!=$last_string ) {
 | 
  
    | 76 | 			$foo=preg_replace('/((>|;)[^&<]*)('.$string.')(?=[^>;]*(&|<))/iUS', '$1<span class="highlight">$3</span>',$foo);
 | 
  
    | 77 | 			$last_string=$string;
 | 
  
    | 78 | 		}
 | 
  
    | 79 | 	}
 | 
  
    | 80 | 	return $foo;
 | 
  
    | 81 | }  
 | 
  
    | 82 | 
 | 
  
    | 83 | // Old menu call invokes new menu function
 | 
  
    | 84 | if (!function_exists('page_menu')) {
 | 
  
    | 85 | 	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) {
 | 
  
    | 86 | 		global $wb;
 | 
  
    | 87 | 		$wb->menu_number=$menu_number;
 | 
  
    | 88 | 		$wb->menu_item_template=$item_template;
 | 
  
    | 89 | 		$wb->menu_item_footer='';
 | 
  
    | 90 | 		$wb->menu_parent = $parent;
 | 
  
    | 91 | 		$wb->menu_header = $menu_header; 
 | 
  
    | 92 | 		$wb->menu_footer = $menu_footer;
 | 
  
    | 93 | 		$wb->menu_default_class = $default_class;
 | 
  
    | 94 | 		$wb->menu_current_class = $current_class;
 | 
  
    | 95 | 		$wb->menu_recurse = $recurse+2; 	
 | 
  
    | 96 | 		$wb->menu();
 | 
  
    | 97 | 		unset($wb->menu_parent);
 | 
  
    | 98 | 		unset($wb->menu_number);
 | 
  
    | 99 | 		unset($wb->menu_item_template);
 | 
  
    | 100 | 		unset($wb->menu_item_footer);
 | 
  
    | 101 | 		unset($wb->menu_header);
 | 
  
    | 102 | 		unset($wb->menu_footer);
 | 
  
    | 103 | 		unset($wb->menu_default_class);
 | 
  
    | 104 | 		unset($wb->menu_current_class);
 | 
  
    | 105 | 		unset($wb->menu_start_level);
 | 
  
    | 106 | 		unset($wb->menu_collapse);
 | 
  
    | 107 | 		unset($wb->menu_recurse);
 | 
  
    | 108 | 	}
 | 
  
    | 109 | }
 | 
  
    | 110 | 
 | 
  
    | 111 | if (!function_exists('show_menu')) {
 | 
  
    | 112 | 	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) {
 | 
  
    | 113 | 		global $wb;
 | 
  
    | 114 | 		if (isset($menu_number))
 | 
  
    | 115 | 			$wb->menu_number=$menu_number;
 | 
  
    | 116 | 		if (isset($start_level))
 | 
  
    | 117 | 			$wb->menu_start_level=$start_level;
 | 
  
    | 118 | 		if (isset($recurse))
 | 
  
    | 119 | 			$wb->menu_recurse=$recurse;
 | 
  
    | 120 | 		if (isset($collapse))
 | 
  
    | 121 | 			$wb->menu_collapse=$collapse;
 | 
  
    | 122 | 		if (isset($item_template))
 | 
  
    | 123 | 			$wb->menu_item_template=$item_template;
 | 
  
    | 124 | 		if (isset($item_footer))
 | 
  
    | 125 | 			$wb->menu_item_footer=$item_footer;
 | 
  
    | 126 | 		if (isset($menu_header))
 | 
  
    | 127 | 			$wb->menu_header=$menu_header;
 | 
  
    | 128 | 		if (isset($menu_footer))
 | 
  
    | 129 | 			$wb->menu_footer=$menu_footer;
 | 
  
    | 130 | 		if (isset($default_class))
 | 
  
    | 131 | 			$wb->menu_default_class=$default_class;
 | 
  
    | 132 | 		if (isset($current_class))
 | 
  
    | 133 | 			$wb->menu_current_class=$current_class;
 | 
  
    | 134 | 		if (isset($parent))
 | 
  
    | 135 | 			$wb->menu_parent=$parent;
 | 
  
    | 136 | 		$wb->menu();
 | 
  
    | 137 | 		unset($wb->menu_recurse);
 | 
  
    | 138 | 		unset($wb->menu_parent);
 | 
  
    | 139 | 		unset($wb->menu_start_level);
 | 
  
    | 140 | 	}
 | 
  
    | 141 | }
 | 
  
    | 142 | 
 | 
  
    | 143 | if (!function_exists('page_content')) {
 | 
  
    | 144 | 	function page_content($block = 1) {
 | 
  
    | 145 | 		// Get outside objects
 | 
  
    | 146 | 		global $TEXT,$MENU,$HEADING,$MESSAGE;
 | 
  
    | 147 | 		global $globals;
 | 
  
    | 148 | 		global $database;
 | 
  
    | 149 | 		global $wb;
 | 
  
    | 150 | 		$admin = & $wb;
 | 
  
    | 151 | 		if ($wb->page_access_denied==true) {
 | 
  
    | 152 | 	        echo $MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'];
 | 
  
    | 153 | 			exit();
 | 
  
    | 154 | 		}
 | 
  
    | 155 | 		if(isset($globals) AND is_array($globals)) { foreach($globals AS $global_name) { global $$global_name; } }
 | 
  
    | 156 | 		// Make sure block is numeric
 | 
  
    | 157 | 		if(!is_numeric($block)) { $block = 1; }
 | 
  
    | 158 | 		// Include page content
 | 
  
    | 159 | 		if(!defined('PAGE_CONTENT') OR $block!=1) {
 | 
  
    | 160 | 			$page_id=$wb->page_id;
 | 
  
    | 161 | 			// First get all sections for this page
 | 
  
    | 162 | 			$query_sections = $database->query("SELECT section_id,module FROM ".TABLE_PREFIX."sections WHERE page_id = '".$page_id."' AND block = '$block' ORDER BY position");
 | 
  
    | 163 | 			// If none were found, check if default content is supposed to be shown
 | 
  
    | 164 | 			if($query_sections->numRows() == 0) {
 | 
  
    | 165 | 				if ($wb->default_block_content=='none') {
 | 
  
    | 166 | 					return;
 | 
  
    | 167 | 				}
 | 
  
    | 168 | 				if (is_numeric($wb->default_block_content)) {
 | 
  
    | 169 | 					$page_id=$wb->default_block_content;
 | 
  
    | 170 | 				} else {
 | 
  
    | 171 | 					$page_id=$wb->default_page_id;
 | 
  
    | 172 | 				}				
 | 
  
    | 173 | 				$query_sections = $database->query("SELECT section_id,module FROM ".TABLE_PREFIX."sections WHERE page_id = '".$page_id."' AND block = '$block' ORDER BY position");
 | 
  
    | 174 | 				// Still no cotent found? Give it up, there's just nothing to show!
 | 
  
    | 175 | 				if($query_sections->numRows() == 0) {
 | 
  
    | 176 | 					return;
 | 
  
    | 177 | 				}
 | 
  
    | 178 | 			}
 | 
  
    | 179 | 			// Loop through them and include their module file
 | 
  
    | 180 | 			while($section = $query_sections->fetchRow()) {
 | 
  
    | 181 | 				$section_id = $section['section_id'];
 | 
  
    | 182 | 				$module = $section['module'];
 | 
  
    | 183 | 				// highlights searchresults
 | 
  
    | 184 | 				if (isset($_GET['searchresult']) AND is_numeric($_GET['searchresult']) ) {
 | 
  
    | 185 | 					if (isset($_GET['sstring']) AND !empty($_GET['sstring']) ){
 | 
  
    | 186 | 						$arr_string = explode(" ", $_GET['sstring']);
 | 
  
    | 187 | 						if($_GET['searchresult'] == 2) {
 | 
  
    | 188 | 							// exact match
 | 
  
    | 189 | 							$arr_string[0] = strtr($arr_string[0], "_"," ");
 | 
  
    | 190 | 							$arr_string[1] = strtr($arr_string[1], "_"," ");
 | 
  
    | 191 | 						}
 | 
  
    | 192 | 						ob_start(); //start output buffer
 | 
  
    | 193 | 						require(WB_PATH.'/modules/'.$module.'/view.php');
 | 
  
    | 194 | 						$foo = ob_get_contents();    // put outputbuffer in $foo
 | 
  
    | 195 | 						ob_end_clean();             // clear outputbuffer
 | 
  
    | 196 | 						echo search_highlight($foo, $arr_string);
 | 
  
    | 197 | 					}
 | 
  
    | 198 | 				} else {
 | 
  
    | 199 | 					require(WB_PATH.'/modules/'.$module.'/view.php');
 | 
  
    | 200 | 				}
 | 
  
    | 201 | 			}
 | 
  
    | 202 | 		} else {
 | 
  
    | 203 | 			require(PAGE_CONTENT);
 | 
  
    | 204 | 		}
 | 
  
    | 205 | 	}
 | 
  
    | 206 | }
 | 
  
    | 207 | 
 | 
  
    | 208 | if (!function_exists('show_content')) {
 | 
  
    | 209 | 	function show_content($block=1) {
 | 
  
    | 210 | 		page_content($block);
 | 
  
    | 211 | 	}
 | 
  
    | 212 | }
 | 
  
    | 213 | 
 | 
  
    | 214 | if (!function_exists('show_breadcrumbs')) {
 | 
  
    | 215 | 	function show_breadcrumbs($sep=' > ',$tier=1,$links=true,$depth=-1) {
 | 
  
    | 216 | 		global $wb;
 | 
  
    | 217 | 		$page_id=$wb->page_id;
 | 
  
    | 218 | 		if ($page_id!=0)
 | 
  
    | 219 | 		{
 | 
  
    | 220 | 	 		global $database;
 | 
  
    | 221 | 			$bca=$wb->page_trail;
 | 
  
    | 222 | 			$counter=0;
 | 
  
    | 223 | 			foreach ($bca as $temp)
 | 
  
    | 224 | 			{
 | 
  
    | 225 | 		        if ($counter>=($tier-1) AND ($depth<0 OR $tier+$depth>$counter))
 | 
  
    | 226 | 		        {
 | 
  
    | 227 | 					if ($counter>=$tier) echo $sep;
 | 
  
    | 228 | 					$query_menu=$database->query("SELECT menu_title,link FROM ".TABLE_PREFIX."pages WHERE page_id=$temp");
 | 
  
    | 229 | 					$page=$query_menu->fetchRow();
 | 
  
    | 230 | 					if ($links==true AND $temp!=$page_id)
 | 
  
    | 231 | 						echo '<a href="'.page_link($page['link']).'">'.$page['menu_title'].'</a>';
 | 
  
    | 232 | 					else
 | 
  
    | 233 | 					    echo $page['menu_title'];
 | 
  
    | 234 | 		        }
 | 
  
    | 235 | 	            $counter++;
 | 
  
    | 236 | 			}
 | 
  
    | 237 | 		}
 | 
  
    | 238 | 	}
 | 
  
    | 239 | }
 | 
  
    | 240 | 
 | 
  
    | 241 | // Function for page title
 | 
  
    | 242 | if (!function_exists('page_title')) {
 | 
  
    | 243 | 	function page_title($spacer = ' - ', $template = '[WEBSITE_TITLE][SPACER][PAGE_TITLE]') {
 | 
  
    | 244 | 		$vars = array('[WEBSITE_TITLE]', '[PAGE_TITLE]', '[MENU_TITLE]', '[SPACER]');
 | 
  
    | 245 | 		$values = array(WEBSITE_TITLE, PAGE_TITLE, MENU_TITLE, $spacer);
 | 
  
    | 246 | 		echo str_replace($vars, $values, $template);
 | 
  
    | 247 | 	}
 | 
  
    | 248 | }
 | 
  
    | 249 | 
 | 
  
    | 250 | // Function for page description
 | 
  
    | 251 | if (!function_exists('page_description')) {
 | 
  
    | 252 | 	function page_description() {
 | 
  
    | 253 | 		global $wb;
 | 
  
    | 254 | 		if ($wb->page_description!='') {
 | 
  
    | 255 | 			echo $wb->page_description;
 | 
  
    | 256 | 		} else {
 | 
  
    | 257 | 			echo WEBSITE_DESCRIPTION;
 | 
  
    | 258 | 		}
 | 
  
    | 259 | 	}
 | 
  
    | 260 | }
 | 
  
    | 261 | 
 | 
  
    | 262 | // Function for page keywords
 | 
  
    | 263 | if (!function_exists('page_keywords')) {
 | 
  
    | 264 | 	function page_keywords() {
 | 
  
    | 265 | 		global $wb;
 | 
  
    | 266 | 		if ($wb->page_keywords!='') {
 | 
  
    | 267 | 			echo $wb->page_keywords;
 | 
  
    | 268 | 		} else {
 | 
  
    | 269 | 			echo WEBSITE_KEYWORDS;
 | 
  
    | 270 | 		}
 | 
  
    | 271 | 	}
 | 
  
    | 272 | }
 | 
  
    | 273 | 
 | 
  
    | 274 | // Function for page header
 | 
  
    | 275 | if (!function_exists('page_header')) {
 | 
  
    | 276 | 	function page_header($date_format = 'Y') {
 | 
  
    | 277 | 		echo WEBSITE_HEADER;
 | 
  
    | 278 | 	}
 | 
  
    | 279 | }
 | 
  
    | 280 | 
 | 
  
    | 281 | // Function for page footer
 | 
  
    | 282 | if (!function_exists('page_footer')) {
 | 
  
    | 283 | 	function page_footer($date_format = 'Y') {
 | 
  
    | 284 | 		global $starttime;
 | 
  
    | 285 | 		$vars = array('[YEAR]', '[PROCESS_TIME]');
 | 
  
    | 286 | 		$processtime=array_sum(explode(" ",microtime()))-$starttime;
 | 
  
    | 287 | 		$values = array(date($date_format),$processtime);
 | 
  
    | 288 | 		echo str_replace($vars, $values, WEBSITE_FOOTER);
 | 
  
    | 289 | 	}
 | 
  
    | 290 | }
 | 
  
    | 291 | 
 | 
  
    | 292 | // Function to include optional module CSS stylesheets (module.css) into the <head> section
 | 
  
    | 293 | if (!function_exists('page_css')) {
 | 
  
    | 294 | 	function page_css() {
 | 
  
    | 295 |     global $wb, $database;
 | 
  
    | 296 |     $css_head = "";
 | 
  
    | 297 | 
 | 
  
    | 298 |     // obtain list of modules used for actual displayed page
 | 
  
    | 299 | 		$page_id=$wb->page_id;
 | 
  
    | 300 |     $query_modules = $database->query("SELECT module FROM " .TABLE_PREFIX ."sections WHERE page_id=$page_id AND module<>'wysiwyg'");
 | 
  
    | 301 |     while($row = $query_modules->fetchRow()) {
 | 
  
    | 302 |       if(file_exists(WB_PATH .'/modules/' .$row['module'] .'/module.css')) {
 | 
  
    | 303 |         // build css link for current module.css
 | 
  
    | 304 |         $css_link = "<link href=\"" .WB_URL ."/modules/" .$row['module'];
 | 
  
    | 305 |         $css_link .= "/module.css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />\n";
 | 
  
    | 306 |         // ensure that module.css is not added twice (e.g. if 2 sections include the same module)
 | 
  
    | 307 |         $css_head = str_replace($css_link, "", $css_head);
 | 
  
    | 308 |         $css_head .= $css_link;
 | 
  
    | 309 |       }
 | 
  
    | 310 |     }
 | 
  
    | 311 |     // write out links to all external module stylesheets (module.css)
 | 
  
    | 312 |     if($css_head != "") {
 | 
  
    | 313 |       $css_head = "<!-- Include external module CSS stylesheets -->\n" .$css_head;
 | 
  
    | 314 |       echo $css_head;
 | 
  
    | 315 |     }
 | 
  
    | 316 | 	}
 | 
  
    | 317 | }
 | 
  
    | 318 | 
 | 
  
    | 319 | // Function to include optional module javascript files (module.js) into the <head> section
 | 
  
    | 320 | if (!function_exists('page_javascript')) {
 | 
  
    | 321 | 	function page_javascript() {
 | 
  
    | 322 |     global $wb, $database;
 | 
  
    | 323 |     $js_head = "";
 | 
  
    | 324 | 
 | 
  
    | 325 |     // obtain list of modules used for actual displayed page
 | 
  
    | 326 | 		$page_id=$wb->page_id;
 | 
  
    | 327 |     $query_modules = $database->query("SELECT module FROM " .TABLE_PREFIX ."sections WHERE page_id=$page_id AND module<>'wysiwyg'");
 | 
  
    | 328 |     while($row = $query_modules->fetchRow()) {
 | 
  
    | 329 |       if(file_exists(WB_PATH .'/modules/' .$row['module'] .'/module.js')) {
 | 
  
    | 330 |         // build javascript link for current module.js
 | 
  
    | 331 |         $js_link = "<script type=\"text/javascript\" src=\"" .WB_URL ."/modules/" .$row['module'];
 | 
  
    | 332 |         $js_link .= "/module.js\"></script>\n";
 | 
  
    | 333 |         // ensure that module.js is not added twice (e.g. if 2 sections include the same module)
 | 
  
    | 334 |         $js_head = str_replace($js_link, "", $js_head);
 | 
  
    | 335 |         $js_head .= $js_link;
 | 
  
    | 336 |       }
 | 
  
    | 337 |     }
 | 
  
    | 338 |     // write out links to all external module javascript files (module.js)
 | 
  
    | 339 |     if($js_head != "") {
 | 
  
    | 340 |       $js_head = "<!-- Include external module javascript files -->\n" .$js_head;
 | 
  
    | 341 |       echo $js_head;
 | 
  
    | 342 |     }
 | 
  
    | 343 | 	}
 | 
  
    | 344 | }
 | 
  
    | 345 | 
 | 
  
    | 346 | // Begin WB < 2.4.x template compatibility code
 | 
  
    | 347 | 	// Make extra_sql accessable through private_sql
 | 
  
    | 348 | 	$private_sql = $extra_sql;
 | 
  
    | 349 | 	$private_where_sql = $extra_where_sql;
 | 
  
    | 350 | 	// Query pages for menu
 | 
  
    | 351 | 	$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");
 | 
  
    | 352 | 	// Check if current pages is a parent page and if we need its submenu
 | 
  
    | 353 | 	if(PARENT == 0) {
 | 
  
    | 354 | 		// Get the pages submenu
 | 
  
    | 355 | 		$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");
 | 
  
    | 356 | 	} else {
 | 
  
    | 357 | 		// Get the pages submenu
 | 
  
    | 358 | 		$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");
 | 
  
    | 359 | 	}
 | 
  
    | 360 | // End WB < 2.4.x template compatibility code
 | 
  
    | 361 | // Include template file
 | 
  
    | 362 | 
 | 
  
    | 363 | 
 | 
  
    | 364 | ?>
 |