* @author Christian Binder * @copyright 2002-11 by RalfBecker@outdoor-training.de * @copyright 2012 by Christian Binder * @version $Id: class.etemplate_widget_itempicker.inc.php 36221 2011-08-20 10:27:38Z jaytraxx $ */ /** * eTemplate itempicker widget */ class etemplate_widget_itempicker extends etemplate_widget { /** * Constructor * * @param string|XMLReader $xml string with xml or XMLReader positioned on the element to construct * @throws egw_exception_wrong_parameter */ public function __construct($xml) { parent::__construct($xml); } } etemplate_widget::registerWidget('etemplate_widget_itempicker', array('itempicker'));