FormInterface.php 240 B

123456789101112131415
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Interfaces;
  3. /**
  4. * Validator Interface
  5. *
  6. * @autor ThurData <info@thurdata.ch>
  7. */
  8. interface FormInterface
  9. {
  10. public function getField($fieldId);
  11. public function getFields();
  12. }