blob: b56a9d8b7519a12158e5a8f6306876ff7c3aaac5 (
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";
}
}
?>
|