forked from extern/egroupware
21 lines
497 B
PHP
Executable File
21 lines
497 B
PHP
Executable File
<?php
|
|
/**
|
|
* EGroupware API - managing custom-field definitions
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <rb@stylite.de>
|
|
* @copyright 2014-16 by Ralf Becker <rb@stylite.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @version $Id$
|
|
*/
|
|
|
|
use EGroupware\Api;
|
|
|
|
/**
|
|
* Managing custom-field definitions
|
|
*
|
|
* @deprecated use Api\Storage\Customfields
|
|
*/
|
|
class egw_customfields extends Api\Storage\Customfields { }
|