2011-08-18 20:08:40 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2016-03-19 14:06:07 +01:00
|
|
|
* EGroupware - eTemplate widget moved to EGroupware\Api\Etemplate\Widget
|
2011-08-18 20:08:40 +02:00
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @subpackage api
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
2016-03-19 14:06:07 +01:00
|
|
|
* @copyright 2002-16 by RalfBecker@outdoor-training.de
|
2011-08-18 20:08:40 +02:00
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2016-03-19 14:06:07 +01:00
|
|
|
use EGroupware\Api\Etemplate\Widget;
|
2016-03-27 11:31:42 +02:00
|
|
|
use EGroupware\Api\Etemplate;
|
2016-03-19 14:06:07 +01:00
|
|
|
|
2011-08-18 20:08:40 +02:00
|
|
|
/**
|
|
|
|
* eTemplate widget baseclass
|
2011-08-18 23:56:37 +02:00
|
|
|
*
|
2016-03-19 14:06:07 +01:00
|
|
|
* @deprecated use Api\Etemplate\Widget
|
2011-08-18 20:08:40 +02:00
|
|
|
*/
|
2016-03-27 11:31:42 +02:00
|
|
|
class etemplate_widget extends Etemplate\Widget {}
|
2011-08-18 23:56:37 +02:00
|
|
|
|
|
|
|
/**
|
2016-03-19 14:06:07 +01:00
|
|
|
* eTemplate Extension: Entry widget
|
|
|
|
*
|
|
|
|
* This widget can be used to fetch fields of any entry specified by its ID.
|
|
|
|
* The entry is loaded once and shared amoung widget that need it.
|
|
|
|
*
|
|
|
|
* @deprecated use Api\Etemplate\Widget\Entry
|
2011-08-18 23:56:37 +02:00
|
|
|
*/
|
2016-03-19 14:06:07 +01:00
|
|
|
abstract class etemplate_widget_entry extends Widget\Entry {}
|
2011-08-19 10:22:19 +02:00
|
|
|
|
2016-03-19 14:06:07 +01:00
|
|
|
/**
|
|
|
|
* eTemplate Tree widget
|
|
|
|
*
|
|
|
|
* @deprecated use Api\Etemplate\Widget\Tree
|
|
|
|
*/
|
|
|
|
class etemplate_widget_tree extends Widget\Tree {}
|
2013-08-23 15:00:13 +02:00
|
|
|
|
2016-03-19 14:06:07 +01:00
|
|
|
/**
|
|
|
|
* eTemplate Select widget
|
|
|
|
*
|
|
|
|
* @deprecated use Api\Etemplate\Widget\Select
|
|
|
|
*/
|
|
|
|
class etemplate_widget_menupopup extends Widget\Select {}
|
2013-08-23 15:00:13 +02:00
|
|
|
|
2016-03-19 14:06:07 +01:00
|
|
|
/**
|
|
|
|
* eTemplate Link widgets
|
|
|
|
*
|
|
|
|
* @deprecated use Api\Etemplate\Widget\Link
|
|
|
|
*/
|
|
|
|
class etemplate_widget_link extends Widget\Link {}
|
2013-07-04 21:38:36 +02:00
|
|
|
|
2016-03-19 14:06:07 +01:00
|
|
|
/**
|
|
|
|
* eTemplate Nextmatch widgets
|
|
|
|
*
|
|
|
|
* @deprecated use Api\Etemplate\Widget\Nextmatch
|
|
|
|
*/
|
|
|
|
class etemplate_widget_nextmatch extends Widget\Nextmatch {}
|
2013-07-04 21:38:36 +02:00
|
|
|
|
2016-03-19 14:06:07 +01:00
|
|
|
/**
|
|
|
|
* eTemplate Taglist widgets
|
|
|
|
*
|
|
|
|
* @deprecated use Api\Etemplate\Widget\Taglist
|
|
|
|
*/
|
|
|
|
class etemplate_widget_taglist extends Widget\Taglist {}
|
2013-08-23 15:00:13 +02:00
|
|
|
|
2016-03-19 14:06:07 +01:00
|
|
|
/**
|
|
|
|
* eTemplate File widgets
|
|
|
|
*
|
|
|
|
* @deprecated use Api\Etemplate\Widget\File
|
|
|
|
*/
|
|
|
|
class etemplate_widget_file extends Widget\File {}
|
2011-08-19 10:22:19 +02:00
|
|
|
|
|
|
|
/**
|
2016-03-19 14:06:07 +01:00
|
|
|
* eTemplate Vfs widgets
|
2011-08-19 10:22:19 +02:00
|
|
|
*
|
2016-03-19 14:06:07 +01:00
|
|
|
* @deprecated use Api\Etemplate\Widget\Vfs
|
2011-08-19 10:22:19 +02:00
|
|
|
*/
|
2016-03-19 14:06:07 +01:00
|
|
|
class etemplate_widget_vfs extends Widget\Vfs {}
|