PHP Classes

File: lib/plugins/modifier.date_format.php

Recommend this page to a friend!
  Classes of David Tamas   g-template-php   lib/plugins/modifier.date_format.php   Download  
File: lib/plugins/modifier.date_format.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: g-template-php
Process and render templates generating PHP code
Author: By
Last change:
Date: 5 years ago
Size: 1,005 bytes
 

Contents

Class file image Download
<?php
/**
 * gTemplate Plugins
 *
 * @package gTemplate
 * @subpackage Plugins
 */

/**
 * gTemplate date_format modifier plugin
 *
 * Type: modifier<br>
 * Name: date_format<br>
 * Purpose: format datestamps via strftime<br>
 * Input:<br>
 * - string: input date string
 * - format: strftime format for output
 * - default_date: default date if $string is empty
 *
 * @version 1.0
 * @author Tamas David (G-Lex) <glex at mittudomain.info>
 * @link https://github.com/glex86/g-template-php G-Template Engine on Github
 *
 * @internal Some source codes are taken from Smarty
 * @internal author Monte Ohrt <monte at ohrt dot com>
 * @internal link http://smarty.net Smarty
 */
function tpl_modifier_date_format($string, $format = "%b %e, %Y", $default_date = '') {
    require_once
'shared.make_timestamp.php';
   
    if (
$string || $default_date) {
        return
strftime($format, tpl_make_timestamp($string? : $default_date));
    } else {
        return;
    }
}