wb-archiv283/branches/2.8.x/wb/modules/output_filter/filters/filterDroplets.php @ 1626
| 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 |
}
|