2014-06-23 16:35:22 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* EGroupware API - managing custom-field definitions
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <rb@stylite.de>
|
2016-03-05 14:33:32 +01:00
|
|
|
* @copyright 2014-16 by Ralf Becker <rb@stylite.de>
|
2014-06-23 16:35:22 +02:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package api
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2016-03-05 14:33:32 +01:00
|
|
|
use EGroupware\Api;
|
|
|
|
|
2014-06-23 16:35:22 +02:00
|
|
|
/**
|
|
|
|
* Managing custom-field definitions
|
2016-03-05 14:33:32 +01:00
|
|
|
*
|
|
|
|
* @deprecated use Api\Customfields
|
2014-06-23 16:35:22 +02:00
|
|
|
*/
|
2016-03-05 14:33:32 +01:00
|
|
|
class egw_customfields extends Api\Customfields { }
|