2008-03-08 22:41:20 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2016-03-07 09:46:32 +01:00
|
|
|
* EGroupware API - Interapplicaton links BO layer
|
2008-03-08 22:41:20 +01:00
|
|
|
*
|
|
|
|
* Links have two ends each pointing to an entry, each entry is a double:
|
|
|
|
* - app app-name or directory-name of an egw application, eg. 'infolog'
|
|
|
|
* - id this is the id, eg. an integer or a tupple like '0:INBOX:1234'
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2016-03-07 09:46:32 +01:00
|
|
|
* @copyright 2001-2016 by RalfBecker@outdoor-training.de
|
2008-03-08 22:41:20 +01:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package api
|
|
|
|
* @subpackage link
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2016-03-07 09:46:32 +01:00
|
|
|
use EGroupware\Api;
|
|
|
|
|
2008-03-08 22:41:20 +01:00
|
|
|
/**
|
2014-05-24 12:59:03 +02:00
|
|
|
* Generalized linking between entries of EGroupware apps
|
2016-03-07 09:46:32 +01:00
|
|
|
* *
|
|
|
|
* @deprecated use Api\Link
|
2008-03-08 22:41:20 +01:00
|
|
|
*/
|
2016-03-07 09:46:32 +01:00
|
|
|
class egw_link extends Api\Link {}
|