12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Data;
- /**
- * Source of option values in a form of value-label pairs
- *
- * @api
- * @since 100.0.2
- */
- interface OptionSourceInterface
- {
- /**
- * Return array of options as value-label pairs
- *
- * @return array Format: array(array('value' => '<value>', 'label' => '<label>'), ...)
- */
- public function toOptionArray();
- }
|