* @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Web.UI.JuiControls */ /** * TJuiSortableTemplate class. * * TJuiSortableTemplate is the default template for TJuiSortableTemplate * item template. * * @author Wei Zhuo * @package System.Web.UI.ActiveControls * @since 3.1 */ class TJuiSortableTemplate extends TComponent implements ITemplate { private $_template; public function __construct($template) { $this->_template = $template; } /** * Instantiates the template. * It creates a {@link TDataList} control. * @param TControl parent to hold the content within the template */ public function instantiateIn($parent) { $parent->getControls()->add($this->_template); } }