Project

General

Profile

1
<?php
2
/**$extra_sql
3
 *
4
 * @category        framework
5
 * @package         frontend.functions
6
 * @author          Ryan Djurovich, WebsiteBaker Project
7
 * @copyright       2009-2012, WebsiteBaker Org. e.V.
8
 * @link			http://www.websitebaker2.org/
9
 * @license         http://www.gnu.org/licenses/gpl.html
10
 * @platform        WebsiteBaker 2.8.x
11
 * @requirements    PHP 5.2.2 and higher
12
 * @version         $Id: frontend.functions.php 1746 2012-09-08 16:21:44Z Luisehahne $
13
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/framework/frontend.functions.php $
14
 * @lastmodified    $Date: 2012-09-08 18:21:44 +0200 (Sat, 08 Sep 2012) $
15
 *
16
*/
17
/* -------------------------------------------------------- */
18
// Must include code to stop this file being accessed directly
19
if(!defined('WB_PATH')) {
20
	require_once(dirname(__FILE__).'/globalExceptionHandler.php');
21
	throw new IllegalFileException();
22
}
23
/* -------------------------------------------------------- */
24
// compatibility mode for versions before 2.8.1
25
	if(isset($wb)) {$admin = $wb; }
26
	if(isset($wb->default_link)) { $default_link = $wb->default_link; }
27
	if(isset($wb->page_trail)) {$page_trail = $wb->page_trail; }
28
	if(isset($wb->page_description)) {$page_description = $wb->page_description;}
29
	if(isset($wb->page_keywords)) {$page_keywords = $wb->page_keywords;}
30
	if(isset($wb->link)) {$page_link = $wb->link;}
31

    
32
	$include_head_link_css = '';
33
	$include_body_links    = '';
34
	$include_head_links    = '';
35

    
36
// workout to included frontend.css, fronten.js and frontend_body.js in snippets
37
	$sql  = 'SELECT `directory` FROM `'.TABLE_PREFIX.'addons` ';
38
	$sql .= 'WHERE `type`=\'module\' AND `function`=\'snippet\'';
39
	if(($resSnippets = $database->query($sql))) {
40
		while($recSnippet = $resSnippets->fetchRow()) {
41
			$module_dir = $recSnippet['directory'];
42
			if (file_exists(WB_PATH.'/modules/'.$module_dir.'/include.php')) {
43
				include(WB_PATH.'/modules/'.$module_dir.'/include.php');
44
			// check if frontend.css file needs to be included into the <head></head> of index.php
45
				if( file_exists(WB_PATH .'/modules/'.$module_dir.'/frontend.css')) {
46
					$include_head_link_css .= '<link href="'.WB_URL.'/modules/'.$module_dir.'/frontend.css"';
47
					$include_head_link_css .= ' rel="stylesheet" type="text/css" media="screen" />'."\n";
48
					$include_head_file = 'frontend.css';
49
				}
50
			// check if frontend.js file needs to be included into the <body></body> of index.php
51
				if(file_exists(WB_PATH .'/modules/'.$module_dir.'/frontend.js')) {
52
					$include_head_links .= '<script src="'.WB_URL.'/modules/'.$module_dir.'/frontend.js" type="text/javascript"></script>'."\n";
53
					$include_head_file = 'frontend.js';
54
				}
55
			// check if frontend_body.js file needs to be included into the <body></body> of index.php
56
				if(file_exists(WB_PATH .'/modules/'.$module_dir.'/frontend_body.js')) {
57
					$include_body_links .= '<script src="'.WB_URL.'/modules/'.$module_dir.'/frontend_body.js" type="text/javascript"></script>'."\n";
58
					$include_body_file = 'frontend_body.js';
59
				}
60
			}
61
		}
62
	}
63

    
64
// Frontend functions
65
if(!function_exists('page_link')) {
66
	/**
67
	 * generate full qualified URL from relative link based on pages_dir
68
	 * @param string $link
69
	 * @return string
70
	 */
71
	function page_link($link) {
72
		return $GLOBALS['wb']->page_link($link);
73
	}
74
}
75

    
76
if (!function_exists('get_page_link')) {
77
    /**
78
	 * get relative link from database based on pages_dir
79
	 * @global <type> $database
80
	 * @param <type> $id
81
	 * @return <type>
82
	 */
83
	function get_page_link( $id )
84
    {
85
        global $database;
86
        $sql = 'SELECT `link` FROM `'.TABLE_PREFIX.'pages` WHERE `page_id` = '.$id;
87
        $link = $database->get_one( $sql );
88
        return $link;
89
    }
90
}
91

    
92
//function to highlight search results
93
if(!function_exists('search_highlight')) {
94
	/**
95
	 *
96
	 * @staticvar boolean $string_ul_umlaut
97
	 * @staticvar boolean $string_ul_regex
98
	 * @param string $foo
99
	 * @param array $arr_string
100
	 * @return string
101
	 */
102
	function search_highlight($foo='', $arr_string=array()) {
103
		require_once(WB_PATH.'/framework/functions.php');
104
		static $string_ul_umlaut = FALSE;
105
		static $string_ul_regex = FALSE;
106
		if($string_ul_umlaut === FALSE || $string_ul_regex === FALSE) {
107
			require(WB_PATH.'/search/search_convert.php');
108
		}
109
		$foo = entities_to_umlauts($foo, 'UTF-8');
110
		array_walk($arr_string, create_function('&$v,$k','$v = preg_quote($v, \'~\');'));
111
		$search_string = implode("|", $arr_string);
112
		$string = str_replace($string_ul_umlaut, $string_ul_regex, $search_string);
113
		// the highlighting
114
		// match $string, but not inside <style>...</style>, <script>...</script>, <!--...--> or HTML-Tags
115
		// Also droplet tags are now excluded from highlighting.
116
		// split $string into pieces - "cut away" styles, scripts, comments, HTML-tags and eMail-addresses
117
		// we have to cut <pre> and <code> as well.
118
		// for HTML-Tags use <(?:[^<]|<.*>)*> which will match strings like <input ... value="<b>value</b>" >
119
		$matches = preg_split("~(\[\[.*\]\]|<style.*</style>|<script.*</script>|<pre.*</pre>|<code.*</code>|<!--.*-->|<(?:[^<]|<.*>)*>|\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,8}\b)~iUs",$foo,-1,(PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY));
120
		if(is_array($matches) && $matches != array()) {
121
			$foo = "";
122
			foreach($matches as $match) {
123
				if($match{0}!="<" && !preg_match('/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,8}$/i', $match) && !preg_match('~\[\[.*\]\]~', $match)) {
124
					$match = str_replace(array('&lt;', '&gt;', '&amp;', '&quot;', '&#039;', '&nbsp;'), array('<', '>', '&', '"', '\'', "\xC2\xA0"), $match);
125
					$match = preg_replace('~('.$string.')~ui', '_span class=_highlight__$1_/span_',$match);
126
					$match = str_replace(array('&', '<', '>', '"', '\'', "\xC2\xA0"), array('&amp;', '&lt;', '&gt;', '&quot;', '&#039;', '&nbsp;'), $match);
127
					$match = str_replace(array('_span class=_highlight__', '_/span_'), array('<span class="highlight">', '</span>'), $match);
128
				}
129
				$foo .= $match;
130
			}
131
		}
132

    
133
		if(DEFAULT_CHARSET != 'utf-8') {
134
			$foo = umlauts_to_entities($foo, 'UTF-8');
135
		}
136
		return $foo;
137
	}
138
}
139

    
140
if (!function_exists('page_menu')) {
141
	/**
142
	 * Old menu generator
143
	 * @deprecated from WB 2.9.x and up
144
	 * @global <type> $wb
145
	 * @param <type> $parent
146
	 * @param <type> $menu_number
147
	 * @param <type> $item_template
148
	 * @param <type> $menu_header
149
	 * @param <type> $menu_footer
150
	 * @param <type> $default_class
151
	 * @param <type> $current_class
152
	 * @param <type> $recurse
153
	 */
154
	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) {
155
		global $wb;
156
		$wb->menu_number=$menu_number;
157
		$wb->menu_item_template=$item_template;
158
		$wb->menu_item_footer='';
159
		$wb->menu_parent = $parent;
160
		$wb->menu_header = $menu_header;
161
		$wb->menu_footer = $menu_footer;
162
		$wb->menu_default_class = $default_class;
163
		$wb->menu_current_class = $current_class;
164
		$wb->menu_recurse = $recurse+2;
165
		$wb->menu();
166
		unset($wb->menu_parent);
167
		unset($wb->menu_number);
168
		unset($wb->menu_item_template);
169
		unset($wb->menu_item_footer);
170
		unset($wb->menu_header);
171
		unset($wb->menu_footer);
172
		unset($wb->menu_default_class);
173
		unset($wb->menu_current_class);
174
		unset($wb->menu_start_level);
175
		unset($wb->menu_collapse);
176
		unset($wb->menu_recurse);
177
	}
178
}
179

    
180
if (!function_exists('show_menu')) {
181
	/**
182
	 * Old menu generator
183
	 * @deprecated from WB 2.9.x and up
184
	 * @global  $wb
185
	 * @param <type> $menu_number
186
	 * @param <type> $start_level
187
	 * @param <type> $recurse
188
	 * @param <type> $collapse
189
	 * @param <type> $item_template
190
	 * @param <type> $item_footer
191
	 * @param <type> $menu_header
192
	 * @param <type> $menu_footer
193
	 * @param <type> $default_class
194
	 * @param <type> $current_class
195
	 * @param <type> $parent
196
	 */
197
	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) {
198
		global $wb;
199
		if (isset($menu_number))
200
			$wb->menu_number=$menu_number;
201
		if (isset($start_level))
202
			$wb->menu_start_level=$start_level;
203
		if (isset($recurse))
204
			$wb->menu_recurse=$recurse;
205
		if (isset($collapse))
206
			$wb->menu_collapse=$collapse;
207
		if (isset($item_template))
208
			$wb->menu_item_template=$item_template;
209
		if (isset($item_footer))
210
			$wb->menu_item_footer=$item_footer;
211
		if (isset($menu_header))
212
			$wb->menu_header=$menu_header;
213
		if (isset($menu_footer))
214
			$wb->menu_footer=$menu_footer;
215
		if (isset($default_class))
216
			$wb->menu_default_class=$default_class;
217
		if (isset($current_class))
218
			$wb->menu_current_class=$current_class;
219
		if (isset($parent))
220
			$wb->menu_parent=$parent;
221
		$wb->menu();
222
		unset($wb->menu_recurse);
223
		unset($wb->menu_parent);
224
		unset($wb->menu_start_level);
225
	}
226
}
227

    
228
if (!function_exists('page_content')) {
229
	/**
230
	 *
231
	 * @global array $TEXT
232
	 * @global array $MENU
233
	 * @global array $HEADING
234
	 * @global array $MESSAGE
235
	 * @global array $globals several global vars
236
	 * @global datadase $database
237
	 * @global wb $wb
238
	 * @global string $global_name
239
	 * @param int $block
240
	 * @param boolean true to print $content, false return $content
241
	 * @return void
242
	 */
243
	function page_content($block = 1) {
244
		// Get outside objects
245
		global $TEXT,$MENU,$HEADING,$MESSAGE;
246
		global $globals;
247
		global $database;
248
		global $wb;
249
		$admin = $wb;
250
        $retVal = '';
251
		if ($wb->page_access_denied==true) {
252
	        echo $MESSAGE['FRONTEND_SORRY_NO_VIEWING_PERMISSIONS'];
253
			return;
254
		}
255
		if ($wb->page_no_active_sections==true) {
256
	        echo $MESSAGE['FRONTEND_SORRY_NO_ACTIVE_SECTIONS'];
257
			return;
258
		}
259
		if(isset($globals) AND is_array($globals)) {
260
            foreach($globals AS $global_name) {
261
                global $$global_name;
262
			}
263
        }
264
		// Make sure block is numeric
265
		if( ($block = intval($block)) == 0 ) { $block = 1; }
266
		// Include page content
267
		if(!defined('PAGE_CONTENT') OR $block!=1)
268
        {
269
			$page_id = intval($wb->page_id);
270

    
271
		// First get all sections for this page
272
			$sql  = 'SELECT `section_id`, `module`, `publ_start`, `publ_end` ';
273
			$sql .= 'FROM `'.TABLE_PREFIX.'sections` ';
274
			$sql .= 'WHERE `page_id`='.$page_id.' AND `block`='.$block.' ';
275
			$sql .= 'ORDER BY `position`';
276
			if( !($oSections = $database->query($sql)) ) { return; }
277
		// If none were found, check if default content is supposed to be shown
278
			if($oSections->numRows() == 0) {
279
				if($wb->default_block_content == 'none') { return; }
280
				if (is_numeric($wb->default_block_content)) {
281
					$page_id = $wb->default_block_content;
282
				} else {
283
					$page_id = $wb->default_page_id;
284
				}
285

    
286
				$sql  = 'SELECT `section_id`, `module`, `publ_start`, `publ_end` ';
287
				$sql .= 'FROM `'.TABLE_PREFIX.'sections` ';
288
				$sql .= 'WHERE `page_id`='.$page_id.' AND `block`='.$block.' ';
289
				$sql .= 'ORDER BY `position`';
290
				if( !($oSections = $database->query($sql)) ) { return; }
291
				// Still no cotent found? Give it up, there's just nothing to show!
292
				if($oSections->numRows() == 0) { return; }
293
			}
294

    
295
			// Loop through them and include their module file
296
			while($section = $oSections->fetchRow()) {
297
				// skip this section if it is out of publication-date
298
				$now = time();
299
				if( !(($now<=$section['publ_end'] || $section['publ_end']==0) && ($now>=$section['publ_start'] || $section['publ_start']==0)) ) {
300
					continue;
301
				}
302
				$section_id = $section['section_id'];
303
				$module = $section['module'];
304
                // check if module exists - feature: write in errorlog
305
				if(file_exists(WB_PATH.'/modules/'.$module.'/view.php')) {
306
				// fetch content -- this is where to place possible output-filters (before highlighting)
307
					ob_start(); // fetch original content
308
                    $sectionAnchor = (defined('SEC_ANCHOR') && SEC_ANCHOR!='') ? SEC_ANCHOR.$section_id : 'section_'.$section_id;
309
                    echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="wb_'.$module.'" >'.PHP_EOL;
310
					require(WB_PATH.'/modules/'.$module.'/view.php');
311
                    echo PHP_EOL.'</div><!-- '.$module.$section_id.' -->'.PHP_EOL;
312
					$content = ob_get_clean();
313
				} else {
314
					continue;
315
				}
316

    
317
				// highlights searchresults
318
				if(isset($_GET['searchresult']) && is_numeric($_GET['searchresult']) && !isset($_GET['nohighlight']) && isset($_GET['sstring']) && !empty($_GET['sstring']))
319
                {
320
					$arr_string = explode(" ", $_GET['sstring']);
321
					if($_GET['searchresult']==2) {  //exact match
322
						$arr_string[0] = str_replace("_", " ", $arr_string[0]);
323
					}
324
					echo search_highlight($content, $arr_string);
325
				} else {
326
					echo $content;
327
				}
328
			}
329
		} else {
330
			require(PAGE_CONTENT);
331
		}
332
    return $retVal;
333

    
334
	}
335
}
336

    
337
if (!function_exists('show_content')) {
338
	function show_content($block=1) {
339
		page_content($block);
340
	}
341
}
342

    
343
if (!function_exists('show_breadcrumbs'))
344
{
345
	function show_breadcrumbs($sep = ' &raquo; ',$level = 0, $links = true, $depth = -1, $title = '')
346
    {
347
		global $wb,$database,$MENU;
348
		$page_id = $wb->page_id;
349
        $title = (trim($title) == '') ? $MENU['BREADCRUMB'] : $title;
350
		if ($page_id != 0)
351
		{
352
			$counter = 0;
353
            // get links as array
354
            $bread_crumbs = $wb->page_trail;
355
            $count = sizeof($bread_crumbs);
356
            // level can't be greater than sum of links
357
            $level = ($count <= $level ) ? $count-1 : $level;
358
            // set level from which to show, delete indexes in array
359
			$crumbs = array_slice($bread_crumbs, $level );
360
            $depth = ($depth <= 0) ? sizeof($crumbs) : $depth;
361
            // if empty array, set orginal links
362
            $crumbs = (!empty($crumbs)) ?  $crumbs : $wb->page_trail;
363
            $total_crumbs = ( ($depth <= 0) || ($depth > sizeof($crumbs)) ) ? sizeof($crumbs) : $depth;
364
            print '<div class="breadcrumb"><span class="title">'.$title.'</span>';
365
          //  print_r($crumbs);
366
			foreach ($crumbs as $temp)
367
            {
368
                if($counter == $depth) { break; }
369
                // set links and separator
370
					$sql  = 'SELECT * FROM `'.TABLE_PREFIX.'pages` WHERE `page_id`='.(int)$temp;
371
					$query_menu = $database->query($sql);
372
					$page = $query_menu->fetchRow();
373
                    $show_crumb = (($links == true) && ($temp != $page_id))
374
                            ? '<a href="'.page_link($page['link']).'" class="link">'.$page['menu_title'].'</a>'
375
                            : '<span class="crumb">'.$page['menu_title'].'</span>';
376
                    // Permission
377
                    switch ($page['visibility'])
378
                    {
379
                        case 'none' :
380
                        case 'hidden' :
381
                        // if show, you know there is an error in a hidden page
382
                            print $show_crumb.'&nbsp;';
383
	                        break;
384
                        default :
385
                            print $show_crumb;
386
		                    break;
387
                    }
388

    
389
                    if ( ( $counter <> $total_crumbs-1 ) )
390
                    {
391
                        print '<span class="separator">'.$sep.'</span>';
392
                    }
393
	            $counter++;
394
            }
395
            print "</div>\n";
396
		}
397
	}
398
}
399

    
400
// Function for page title
401
if (!function_exists('page_title')) {
402
	function page_title($spacer = ' - ', $template = '[WEBSITE_TITLE][SPACER][PAGE_TITLE]') {
403
		$vars = array('[WEBSITE_TITLE]', '[PAGE_TITLE]', '[MENU_TITLE]', '[SPACER]');
404
		$values = array(WEBSITE_TITLE, PAGE_TITLE, MENU_TITLE, $spacer);
405
		echo str_replace($vars, $values, $template);
406
	}
407
}
408

    
409
// Function for page description
410
if (!function_exists('page_description')) {
411
	function page_description() {
412
		global $wb;
413
		if ($wb->page_description!='') {
414
			echo $wb->page_description;
415
		} else {
416
			echo WEBSITE_DESCRIPTION;
417
		}
418
	}
419
}
420

    
421
// Function for page keywords
422
if (!function_exists('page_keywords')) {
423
	function page_keywords() {
424
		global $wb;
425
		if ($wb->page_keywords!='') {
426
			echo $wb->page_keywords;
427
		} else {
428
			echo WEBSITE_KEYWORDS;
429
		}
430
	}
431
}
432

    
433
// Function for page header
434
if (!function_exists('page_header')) {
435
	function page_header($date_format = 'Y') {
436
		echo WEBSITE_HEADER;
437
	}
438
}
439

    
440
// Function for page footer
441
if (!function_exists('page_footer')) {
442
	function page_footer($date_format = 'Y') {
443
		global $starttime;
444
		$vars = array('[YEAR]', '[PROCESS_TIME]');
445
		$processtime=array_sum(explode(" ",microtime()))-$starttime;
446
		$values = array(gmdate($date_format),$processtime);
447
		echo str_replace($vars, $values, WEBSITE_FOOTER);
448
	}
449
}
450

    
451
function bind_jquery ($file_id='jquery')
452
{
453

    
454
        $jquery_links = '';
455
		/* include the Javascript jquery api  */
456
		if( $file_id == 'jquery' AND file_exists(WB_PATH .'/include/jquery/jquery-min.js'))
457
        {
458
            $language = LANGUAGE;
459
			$jquery_links .= "<script type=\"text/javascript\">\n"
460
                ."var URL = '".WB_URL."';\n"
461
                ."var LANGUAGE = '".$language."';\n"
462
                ."var WB_URL = '".WB_URL."';\n"
463
                ."var TEMPLATE_DIR = '".TEMPLATE_DIR."';\n"
464
                ."</script>\n";
465

    
466
			$jquery_links .= '<script src="'.WB_URL.'/include/jquery/jquery-min.js" type="text/javascript"></script>'."\n";
467
			$jquery_links .= '<script src="'.WB_URL.'/include/jquery/jquery-insert.js" type="text/javascript"></script>'."\n";
468
			$jquery_links .= '<script src="'.WB_URL.'/include/jquery/jquery-include.js" type="text/javascript"></script>'."\n";
469
            /* workout to insert ui.css and theme */
470
            $jquery_theme =  WB_PATH.'/modules/jquery/jquery_theme.js';
471
			$jquery_links .=  file_exists($jquery_theme)
472
                ? '<script src="'.WB_URL.'/modules/jquery/jquery_theme.js" type="text/javascript"></script>'."\n"
473
                : '<script src="'.WB_URL.'/include/jquery/jquery_theme.js" type="text/javascript"></script>'."\n";
474
            /* workout to insert plugins functions, set in templatedir */
475
            $jquery_frontend_file = TEMPLATE_DIR.'/jquery_frontend.js';
476
			$jquery_links .= file_exists(str_replace( WB_URL, WB_PATH, $jquery_frontend_file))
477
                ? '<script src="'.$jquery_frontend_file.'" type="text/javascript"></script>'."\n"
478
                : '';
479
		}
480
    return $jquery_links;
481
}
482

    
483
// Function to add optional module Javascript into the <body> section of the frontend
484
if(!function_exists('register_frontend_modfiles_body'))
485
{
486
	function register_frontend_modfiles_body($file_id="js")
487
    {
488
		// sanity check of parameter passed to the function
489
		$file_id = strtolower($file_id);
490
		if($file_id !== "css" && $file_id !== "javascript" && $file_id !== "js" && $file_id !== "jquery")
491
        {
492
			return;
493
		}
494

    
495
       // define constant indicating that the register_frontent_files was invoked
496
       if(!defined('MOD_FRONTEND_BODY_JAVASCRIPT_REGISTERED')) define('MOD_FRONTEND_BODY_JAVASCRIPT_REGISTERED', true);
497
		global $wb, $database, $include_body_links;
498
		// define default baselink and filename for optional module javascript files
499
		$body_links = "";
500

    
501
		/* include the Javascript jquery api  */
502
        $body_links .= bind_jquery($file_id);
503

    
504
		if($file_id !== "css" && $file_id == "js" && $file_id !== "jquery")
505
        {
506
    		$base_link = '<script src="'.WB_URL.'/modules/{MODULE_DIRECTORY}/frontend_body.js" type="text/javascript"></script>';
507
    		$base_file = "frontend_body.js";
508

    
509
			// ensure that frontend_body.js is only added once per module type
510
    		if(!empty($include_body_links))
511
            {
512
    			if(strpos($body_links, $include_body_links) === false)
513
                {
514
    				$body_links .= $include_body_links;
515
    			}
516
    			$include_body_links = '';
517
    		}
518

    
519
    		// gather information for all models embedded on actual page
520
    		$page_id = $wb->page_id;
521
			$sql = 'SELECT `module` FROM `'.TABLE_PREFIX.'sections` ';
522
			$sql .= 'WHERE `page_id` = '.(int)$page_id.' AND `module`<>\'wysiwyg\'';
523
    		if( ($query_modules = $database->query($sql)) )
524
			{
525
	    		while($row = $query_modules->fetchRow())
526
	            {
527
	    			// check if page module directory contains a frontend_body.js file
528
	    			if(file_exists(WB_PATH ."/modules/" .$row['module'] ."/$base_file"))
529
	                {
530
	    			// create link with frontend_body.js source for the current module
531
	    				$tmp_link = str_replace("{MODULE_DIRECTORY}", $row['module'], $base_link);
532

    
533
	    				// define constant indicating that the register_frontent_files_body was invoked
534
	    					if(!defined('MOD_FRONTEND_BODY_JAVASCRIPT_REGISTERED')) { define('MOD_FRONTEND_BODY_JAVASCRIPT_REGISTERED', true);}
535

    
536
	    				// ensure that frontend_body.js is only added once per module type
537
	    				if(strpos($body_links, $tmp_link) === false)
538
	                    {
539
	    					$body_links .= $tmp_link;
540
	    				}
541
	    			}
542
	    		}
543
            }
544
        }
545

    
546
		print $body_links."\n"; ;
547
	}
548
}
549

    
550

    
551
// Function to add optional module Javascript or CSS stylesheets into the <head> section of the frontend
552
if(!function_exists('register_frontend_modfiles'))
553
{
554
	function register_frontend_modfiles($file_id="css")
555
    {
556
		// sanity check of parameter passed to the function
557
		$file_id = strtolower($file_id);
558
		if($file_id !== "css" && $file_id !== "javascript" && $file_id !== "js" && $file_id !== "jquery")
559
        {
560
			return;
561
		}
562

    
563
		global $wb, $database, $include_head_link_css, $include_head_links;
564
		// define default baselink and filename for optional module javascript and stylesheet files
565
		$head_links = "";
566

    
567
        switch ($file_id)
568
        {
569
            case 'css':
570
			$base_link = '<link href="'.WB_URL.'/modules/{MODULE_DIRECTORY}/frontend.css"';
571
			$base_link.= ' rel="stylesheet" type="text/css" media="screen" />';
572
			$base_file = "frontend.css";
573
    		if(!empty($include_head_link_css))
574
            {
575
              $head_links .=  !strpos($head_links, $include_head_link_css) ? $include_head_link_css : '';
576
              $include_head_link_css = '';
577
            }
578
            break;
579
            case 'jquery':
580
            $head_links .= bind_jquery($file_id);
581
            break;
582
            case 'js':
583
			$base_link = '<script src="'.WB_URL.'/modules/{MODULE_DIRECTORY}/frontend.js" type="text/javascript"></script>';
584
			$base_file = "frontend.js";
585
    		if(!empty($include_head_links))
586
            {
587
              $head_links .= !strpos($head_links, $include_head_links) ? $include_head_links : '';
588
              $include_head_links = '';
589
            }
590
            break;
591
            default:
592
            break;
593
		}
594

    
595
        if( $file_id != 'jquery')
596
        {
597
    		// gather information for all models embedded on actual page
598
    		$page_id = $wb->page_id;
599
			$sql  = 'SELECT `module` FROM `'.TABLE_PREFIX.'sections` ';
600
			$sql .= 'WHERE `page_id` = '.(int)$page_id.' AND `module`<>\'wysiwyg\'';
601
    		if( ($query_modules = $database->query($sql)) )
602
			{
603
	    		while($row = $query_modules->fetchRow())
604
	            {
605
	    			// check if page module directory contains a frontend.js or frontend.css file
606
	    			if(file_exists(WB_PATH ."/modules/" .$row['module'] ."/$base_file"))
607
	                {
608
	    			// create link with frontend.js or frontend.css source for the current module
609
	    				$tmp_link = str_replace("{MODULE_DIRECTORY}", $row['module'], $base_link);
610

    
611
	    				// define constant indicating that the register_frontent_files was invoked
612
	    				if($file_id == 'css')
613
	                    {
614
	    					if(!defined('MOD_FRONTEND_CSS_REGISTERED')) define('MOD_FRONTEND_CSS_REGISTERED', true);
615
	    				} else
616
	                    {
617
	    					if(!defined('MOD_FRONTEND_JAVASCRIPT_REGISTERED')) define('MOD_FRONTEND_JAVASCRIPT_REGISTERED', true);
618
	    				}
619
	    				// ensure that frontend.js or frontend.css is only added once per module type
620
	    				if(strpos($head_links, $tmp_link) === false)
621
	                    {
622
	    					$head_links .= $tmp_link."\n";
623
	    				}
624
	    			};
625
	    		}
626
			}
627
       		// include the Javascript email protection function
628
       		if( $file_id != 'css' && file_exists(WB_PATH .'/modules/droplets/js/mdcr.js'))
629
               {
630
       			$head_links .= '<script src="'.WB_URL.'/modules/droplets/js/mdcr.js" type="text/javascript"></script>'."\n";
631
       		}
632
               elseif( $file_id != 'css' && file_exists(WB_PATH .'/modules/output_filter/js/mdcr.js'))
633
               {
634
       			$head_links .= '<script src="'.WB_URL.'/modules/output_filter/js/mdcr.js" type="text/javascript"></script>'."\n";
635
       		}
636
        }
637
        print $head_links;
638
    }
639
}
640
/*
641
	function moveCssToHead($content) {
642
		// move css definitions into head section
643
		$pattern1 = '/(?:<body.*?)(<link[^>]*?\"text\/css\".*?\/>)/si';
644
		$pattern2 = '/(?:<body.*?)(<style[^>]*?\"text\/css\"[^>]* ?>.*?<\/style>)/si';
645
		while(preg_match($pattern1, $content, $matches)==1) {
646
		// loop through all linked CSS
647
			$insert = $matches[1];
648
			$content = str_replace($insert, '', $content);
649
			$insert = "\n".$insert."\n</head>\n<body";
650
			$content = preg_replace('/<\/head>.*?<body/si', $insert, $content);
651
		}
652
		while(preg_match($pattern2, $content, $matches)==1) {
653
		// loop through all inline CSS
654
			$insert = $matches[1];
655
			$content = str_replace($insert, '', $content);
656
			$insert = "\n".$insert."\n</head>\n<body";
657
			$content = preg_replace('/<\/head>.*?<body/si', $insert, $content);
658
		}
659
		return $content;
660
	}
661
*/
(18-18/25)