OptionSourceInterface.php 474 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Data;
  7. /**
  8. * Source of option values in a form of value-label pairs
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface OptionSourceInterface
  14. {
  15. /**
  16. * Return array of options as value-label pairs
  17. *
  18. * @return array Format: array(array('value' => '<value>', 'label' => '<label>'), ...)
  19. */
  20. public function toOptionArray();
  21. }