* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Localization\Pack\Import; /** * Interface LocalizationPackImportConfigInterface defines. */ interface LocalizationPackImportConfigInterface { /** * Available content to import. */ public const CONTENT_STATES = 'states'; public const CONTENT_TAXES = 'taxes'; public const CONTENT_CURRENCIES = 'currencies'; public const CONTENT_LANGUAGES = 'languages'; public const CONTENT_UNITS = 'units'; public const CONTENT_GROUPS = 'groups'; /** * Get country ISO code. * * @return string */ public function getCountryIsoCode(); /** * Get content to import. * * @return array */ public function getContentToImport(); /** * Whether pack data should be downloaded. * * @return bool */ public function shouldDownloadPackData(); }