summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket359.php
blob: 6b15f699c487840245dd9b3eeb77d8ea8d215a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

Prado::using('System.Web.UI.ActiveControls.*');

class Ticket359 extends TPage
{
	function validate_text1($sender, $param)
	{
		$param->IsValid = $param->Value == 'Prado';
	}
}

?>