summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket585.php
blob: 1cda79009ae5877e976fa26b6be98de1e8f061ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
Prado::using('System.Web.UI.ActiveControls.*');
class Ticket585 extends TPage
{

	public function ChkDate ($sender, $param)
	{
		if ($param->Value == "15-03-2007")
		{
			$param->IsValid=false;
		}
		else
			$param->IsValid=true;
	}

}

?>