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

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