12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Translate\Inline;
- /**
- * Inline Translation config interface
- *
- * @api
- * @since 100.0.2
- */
- interface ConfigInterface
- {
- /**
- * Check whether inline translation is enabled
- *
- * @param null|string|bool|int|\Magento\Store\Model\Store $scope
- * @return bool
- */
- public function isActive($scope = null);
- /**
- * Check whether allowed client ip for inline translation
- *
- * @param null|string|bool|int|\Magento\Store\Model\Store $scope
- * @return bool
- */
- public function isDevAllowed($scope = null);
- }
|