FormInterface.php 258 B

123456789101112131415
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Interfaces;
  3. /**
  4. * Validator Interface
  5. *
  6. * @author Sławomir Miśkowicz <slawomir@thurdata.com>
  7. */
  8. interface FormInterface
  9. {
  10. public function getField($fieldId);
  11. public function getFields();
  12. }