2009-10-07 15:29:06 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* EGroupware time and timezone handling
|
|
|
|
*
|
|
|
|
* @package api
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
2016-03-05 12:14:01 +01:00
|
|
|
* @copyright 2009-16 by RalfBecker@outdoor-training.de
|
2009-10-07 15:29:06 +02:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2016-03-05 12:14:01 +01:00
|
|
|
use EGroupware\Api;
|
|
|
|
|
2009-10-07 15:29:06 +02:00
|
|
|
/**
|
|
|
|
* EGroupware time and timezone handling class extending PHP's DateTime
|
|
|
|
*
|
2016-03-05 12:14:01 +01:00
|
|
|
* @deprecated use Api\DateTime
|
2009-10-07 15:29:06 +02:00
|
|
|
*/
|
2016-03-05 12:14:01 +01:00
|
|
|
class egw_time extends Api\DateTime {}
|