summaryrefslogtreecommitdiffstats
path: root/plugins/modifier.count.php
blob: c077c11d927b866c708b0bb55b7a9de7bcd464ad (plain)
1
2
3
4
5
6
7
8
<?php

function smarty_modifier_count($value)
{
   return count($value);
}

?>