summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/CallbackCustomValidatorTest.php
blob: bf8d730bab2eb1112c9ac520ea95f3c05e152914 (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';
	}
}

?>