Files
zurawik.pl/core/plugins/Smarty/modifier.dateMod.php
2026-05-15 18:33:51 +02:00

13 lines
178 B
PHP

<?php
/**
* @author mago
*/
function smarty_modifier_dateMod($string, $format='d.m.Y') {
$i = strtotime($string);
if($i == 0) {
return;
}
return date($format,$i);
}
?>