/wp-content/plugins/google-analytics-for-wordpress/lite/includes/admin/tab-support.php

https://bitbucket.org/carloskikea/helpet · PHP · 48 lines · 15 code · 4 blank · 29 comment · 1 complexity · 1aa92cab64a1b86e8e73ade0fb70c92d MD5 · raw file

  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' );