add validation callback wrapper method

This commit is contained in:
Harald Bamberger
2025-08-19 16:05:47 +02:00
parent a482016dee
commit 1c86a6ad55
@@ -710,4 +710,9 @@ class Student extends FHCAPI_Controller
return true;
return !!$value;
}
public function isValidDate($value)
{
return isValidDate($value);
}
}