summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/controls/SinceVersion.php
blob: cfeeffbb4dd52db4e4ced4878c4ac0a9adbbe3a2 (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');
	}
}

?>