0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: modifier.duration.php
<?php //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } /* * Smarty plugin * ------------------------------------------------------------- * Type: modifier * Name: duration * Purpose: formats a duration from seconds * ------------------------------------------------------------- */ function smarty_modifier_duration($string) { $result=Array(); if($string > 60*60*24) { $days = floor($string/(60*60*24)); $result[]="$days days"; $string = $string % (60*60*24); } if($string > 60*60) { $hours = floor($string/(60*60)); $result[]="$hours hours"; $string = $string % (60*60); } if($string > 60) { $mins = floor($string/(60)); $result[]="$mins minutes"; $string = $string % (60); } if($string > 0) { $result[]="$string seconds"; } return implode(' ',$result); } ?>