summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveDatePicker/Home.php
blob: c5e67e1c16e33295d715c62f5261c38a66ab7f2c (plain)
1
2
3
4
5
6
7
8
9
10
<?php

class Home extends TPage
{
	public function dateChanged($sender, $param)
	{
		$this->label1->Text = date("r", $this->date1->TimeStamp);
	}
}