Welcome to mirror list, hosted at ThFree Co, Russian Federation.

function.var_dump.php « plugins « libs « Smarty-2.6.0 « phpDocumentor « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4278b378032c47fc3f21490e7149d8ed6146a79b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/** @package Smarty
* @subpackage plugins */

/**
 * Smarty plugin
 * -------------------------------------------------------------
 * Type:     function
 * Name:     assign
 * Purpose:  assign a value to a template variable
 * -------------------------------------------------------------
 */
function smarty_function_var_dump($params, &$smarty)
{
    var_dump('<pre>',$params,'</pre>');
}

/* vim: set expandtab: */

?>