StepInterface.php 760 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ui\Block\Component\StepsWizard;
  7. /**
  8. * Interface for multi-step wizard blocks
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface StepInterface extends \Magento\Framework\View\Element\BlockInterface
  14. {
  15. /**
  16. * Get step caption
  17. *
  18. * @return string
  19. */
  20. public function getCaption();
  21. /**
  22. * Get step content
  23. *
  24. * @return string
  25. */
  26. public function getContent();
  27. /**
  28. * Get step component name
  29. *
  30. * @return string
  31. */
  32. public function getComponentName();
  33. /**
  34. * Get Component Name
  35. *
  36. * @return string
  37. */
  38. public function getParentComponentName();
  39. }