説明なし

Form.php 703B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /*******************************************************************************
  3. * Copyright (c) 2020, WP Popup Maker
  4. ******************************************************************************/
  5. interface PUM_Interface_Integration_Form extends PUM_Interface_Integration {
  6. /**
  7. * @return array
  8. */
  9. public function get_forms();
  10. /**
  11. * @param string $id
  12. *
  13. * @return mixed
  14. */
  15. public function get_form( $id );
  16. /**
  17. * @return array
  18. */
  19. public function get_form_selectlist();
  20. /**
  21. * @param array $js
  22. *
  23. * @return array
  24. */
  25. public function custom_scripts( $js = [] );
  26. /**
  27. * @param array $css
  28. *
  29. * @return array
  30. */
  31. public function custom_styles( $css = [] );
  32. }