egroupware/etemplate/inc/class.bo_tracking.inc.php

24 lines
684 B
PHP
Raw Normal View History

2007-05-28 23:17:15 +02:00
<?php
/**
* EGroupware - abstract base class for tracking (history log, notifications, ...)
2007-05-28 23:17:15 +02:00
*
* @link http://www.egroupware.org
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @package etemplate
* @subpackage api
* @copyright (c) 2007-16 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
2007-05-28 23:17:15 +02:00
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
2008-05-10 14:06:15 +02:00
* @version $Id$
2007-05-28 23:17:15 +02:00
*/
use EGroupware\Api;
2007-05-28 23:17:15 +02:00
/**
* Abstract base class for trackering:
* - logging all modifications of an entry
* - notifying users about changes in an entry
2008-05-10 14:06:15 +02:00
*
* @deprecated use Api\Storage\Tracking
2007-05-28 23:17:15 +02:00
*/
abstract class bo_tracking extends Api\Storage\Tracking {}