*/ /** * patTemplate modfifier Dateformat * * formats dates and times according to a format string. * * Possible attributes are: * - format (string) * * See the PHP documentation for strftime() for * more information. * * @package patTemplate * @subpackage Modifiers * @author Stephan Schmidt * @link http://www.php.net/manual/en/function.strftime.php */ class patTemplate_Modifier_Dateformat extends patTemplate_Modifier { /** * modify the value * * @access public * @param string value * @return string modified value */ function modify( $value, $params = array() ) { if( !isset( $params['format'] ) ) return $value; return strftime( $params['format'], strtotime( $value ) ); } } ?>