summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/controls/SinceVersion.php
blob: db73275b14ea36fe1c3c62d10266a31f5793d8df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class SinceVersion extends TTemplateControl
{
	public function setVersion($value)
	{
		$this->setViewState('Version',$value);
	}

	public function getVersion()
	{
		return $this->getViewState('Version');
	}
}

?>