| 1 | 48 | stefan | <?php
 | 
      
        | 2 |  |  | 
 | 
      
        | 3 |  |  | // $Id$
 | 
      
        | 4 |  |  | 
 | 
      
        | 5 |  |  | /*
 | 
      
        | 6 |  |  | 
 | 
      
        | 7 |  |  |  Website Baker Project <http://www.websitebaker.org/>
 | 
      
        | 8 | 310 | ryan |  Copyright (C) 2004-2006, Ryan Djurovich
 | 
      
        | 9 | 48 | stefan | 
 | 
      
        | 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 | 286 | stefan | 	exit(0);
 | 
      
        | 33 | 48 | stefan | }
 | 
      
        | 34 |  |  | 
 | 
      
        | 35 | 106 | stefan | // 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 | 151 | ryan | $query="SELECT directory FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'snippet'";
 | 
      
        | 51 | 112 | stefan | $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 | 48 | stefan | }
 | 
      
        | 60 |  |  | 
 | 
      
        | 61 | 112 | stefan | // 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 | 48 | stefan | // Old menu call invokes new menu function
 | 
      
        | 70 | 112 | stefan | if (!function_exists('page_menu')) {
 | 
      
        | 71 | 220 | stefan | 	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) {
 | 
      
        | 72 | 112 | stefan | 		global $wb;
 | 
      
        | 73 |  |  | 		$wb->menu_number=$menu_number;
 | 
      
        | 74 |  |  | 		$wb->menu_item_template=$item_template;
 | 
      
        | 75 | 220 | stefan | 		$wb->menu_item_footer='';
 | 
      
        | 76 | 112 | stefan | 		$wb->menu_parent = $parent;
 | 
      
        | 77 |  |  | 		$wb->menu_header = $menu_header;
 | 
      
        | 78 |  |  | 		$wb->menu_footer = $menu_footer;
 | 
      
        | 79 |  |  | 		$wb->menu_default_class = $default_class;
 | 
      
        | 80 |  |  | 		$wb->menu_current_class = $current_class;
 | 
      
        | 81 |  |  | 		$wb->menu_recurse = $recurse+2;
 | 
      
        | 82 |  |  | 		$wb->menu();
 | 
      
        | 83 | 220 | stefan | 		unset($wb->menu_parent);
 | 
      
        | 84 |  |  | 		unset($wb->menu_number);
 | 
      
        | 85 |  |  | 		unset($wb->menu_item_template);
 | 
      
        | 86 |  |  | 		unset($wb->menu_item_footer);
 | 
      
        | 87 |  |  | 		unset($wb->menu_header);
 | 
      
        | 88 |  |  | 		unset($wb->menu_footer);
 | 
      
        | 89 |  |  | 		unset($wb->menu_default_class);
 | 
      
        | 90 |  |  | 		unset($wb->menu_current_class);
 | 
      
        | 91 |  |  | 		unset($wb->menu_start_level);
 | 
      
        | 92 |  |  | 		unset($wb->menu_collapse);
 | 
      
        | 93 |  |  | 		unset($wb->menu_recurse);
 | 
      
        | 94 | 112 | stefan | 	}
 | 
      
        | 95 | 48 | stefan | }
 | 
      
        | 96 |  |  | 
 | 
      
        | 97 | 220 | stefan | if (!function_exists('show_menu')) {
 | 
      
        | 98 |  |  | 	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) {
 | 
      
        | 99 |  |  | 		global $wb;
 | 
      
        | 100 |  |  | 		if (isset($menu_number))
 | 
      
        | 101 |  |  | 			$wb->menu_number=$menu_number;
 | 
      
        | 102 |  |  | 		if (isset($start_level))
 | 
      
        | 103 |  |  | 			$wb->menu_start_level=$start_level;
 | 
      
        | 104 |  |  | 		if (isset($recurse))
 | 
      
        | 105 |  |  | 			$wb->menu_recurse=$recurse;
 | 
      
        | 106 |  |  | 		if (isset($collapse))
 | 
      
        | 107 |  |  | 			$wb->menu_collapse=$collapse;
 | 
      
        | 108 |  |  | 		if (isset($item_template))
 | 
      
        | 109 |  |  | 			$wb->menu_item_template=$item_template;
 | 
      
        | 110 |  |  | 		if (isset($item_footer))
 | 
      
        | 111 |  |  | 			$wb->menu_item_footer=$item_footer;
 | 
      
        | 112 |  |  | 		if (isset($menu_header))
 | 
      
        | 113 |  |  | 			$wb->menu_header=$menu_header;
 | 
      
        | 114 |  |  | 		if (isset($menu_footer))
 | 
      
        | 115 |  |  | 			$wb->menu_footer=$menu_footer;
 | 
      
        | 116 |  |  | 		if (isset($default_class))
 | 
      
        | 117 |  |  | 			$wb->menu_default_class=$default_class;
 | 
      
        | 118 |  |  | 		if (isset($current_class))
 | 
      
        | 119 |  |  | 			$wb->menu_current_class=$current_class;
 | 
      
        | 120 |  |  | 		if (isset($parent))
 | 
      
        | 121 |  |  | 			$wb->menu_parent=$parent;
 | 
      
        | 122 |  |  | 		$wb->menu();
 | 
      
        | 123 |  |  | 		unset($wb->menu_recurse);
 | 
      
        | 124 |  |  | 		unset($wb->menu_parent);
 | 
      
        | 125 |  |  | 		unset($wb->menu_start_level);
 | 
      
        | 126 |  |  | 	}
 | 
      
        | 127 |  |  | }
 | 
      
        | 128 |  |  | 
 | 
      
        | 129 | 112 | stefan | if (!function_exists('page_content')) {
 | 
      
        | 130 |  |  | 	function page_content($block = 1) {
 | 
      
        | 131 |  |  | 		// Get outside objects
 | 
      
        | 132 |  |  | 		global $TEXT,$MENU,$HEADING,$MESSAGE;
 | 
      
        | 133 |  |  | 		global $globals;
 | 
      
        | 134 |  |  | 		global $database;
 | 
      
        | 135 |  |  | 		global $wb;
 | 
      
        | 136 |  |  | 		$admin = & $wb;
 | 
      
        | 137 |  |  | 		if ($wb->page_access_denied==true) {
 | 
      
        | 138 |  |  | 	        echo $MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'];
 | 
      
        | 139 |  |  | 			exit();
 | 
      
        | 140 |  |  | 		}
 | 
      
        | 141 |  |  | 		if(isset($globals) AND is_array($globals)) { foreach($globals AS $global_name) { global $$global_name; } }
 | 
      
        | 142 |  |  | 		// Make sure block is numeric
 | 
      
        | 143 |  |  | 		if(!is_numeric($block)) { $block = 1; }
 | 
      
        | 144 |  |  | 		// Include page content
 | 
      
        | 145 |  |  | 		if(!defined('PAGE_CONTENT') OR $block!=1) {
 | 
      
        | 146 | 246 | stefan | 			$page_id=$wb->page_id;
 | 
      
        | 147 |  |  | 			// First get all sections for this page
 | 
      
        | 148 |  |  | 			$query_sections = $database->query("SELECT section_id,module FROM ".TABLE_PREFIX."sections WHERE page_id = '".$page_id."' AND block = '$block' ORDER BY position");
 | 
      
        | 149 |  |  | 			// If none were found, check if default content is supposed to be shown
 | 
      
        | 150 |  |  | 			if($query_sections->numRows() == 0) {
 | 
      
        | 151 | 112 | stefan | 				if ($wb->default_block_content=='none') {
 | 
      
        | 152 |  |  | 					return;
 | 
      
        | 153 |  |  | 				}
 | 
      
        | 154 |  |  | 				if (is_numeric($wb->default_block_content)) {
 | 
      
        | 155 |  |  | 					$page_id=$wb->default_block_content;
 | 
      
        | 156 |  |  | 				} else {
 | 
      
        | 157 | 246 | stefan | 					$page_id=$wb->default_page_id;
 | 
      
        | 158 | 112 | stefan | 				}
 | 
      
        | 159 | 246 | stefan | 				$query_sections = $database->query("SELECT section_id,module FROM ".TABLE_PREFIX."sections WHERE page_id = '".$page_id."' AND block = '$block' ORDER BY position");
 | 
      
        | 160 |  |  | 				// Still no cotent found? Give it up, there's just nothing to show!
 | 
      
        | 161 |  |  | 				if($query_sections->numRows() == 0) {
 | 
      
        | 162 |  |  | 					return;
 | 
      
        | 163 | 112 | stefan | 				}
 | 
      
        | 164 |  |  | 			}
 | 
      
        | 165 | 246 | stefan | 			// Loop through them and include their module file
 | 
      
        | 166 |  |  | 			while($section = $query_sections->fetchRow()) {
 | 
      
        | 167 |  |  | 				$section_id = $section['section_id'];
 | 
      
        | 168 |  |  | 				$module = $section['module'];
 | 
      
        | 169 |  |  | 				require(WB_PATH.'/modules/'.$module.'/view.php');
 | 
      
        | 170 |  |  | 			}
 | 
      
        | 171 | 106 | stefan | 		} else {
 | 
      
        | 172 | 112 | stefan | 			require(PAGE_CONTENT);
 | 
      
        | 173 | 106 | stefan | 		}
 | 
      
        | 174 |  |  | 	}
 | 
      
        | 175 |  |  | }
 | 
      
        | 176 |  |  | 
 | 
      
        | 177 | 112 | stefan | if (!function_exists('show_content')) {
 | 
      
        | 178 |  |  | 	function show_content($block=1) {
 | 
      
        | 179 |  |  | 		page_content($block);
 | 
      
        | 180 |  |  | 	}
 | 
      
        | 181 | 106 | stefan | }
 | 
      
        | 182 |  |  | 
 | 
      
        | 183 | 112 | stefan | if (!function_exists('show_breadcrumbs')) {
 | 
      
        | 184 | 294 | stefan | 	function show_breadcrumbs($sep=' > ',$tier=1,$links=true,$depth=-1) {
 | 
      
        | 185 | 112 | stefan | 		global $wb;
 | 
      
        | 186 |  |  | 		$page_id=$wb->page_id;
 | 
      
        | 187 |  |  | 		if ($page_id!=0)
 | 
      
        | 188 | 106 | stefan | 		{
 | 
      
        | 189 | 112 | stefan | 	 		global $database;
 | 
      
        | 190 |  |  | 			$bca=$wb->page_trail;
 | 
      
        | 191 |  |  | 			$counter=0;
 | 
      
        | 192 |  |  | 			foreach ($bca as $temp)
 | 
      
        | 193 |  |  | 			{
 | 
      
        | 194 | 294 | stefan | 		        if ($counter>=($tier-1) AND ($depth<0 OR $tier+$depth>$counter))
 | 
      
        | 195 | 112 | stefan | 		        {
 | 
      
        | 196 |  |  | 					if ($counter>=$tier) echo $sep;
 | 
      
        | 197 |  |  | 					$query_menu=$database->query("SELECT menu_title,link FROM ".TABLE_PREFIX."pages WHERE page_id=$temp");
 | 
      
        | 198 |  |  | 					$page=$query_menu->fetchRow();
 | 
      
        | 199 |  |  | 					if ($links==true AND $temp!=$page_id)
 | 
      
        | 200 |  |  | 						echo '<a href="'.page_link($page['link']).'">'.$page['menu_title'].'</a>';
 | 
      
        | 201 |  |  | 					else
 | 
      
        | 202 | 115 | stefan | 					    echo $page['menu_title'];
 | 
      
        | 203 | 112 | stefan | 		        }
 | 
      
        | 204 |  |  | 	            $counter++;
 | 
      
        | 205 |  |  | 			}
 | 
      
        | 206 | 106 | stefan | 		}
 | 
      
        | 207 |  |  | 	}
 | 
      
        | 208 |  |  | }
 | 
      
        | 209 |  |  | 
 | 
      
        | 210 | 48 | stefan | // Function for page title
 | 
      
        | 211 | 112 | stefan | if (!function_exists('page_title')) {
 | 
      
        | 212 |  |  | 	function page_title($spacer = ' - ', $template = '[WEBSITE_TITLE][SPACER][PAGE_TITLE]') {
 | 
      
        | 213 |  |  | 		$vars = array('[WEBSITE_TITLE]', '[PAGE_TITLE]', '[MENU_TITLE]', '[SPACER]');
 | 
      
        | 214 |  |  | 		$values = array(WEBSITE_TITLE, PAGE_TITLE, MENU_TITLE, $spacer);
 | 
      
        | 215 |  |  | 		echo str_replace($vars, $values, $template);
 | 
      
        | 216 |  |  | 	}
 | 
      
        | 217 | 48 | stefan | }
 | 
      
        | 218 |  |  | 
 | 
      
        | 219 |  |  | // Function for page description
 | 
      
        | 220 | 112 | stefan | if (!function_exists('page_description')) {
 | 
      
        | 221 |  |  | 	function page_description() {
 | 
      
        | 222 | 217 | stefan | 		global $wb;
 | 
      
        | 223 |  |  | 		if ($wb->page_description!='') {
 | 
      
        | 224 |  |  | 			echo $wb->page_description;
 | 
      
        | 225 |  |  | 		} else {
 | 
      
        | 226 |  |  | 			echo PAGE_DESCRIPTION;
 | 
      
        | 227 |  |  | 		}
 | 
      
        | 228 | 112 | stefan | 	}
 | 
      
        | 229 | 48 | stefan | }
 | 
      
        | 230 | 217 | stefan | 
 | 
      
        | 231 | 48 | stefan | // Function for page keywords
 | 
      
        | 232 | 112 | stefan | if (!function_exists('page_keywords')) {
 | 
      
        | 233 |  |  | 	function page_keywords() {
 | 
      
        | 234 | 217 | stefan | 		global $wb;
 | 
      
        | 235 |  |  | 		if ($wb->page_keywords!='') {
 | 
      
        | 236 |  |  | 			echo $wb->page_keywords;
 | 
      
        | 237 |  |  | 		} else {
 | 
      
        | 238 |  |  | 			echo WEBSITE_KEYWORDS;
 | 
      
        | 239 |  |  | 		}
 | 
      
        | 240 | 112 | stefan | 	}
 | 
      
        | 241 | 48 | stefan | }
 | 
      
        | 242 |  |  | // Function for page header
 | 
      
        | 243 | 112 | stefan | if (!function_exists('page_header')) {
 | 
      
        | 244 |  |  | 	function page_header($date_format = 'Y') {
 | 
      
        | 245 |  |  | 		echo WEBSITE_HEADER;
 | 
      
        | 246 |  |  | 	}
 | 
      
        | 247 | 48 | stefan | }
 | 
      
        | 248 | 106 | stefan | 
 | 
      
        | 249 | 48 | stefan | // Function for page footer
 | 
      
        | 250 | 112 | stefan | if (!function_exists('page_footer')) {
 | 
      
        | 251 |  |  | 	function page_footer($date_format = 'Y') {
 | 
      
        | 252 |  |  | 		global $starttime;
 | 
      
        | 253 |  |  | 		$vars = array('[YEAR]', '[PROCESSTIME]');
 | 
      
        | 254 |  |  | 		$processtime=array_sum(explode(" ",microtime()))-$starttime;
 | 
      
        | 255 |  |  | 		$values = array(date($date_format),$processtime);
 | 
      
        | 256 |  |  | 		echo str_replace($vars, $values, WEBSITE_FOOTER);
 | 
      
        | 257 |  |  | 	}
 | 
      
        | 258 | 48 | stefan | }
 | 
      
        | 259 |  |  | 
 | 
      
        | 260 |  |  | // Begin WB < 2.4.x template compatibility code
 | 
      
        | 261 |  |  | 	// Make extra_sql accessable through private_sql
 | 
      
        | 262 |  |  | 	$private_sql = $extra_sql;
 | 
      
        | 263 |  |  | 	$private_where_sql = $extra_where_sql;
 | 
      
        | 264 |  |  | 	// Query pages for menu
 | 
      
        | 265 |  |  | 	$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");
 | 
      
        | 266 |  |  | 	// Check if current pages is a parent page and if we need its submenu
 | 
      
        | 267 |  |  | 	if(PARENT == 0) {
 | 
      
        | 268 |  |  | 		// Get the pages submenu
 | 
      
        | 269 |  |  | 		$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");
 | 
      
        | 270 |  |  | 	} else {
 | 
      
        | 271 |  |  | 		// Get the pages submenu
 | 
      
        | 272 |  |  | 		$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");
 | 
      
        | 273 |  |  | 	}
 | 
      
        | 274 |  |  | // End WB < 2.4.x template compatibility code
 | 
      
        | 275 |  |  | // Include template file
 | 
      
        | 276 |  |  | 
 | 
      
        | 277 |  |  | 
 | 
      
        | 278 |  |  | ?>
 |