| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/Translate/Inline/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/Translate/Inline/ConfigInterface.php |
<?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);
}