Sources for file plugins/smarty/modifier.date_format.php in version 2.0 Release Candidate 2



Click on a comment to hide it. Click here to show all comments.

/*
 * Smarty plugin
 * -------------------------------------------------------------
 * Type:     modifier
 * Name:     date_format
 * Purpose:  format datestamps via strftime
 * Input:    string: input date string
 *           format: strftime format for output
 *           default_date: default date if $string is empty
 * -------------------------------------------------------------
 */
require_once $this->_get_plugin_filepath('shared','make_timestamp');
function 
smarty_modifier_date_format($string$format="%b %e, %Y"$default_date=null)
{
    if(
$string != '') {
        return 
strftime($formatsmarty_make_timestamp($string));
    } elseif (isset(
$default_date) && $default_date != '') {        
        return 
strftime($formatsmarty_make_timestamp($default_date));
    } else {
        return;
    }
}

/* vim: set expandtab: */

?>


Website is Copyright © Odynia.org 2000-2005 - Xnyo is released under a BSD license.