Project

General

Profile

1
//:Randomly display one WYSIWYG section from a given list
2
//:Use [[ShowRandomWysiwyg?section=10,12,15,20]] possible Delimiters: [ ,;:|-+#/ ]
3
global $database;
4
	$content = '';
5
	if (isset($section)) {
6
		if( preg_match('/^[0-9]+(?:\s*[\,\|\-\;\:\+\#\/]\s*[0-9]+\s*)*$/', $section)) {
7
			if (is_readable(WB_PATH.'/modules/wysiwyg/view.php')) {
8
			// if valid arguments given and module wysiwyg is installed
9
				// split and sanitize arguments
10
				$aSections = preg_split('/[\s\,\|\-\;\:\+\#\/]+/', $section);
11
				$section_id = $aSections[array_rand($aSections)]; // get random element
12
				ob_start(); // generate output by wysiwyg module
13
				require(WB_PATH.'/modules/wysiwyg/view.php');
14
				$content = ob_get_clean();
15
			}
16
		}
17
	}
18
return $content;
(12-12/18)