blob: ed1f9433cc66f3907d729b2b5a484681b528b71f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/*
* Created on 16/04/2006
*/
class CustomValidator extends TPage
{
function CustomValidation($sender, $params)
{
$params->isValid = $this->text1->Text == "Prado";
}
}
?>
|