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: */