summaryrefslogtreecommitdiff
path: root/smartyplugins/modifier.times.php
blob: 6a8fcdafe3d34fa24c3f59d2df708a73f5a35cb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
namespace Bitweaver\Plugins;

/**
 * Smarty plugin
 * @package Smarty
 * @subpackage plugins
 */

/**
 * smarty_modifier_times
 */
function smarty_modifier_times($n1,$n2)
{
  return $n1*$n2;
}

/* vim: set expandtab: */