tab-support.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * Support Tab.
  4. *
  5. * @since 6.1.0
  6. *
  7. * @package MonsterInsights
  8. * @subpackage Settings
  9. * @author Chris Christoff
  10. */
  11. // Exit if accessed directly
  12. if ( ! defined( 'ABSPATH' ) ) exit;
  13. /**
  14. * Callback for displaying the UI for support tab.
  15. *
  16. * @since 6.1.0
  17. * @access public
  18. *
  19. * @return void
  20. */
  21. function monsterinsights_settings_support_tab() {
  22. ?>
  23. <div id="monsterinsights-settings-general">
  24. <?php
  25. // Output any notices now
  26. do_action( 'monsterinsights_settings_support_tab_notice' );
  27. ?>
  28. <?php //Status page coming soon. ?>
  29. <!-- <hr /> -->
  30. </div>
  31. <?php
  32. }
  33. // add_action( 'monsterinsights_tab_settings_support', 'monsterinsights_settings_support_tab' );
  34. /**
  35. * Callback for saving the general settings tab.
  36. *
  37. * @since 6.1.0
  38. * @access public
  39. *
  40. * @return void
  41. */
  42. function monsterinsights_settings_save_support() {
  43. }
  44. // add_action( 'monsterinsights_settings_save_support', 'monsterinsights_settings_save_support' );