Files

24 lines
371 B
PHP
Raw Permalink Normal View History

<?php
/**
* Smarty block plugin dummy for testing plugin functionallity
*
2023-08-08 00:04:14 +02:00
*/
/**
* Smarty {dummyblock} {/dummyblock}
*
* @param $params
* @param $content
* @param $template
* @param $repeat
*/
function smarty_block_dummyblock($params, $content, $template, &$repeat)
{
if (is_null($content)) {
return;
} else {
return $content;
}
}