20871544ad8dc839d8358aa4c067b04add52e7ee
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / smarty / node_methodz / modifier.epochal_date.php
1 <?php
2 /*
3 * Smarty plugin
4 * -------------------------------------------------------------
5 * Type: modifier
6 * Name: epochal_date
7 * Version: 0.23
8 * Date: December 12, 2010
9 * Author: Daniel Hromada
10 * Purpose: let's consider the beginning of UNIX epoch to be more relevant to our current situation the birth of christ
11 * Examples: {$smarty.now|epochal_date}
12 * -------------------------------------------------------------
13 */
14 function smarty_modifier_epochal_date($date) {
15 $year=date("Y",$date);
16 echo str_replace($year,$year-1970,date("d/m/Y",$date));
17 return $date;
18 }
19 ?>
This page took 0.280879 seconds and 3 git commands to generate.