for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TJuiSelectable class file.
*
* @author Fabio Bas <ctrlaltca[at]gmail[dot]com>
* @link https://github.com/pradosoft/prado
* @copyright Copyright © 2013-2014 PradoSoft
* @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
* @package Prado\Web\UI\JuiControls
*/
namespace Prado\Web\UI\JuiControls;
use Prado\Web\UI\ITemplate;
* TJuiSelectableTemplate class.
* TJuiSelectableTemplate is the default template for TJuiSelectableTemplate
* item template.
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @since 3.1
class TJuiSelectableTemplate extends \Prado\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);