SubmitButton.php 365 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Traits;
  3. /**
  4. * Submit Button Elements
  5. *
  6. * @autor ThurData <info@thrudata.ch>
  7. */
  8. trait SubmitButton
  9. {
  10. protected $formId = null;
  11. public function setFormId($id)
  12. {
  13. $this->formId = $id;
  14. return $this;
  15. }
  16. public function getFormId()
  17. {
  18. return $this->formId;
  19. }
  20. }