Source code for file /pattemplate/patTemplate/Function/Time.php
Documentation is available at Time.php
* patTemplate function that calculates the current time
* or any other time and returns it in the specified format.
* $Id: Time.php 95 2004-04-06 18:50:25Z schst $
// Check to ensure this file is within the rest of the framework
* patTemplate function that calculates the current time
* or any other time and returns it in the specified format.
* $Id: Time.php 95 2004-04-06 18:50:25Z schst $
* @param array parameters of the function (= attributes of the tag)
* @param string content of the tag
* @return string content to insert into the template
function call( $params, $content )
$params['time'] =
$content;
if( isset
( $params['time'] ) )
$params['time'] =
strtotime( $params['time'] );
$params['time'] =
time();
return date( $params['format'], $params['time'] );