Project

General

Profile

1
<?php
2
/**
3
 * execute droplets
4
 * @param string $content
5
 * @return string 
6
 */
7
	function doFilterDroplets($content)
8
	{
9
		if(file_exists(WB_PATH .'/modules/droplets/droplets.php')) {
10
			include_once(WB_PATH .'/modules/droplets/droplets.php');
11
			if(function_exists('evalDroplets')) {
12
				$content = evalDroplets($content);
13
			}
14
		}
15
		return $content;
16
	}
(2-2/6)