mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-14 10:41:23 +01:00
32 lines
808 B
PHP
32 lines
808 B
PHP
|
<?php
|
||
|
/**
|
||
|
* EGroupware - eTemplate widget baseclass
|
||
|
*
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||
|
* @package api
|
||
|
* @subpackage etemplate
|
||
|
* @link http://www.egroupware.org
|
||
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
||
|
* @copyright 2002-16 by RalfBecker@outdoor-training.de
|
||
|
* @version $Id$
|
||
|
*/
|
||
|
|
||
|
namespace EGroupware\Api\Etemplate\Widget;
|
||
|
|
||
|
use EGroupware\Api\Etemplate;
|
||
|
|
||
|
/**
|
||
|
* Description widget
|
||
|
*
|
||
|
* Reimplemented to set legacy options
|
||
|
*/
|
||
|
class Description extends Etemplate\Widget
|
||
|
{
|
||
|
/**
|
||
|
* (Array of) comma-separated list of legacy options to automatically replace when parsing with set_attrs
|
||
|
*
|
||
|
* @var string|array
|
||
|
*/
|
||
|
protected $legacy_options = 'bold-italic,link,activate_links,label_for,link_target,link_popup_size,link_title';
|
||
|
}
|