blob: dd50cde989d3ea4f2b20dd33f62858f9639def3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* TWizard and the relevant class definitions.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\WebControls
*/
namespace Prado\Web\UI\WebControls;
use Prado\Web\UI\ITemplate;
/**
* TWizardSideBarTemplate class.
* TWizardSideBarTemplate is the default template for wizard sidebar.
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado\Web\UI\WebControls
* @since 3.0
*/
class TWizardSideBarTemplate extends \Prado\TComponent implements ITemplate
{
/**
* Instantiates the template.
* It creates a {@link TDataList} control.
* @param TControl parent to hold the content within the template
*/
public function instantiateIn($parent)
{
$dataList=new TDataList;
$dataList->setID(TWizard::ID_SIDEBAR_LIST);
$dataList->getSelectedItemStyle()->getFont()->setBold(true);
$dataList->setItemTemplate(new TWizardSideBarListItemTemplate);
$parent->getControls()->add($dataList);
}
}
|