summaryrefslogtreecommitdiff
path: root/tests/UnitTests/__shared/PHPunitplugins/function.getparams.php
blob: 41075800cc3245c24fd1bf58706df619a7ad6092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
 * Smarty plugin params
 *


 */

use Smarty\Template;

/**
 * Smarty {gatparams}
 *
 * @param array  $params   parameter array
 * @param object $template template object
 *
 * @return string
 */
function smarty_function_getparams($params, Template $template)
{
    return var_export($params, true);
}