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

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

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