<?php
/**
* XS2:
*
* This file is developed by Solutecs, LLC for the purpose of the company
* and is provided together with XS2 Framework as and inherent part of the
* system. This file can be used on the terms of License Agreement.
*
* +7 (495) 585-0833 / 13 Rusakovskaya street, Moscow 107140 Russia
*
* @link http://www.solutecs.com
* @copyright ©1998-2007 Solutecs, LLC
* @package XS2-MODCOM
* @subpackage proc-forum
* @version 1.XX
*/
/**
* Функции для работы со временем.
*
* Поведение: определяет модификаторы шаблонизатора и процессора.
*/
function ForumTimeDiff($subj, $comp=null) {
if(!$subj) $subj = date("Y-m-d H:i:s");
if(!$comp) $comp = $subj;
$subj = strtotime($subj);
$comp = strtotime($comp);
$diff = $subj - $comp;
return $diff;
}
$_HTML->register_modifier('ForumTimeDiff', 'ForumTimeDiff');
?>
|
|