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 1740 2012-09-05 04:31:08Z Luisehahne $
13
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/framework/frontend.functions.php $
14
 * @lastmodified    $Date: 2012-09-05 06:31:08 +0200 (Wed, 05 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
				// make a anchor for every section
309
    				if(defined('SEC_ANCHOR') && SEC_ANCHOR!='') {
310
    					echo "\n".'<a class="section_anchor" id="'.SEC_ANCHOR.$section_id.'" name="'.SEC_ANCHOR.$section_id.'"></a>'."\n";
311
    				}
312
					require(WB_PATH.'/modules/'.$module.'/view.php');
313
					$content = ob_get_clean();
314
				} else {
315
					continue;
316
				}
317

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

    
335
	}
336
}
337

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
551

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

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

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

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

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