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