12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Config\Model\Config;
- /**
- * @api
- * @since 101.1.0
- */
- interface StructureElementInterface extends Structure\ElementInterface
- {
- /**
- * Retrieve element config path
- *
- * @param string $fieldPrefix
- * @return string
- * @since 101.1.0
- */
- public function getPath($fieldPrefix = '');
- }
|