group-control.php 409 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Elementor;
  3. if ( ! defined( 'ABSPATH' ) ) {
  4. exit; // Exit if accessed directly.
  5. }
  6. /**
  7. * Group control interface.
  8. *
  9. * An interface for Elementor group control.
  10. *
  11. * @since 1.0.0
  12. */
  13. interface Group_Control_Interface {
  14. /**
  15. * Get group control type.
  16. *
  17. * Retrieve the group control type.
  18. *
  19. * @since 1.0.0
  20. * @access public
  21. * @static
  22. */
  23. public static function get_type();
  24. }