summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/CallbackCustomValidatorTest.php
blob: 319cc35495fb9f6ac01723ee4ae3b65c76564694 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

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

?>