Files

23 lines
312 B
PHP
Raw Permalink Normal View History

<?php
/**
* Smarty plugin params
*
2023-08-08 00:04:14 +02:00
*/
2023-08-08 00:04:14 +02:00
use Smarty\Template;
/**
* Smarty {gatparams}
*
* @param array $params parameter array
* @param object $template template object
*
* @return string
*/
2023-08-08 00:04:14 +02:00
function smarty_function_getparams($params, Template $template)
{
return var_export($params, true);
}