From 9d9661e936db857d241bf9ed4a5fa057c568294c Mon Sep 17 00:00:00 2001 From: aarongerig Date: Tue, 20 Feb 2024 14:47:56 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=20w-vision=20>=20instride=20?= =?UTF-8?q?=F0=9F=94=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/behat.yml | 4 +- .github/workflows/static.yml | 4 +- CHANGELOG.md | 3 + ISSUE_TEMPLATE.md | 2 +- LICENSE.md | 4 +- README.md | 41 ++- bin/console | 17 +- composer.json | 42 +-- config/services_test.yaml | 2 +- docs/export/fetcher.md | 2 +- docs/export/getter.md | 2 +- docs/export/provider.md | 2 +- docs/import/cleaner.md | 2 +- docs/import/filter.md | 2 +- docs/import/loader.md | 2 +- docs/import/persister.md | 4 +- docs/import/provider.md | 2 +- docs/import/setter.md | 4 +- docs/interpreter.md | 4 +- docs/runner.md | 2 +- phpstan.neon | 14 +- src/BehatKernel.php | 19 +- .../Cleaner/AbstractCleaner.php | 10 +- .../Cleaner/CleanerInterface.php | 8 +- src/DataDefinitionsBundle/Cleaner/Deleter.php | 8 +- src/DataDefinitionsBundle/Cleaner/None.php | 8 +- .../Cleaner/ReferenceCleaner.php | 8 +- .../Cleaner/Unpublisher.php | 8 +- .../AbstractImportDefinitionCommand.php | 8 +- .../Command/ExportCommand.php | 14 +- .../Command/ImportAsyncCommand.php | 16 +- .../Command/ImportCommand.php | 14 +- .../Command/ImportExportDefinitionCommand.php | 6 +- .../Command/ImportImportDefinitionCommand.php | 6 +- .../Command/ListExportDefinitionsCommand.php | 8 +- .../Command/ListImportDefinitionsCommand.php | 8 +- src/DataDefinitionsBundle/Context/Context.php | 8 +- .../Context/ContextFactory.php | 20 +- .../Context/ContextFactoryInterface.php | 20 +- .../Context/ContextInterface.php | 8 +- .../Context/FetcherContext.php | 8 +- .../Context/FetcherContextInterface.php | 8 +- .../Context/FilterContext.php | 10 +- .../Context/FilterContextInterface.php | 10 +- .../Context/GetterContext.php | 10 +- .../Context/GetterContextInterface.php | 10 +- .../Context/InterpreterContext.php | 12 +- .../Context/InterpreterContextInterface.php | 10 +- .../Context/LoaderContext.php | 10 +- .../Context/LoaderContextInterface.php | 10 +- .../Context/RunnerContext.php | 10 +- .../Context/RunnerContextInterface.php | 10 +- .../Context/SetterContext.php | 12 +- .../Context/SetterContextInterface.php | 12 +- .../AbstractDefinitionController.php | 10 +- .../Controller/ExportDefinitionController.php | 10 +- .../Controller/ImportDefinitionController.php | 14 +- .../Controller/ImportRuleController.php | 8 +- .../DataDefinitionsBundle.php | 39 +-- .../Compiler/CleanerRegistryCompilerPass.php | 6 +- .../ExportProviderRegistryCompilerPass.php | 6 +- .../ExportRunnerRegistryCompilerPass.php | 6 +- .../Compiler/FetcherRegistryCompilerPass.php | 6 +- .../Compiler/FilterRegistryCompilerPass.php | 6 +- .../Compiler/GetterRegistryCompilerPass.php | 6 +- .../Compiler/ImportRuleActionPass.php | 6 +- .../Compiler/ImportRuleConditionPass.php | 6 +- .../InterpreterRegistryCompilerPass.php | 6 +- .../Compiler/LoaderRegistryCompilerPass.php | 6 +- .../PersisterRegistryCompilerPass.php | 2 +- .../Compiler/ProviderRegistryCompilerPass.php | 6 +- .../Compiler/RunnerRegistryCompilerPass.php | 6 +- .../Compiler/SetterRegistryCompilerPass.php | 6 +- .../DependencyInjection/Configuration.php | 29 +- .../DataDefinitionsExtension.php | 54 ++-- .../Event/DefinitionEventInterface.php | 6 +- .../Event/EventDispatcher.php | 8 +- .../Event/EventDispatcherInterface.php | 8 +- .../Event/ExportDefinitionEvent.php | 8 +- .../Event/ImportDefinitionEvent.php | 8 +- .../EventListener/ObjectDeleteListener.php | 8 +- .../EventListener/PimcoreSettingsListener.php | 10 +- .../EventListener/WriteableListener.php | 10 +- .../Exception/DoNotSetException.php | 6 +- .../Exception/InterpreterException.php | 10 +- .../Exception/SpoutException.php | 6 +- .../Exception/UnexpectedValueException.php | 6 +- .../Exporter/Exporter.php | 30 +- .../Exporter/ExporterInterface.php | 8 +- .../Fetcher/FetcherInterface.php | 8 +- .../Fetcher/ObjectsFetcher.php | 10 +- .../Filter/FilterInterface.php | 8 +- .../DefinitionMappingDataMapper.php | 8 +- .../Form/Type/ClassChoiceType.php | 6 +- .../Form/Type/CleanerChoiceType.php | 6 +- .../Form/Type/DefinitionChoiceType.php | 8 +- .../Form/Type/ExportDefinitionType.php | 6 +- .../Form/Type/ExportMappingCollectionType.php | 6 +- .../Form/Type/ExportMappingType.php | 8 +- .../Type/ExportProvider/CsvProviderType.php | 6 +- .../Type/ExportProvider/XmlProviderType.php | 6 +- .../Form/Type/ExportProviderChoiceType.php | 6 +- .../Form/Type/ExportRunnerChoiceType.php | 6 +- .../Form/Type/Fetcher/ObjectsFetcherType.php | 6 +- .../Form/Type/FetcherChoiceType.php | 6 +- .../Form/Type/FilterChoiceType.php | 6 +- .../Form/Type/ImportDefinitionType.php | 6 +- .../Form/Type/ImportMappingCollectionType.php | 6 +- .../Form/Type/ImportMappingType.php | 8 +- .../Type/ImportProvider/CsvProviderType.php | 6 +- .../Type/ImportProvider/ExcelProviderType.php | 6 +- .../ExternalSqlProviderType.php | 6 +- .../Type/ImportProvider/JsonProviderType.php | 6 +- .../Type/ImportProvider/RawProviderType.php | 6 +- .../Type/ImportProvider/SqlProviderType.php | 6 +- .../Type/ImportProvider/XmlProviderType.php | 6 +- .../Form/Type/ImportProviderChoiceType.php | 6 +- .../Form/Type/ImportRulesImportType.php | 6 +- .../AssetByPathInterpreterType.php | 6 +- .../Interpreter/AssetUrlInterpreterType.php | 6 +- .../Interpreter/AssetsUrlInterpreterType.php | 6 +- .../Interpreter/CarbonInterpreterType.php | 6 +- .../ConditionalInterpreterType.php | 6 +- .../CoreShop/MoneyInterpreterType.php | 2 +- .../CoreShop/PriceInterpreterType.php | 6 +- .../CoreShop/StoresInterpreterType.php | 6 +- .../DefaultValueInterpreterType.php | 6 +- .../Form/Type/Interpreter/DefinitionType.php | 8 +- .../Interpreter/ExpressionInterpreterType.php | 6 +- .../Type/Interpreter/HrefInterpreterType.php | 6 +- .../Interpreter/InterpreterCollectionType.php | 6 +- .../Form/Type/Interpreter/InterpreterType.php | 10 +- .../Interpreter/IteratorInterpreterType.php | 6 +- .../Interpreter/MappingInterpreterType.php | 6 +- .../Form/Type/Interpreter/MappingType.php | 6 +- .../Interpreter/MetadataInterpreterType.php | 6 +- .../Interpreter/MultiHrefInterpreterType.php | 6 +- .../Interpreter/NestedInterpreterType.php | 6 +- .../Type/Interpreter/ObjectResolverType.php | 8 +- .../QuantityValueInterpreterType.php | 6 +- .../SpecificObjectInterpreterType.php | 6 +- .../Type/Interpreter/TwigInterpreterType.php | 6 +- .../TypeCastingInterpreterType.php | 8 +- .../Form/Type/InterpreterChoiceType.php | 6 +- .../Form/Type/LoaderChoiceType.php | 6 +- .../Form/Type/NoConfigurationType.php | 6 +- .../Form/Type/PersisterChoiceType.php | 2 +- .../ExportDefinitionObjectStartupForm.php | 6 +- .../ProcessManager/ImportDefinitionsType.php | 6 +- .../Form/Type/RunnerChoiceType.php | 6 +- .../Setter/ClassificationStoreSetterType.php | 6 +- .../Setter/CoreShop/StorePriceSetterType.php | 6 +- .../Setter/CoreShop/StoreValuesSetterType.php | 6 +- .../Type/Setter/FieldCollectionSetterType.php | 6 +- .../Type/Setter/LocalizedFieldSetterType.php | 6 +- .../Type/Setter/ObjectBrickSetterType.php | 6 +- .../Form/Type/SetterChoiceType.php | 6 +- .../Getter/DynamicColumnGetterInterface.php | 8 +- .../Getter/GetterInterface.php | 8 +- .../Importer/AsyncImporterInterface.php | 8 +- .../Importer/Importer.php | 48 ++-- .../Importer/ImporterInterface.php | 8 +- src/DataDefinitionsBundle/Installer.php | 6 +- .../Interpreter/AssetByPathInterpreter.php | 8 +- .../Interpreter/AssetUrlInterpreter.php | 8 +- .../Interpreter/AssetsUrlInterpreter.php | 10 +- .../Interpreter/CarbonInterpreter.php | 8 +- .../Interpreter/CheckboxInterpreter.php | 8 +- .../Interpreter/ConditionalInterpreter.php | 10 +- .../CoreShop/CurrencyInterpreter.php | 10 +- .../Interpreter/CoreShop/MoneyInterpreter.php | 12 +- .../Interpreter/CoreShop/PriceInterpreter.php | 10 +- .../CoreShop/StoresInterpreter.php | 10 +- .../Interpreter/DefaultValueInterpreter.php | 8 +- .../Interpreter/DefinitionInterpreter.php | 12 +- .../DoNotSetOnEmptyInterpreter.php | 10 +- .../Interpreter/ExpressionInterpreter.php | 10 +- .../Interpreter/ExternalImageInterpreter.php | 12 +- .../Interpreter/HrefInterpreter.php | 8 +- .../Interpreter/ImportRuleInterpreter.php | 14 +- .../Interpreter/InterpreterInterface.php | 8 +- .../Interpreter/IteratorInterpreter.php | 10 +- .../Interpreter/LinkInterpreter.php | 12 +- .../Interpreter/MappingInterpreter.php | 8 +- .../Interpreter/MetadataInterpreter.php | 8 +- .../Interpreter/MultiHrefInterpreter.php | 8 +- .../Interpreter/NestedInterpreter.php | 10 +- .../Interpreter/ObjectResolverInterpreter.php | 8 +- .../Interpreter/QuantityValueInterpreter.php | 8 +- .../Interpreter/SpecificObjectInterpreter.php | 8 +- .../Interpreter/TwigInterpreter.php | 8 +- .../Interpreter/TypeCastingInterpreter.php | 8 +- .../Loader/LoaderInterface.php | 8 +- .../Loader/PrimaryKeyLoader.php | 10 +- .../Messenger/ImportRowMessage.php | 6 +- .../Messenger/ImportRowMessageHandler.php | 12 +- .../Model/AbstractColumn.php | 6 +- .../Model/AbstractDataDefinition.php | 6 +- .../Model/AbstractMapping.php | 6 +- .../Model/DataDefinitionInterface.php | 6 +- .../Model/DataSetAwareTrait.php | 8 +- .../Model/ExportDefinition.php | 8 +- .../Model/ExportDefinition/Dao.php | 8 +- .../Model/ExportDefinition/Listing.php | 8 +- .../Model/ExportDefinition/Listing/Dao.php | 8 +- .../Model/ExportDefinitionInterface.php | 6 +- .../Model/ExportMapping.php | 6 +- .../Model/ExportMapping/FromColumn.php | 8 +- .../Model/ExportMapping/ToColumn.php | 8 +- .../Model/ImportDefinition.php | 8 +- .../Model/ImportDefinition/Dao.php | 8 +- .../Model/ImportDefinition/Listing.php | 8 +- .../Model/ImportDefinition/Listing/Dao.php | 8 +- .../Model/ImportDefinitionInterface.php | 6 +- .../Model/ImportMapping.php | 6 +- .../Model/ImportMapping/FromColumn.php | 8 +- .../Model/ImportMapping/ToColumn.php | 8 +- src/DataDefinitionsBundle/Model/Log.php | 8 +- src/DataDefinitionsBundle/Model/Log/Dao.php | 6 +- .../Model/Log/Listing.php | 8 +- .../Model/Log/Listing/Dao.php | 8 +- .../Model/MappingInterface.php | 6 +- .../Model/ParamsAwareInterface.php | 6 +- .../Model/ParamsAwareTrait.php | 6 +- .../Persister/Persister.php | 4 +- .../Persister/PersisterInterface.php | 4 +- .../AbstractProcessManagerListener.php | 8 +- .../ArtifactGenerationProviderInterface.php | 8 +- .../ProcessManager/ArtifactProviderTrait.php | 8 +- .../DataDefinitionProcessTrait.php | 6 +- .../ExportDefinitionProcess.php | 6 +- .../ExportDefinitionStartupFormResolver.php | 10 +- .../ImportDefinitionProcess.php | 6 +- .../ImportDefinitionsReport.php | 6 +- .../ProcessManagerExportListener.php | 8 +- .../ProcessManagerImportListener.php | 6 +- .../Provider/AbstractFileProvider.php | 8 +- .../Provider/AbstractSqlProvider.php | 12 +- .../Provider/ArrayImportDataSet.php | 6 +- .../Provider/CsvProvider.php | 18 +- .../Provider/ExcelProvider.php | 18 +- .../Provider/ExportProviderInterface.php | 8 +- .../Provider/ExternalSqlProvider.php | 6 +- .../Provider/ImportDataSet.php | 6 +- .../Provider/ImportDataSetInterface.php | 6 +- .../Provider/ImportProviderInterface.php | 10 +- .../Provider/JsonProvider.php | 18 +- .../Provider/RawProvider.php | 12 +- .../Provider/SqlProvider.php | 6 +- .../Provider/TraversableImportDataSet.php | 6 +- .../Provider/XmlProvider.php | 18 +- .../Repository/DefinitionRepository.php | 8 +- .../Resources/config/coreshop.yml | 30 +- .../Resources/config/pimcore/messenger.yml | 2 +- .../Resources/config/pimcore/routing.yml | 4 +- .../Resources/config/process_manager.yml | 16 +- .../config/serializer/Model.Definition.yml | 2 +- .../serializer/Model.ExportDefinition.yml | 4 +- .../serializer/Model.ImportDefinition.yml | 4 +- .../Resources/config/services.yml | 258 +++++++++--------- .../Resources/config/services/commands.yml | 20 +- .../Resources/config/services/forms.yml | 52 ++-- .../config/services/import_rules.yml | 48 ++-- .../Resources/config/services/installer.yml | 2 +- .../pimcore/js/coreshop/getter/storePrice.js | 4 +- .../pimcore/js/coreshop/getter/storeValues.js | 4 +- .../pimcore/js/coreshop/interpreter/price.js | 4 +- .../pimcore/js/coreshop/interpreter/stores.js | 4 +- .../pimcore/js/coreshop/setter/storePrice.js | 4 +- .../pimcore/js/coreshop/setter/storeValues.js | 4 +- .../pimcore/js/definition/abstractItem.js | 4 +- .../public/pimcore/js/export/configDialog.js | 4 +- .../public/pimcore/js/export/fields.js | 4 +- .../public/pimcore/js/export/item.js | 4 +- .../public/pimcore/js/export/panel.js | 4 +- .../js/export_provider/abstractprovider.js | 4 +- .../public/pimcore/js/export_provider/csv.js | 4 +- .../public/pimcore/js/export_provider/xml.js | 4 +- .../public/pimcore/js/fetchers/abstract.js | 4 +- .../public/pimcore/js/fetchers/objects.js | 4 +- .../pimcore/js/getters/classificationstore.js | 4 +- .../pimcore/js/getters/fieldcollection.js | 4 +- .../pimcore/js/getters/localizedfield.js | 4 +- .../public/pimcore/js/getters/objectbrick.js | 4 +- .../public/pimcore/js/import/configDialog.js | 4 +- .../public/pimcore/js/import/item.js | 4 +- .../public/pimcore/js/import/panel.js | 4 +- .../public/pimcore/js/import_rule/action.js | 4 +- .../js/import_rule/actions/expression.js | 4 +- .../pimcore/js/import_rule/actions/object.js | 4 +- .../pimcore/js/import_rule/condition.js | 4 +- .../js/import_rule/conditions/expression.js | 4 +- .../public/pimcore/js/import_rule/item.js | 4 +- .../public/pimcore/js/import_rule/panel.js | 4 +- .../pimcore/js/interpreters/abstract.js | 4 +- .../pimcore/js/interpreters/assetbypath.js | 4 +- .../pimcore/js/interpreters/assetsurl.js | 4 +- .../pimcore/js/interpreters/asseturl.js | 4 +- .../public/pimcore/js/interpreters/carbon.js | 4 +- .../pimcore/js/interpreters/conditional.js | 4 +- .../pimcore/js/interpreters/defaultvalue.js | 4 +- .../pimcore/js/interpreters/definition.js | 4 +- .../public/pimcore/js/interpreters/empty.js | 4 +- .../pimcore/js/interpreters/expression.js | 4 +- .../public/pimcore/js/interpreters/href.js | 4 +- .../pimcore/js/interpreters/import_rule.js | 4 +- .../pimcore/js/interpreters/iterator.js | 4 +- .../public/pimcore/js/interpreters/mapping.js | 4 +- .../pimcore/js/interpreters/metadata.js | 4 +- .../pimcore/js/interpreters/multihref.js | 4 +- .../public/pimcore/js/interpreters/nested.js | 4 +- .../js/interpreters/nestedcontainer.js | 4 +- .../pimcore/js/interpreters/objectresolver.js | 4 +- .../pimcore/js/interpreters/quantityvalue.js | 4 +- .../pimcore/js/interpreters/specificobject.js | 4 +- .../public/pimcore/js/interpreters/twig.js | 4 +- .../pimcore/js/interpreters/typecasting.js | 4 +- .../js/process_manager/export_definitions.js | 4 +- .../js/process_manager/export_search.js | 4 +- .../js/process_manager/import_definitions.js | 4 +- .../pimcore/js/provider/abstractprovider.js | 4 +- .../public/pimcore/js/provider/csv.js | 4 +- .../public/pimcore/js/provider/excel.js | 4 +- .../public/pimcore/js/provider/externalSql.js | 4 +- .../public/pimcore/js/provider/json.js | 4 +- .../public/pimcore/js/provider/raw.js | 4 +- .../public/pimcore/js/provider/sql.js | 4 +- .../public/pimcore/js/provider/xml.js | 4 +- .../public/pimcore/js/setters/abstract.js | 4 +- .../pimcore/js/setters/classificationstore.js | 4 +- .../pimcore/js/setters/fieldcollection.js | 4 +- .../pimcore/js/setters/localizedfield.js | 4 +- .../public/pimcore/js/setters/objectbrick.js | 4 +- .../Resources/public/pimcore/js/startup.js | 4 +- .../Rules/Action/ExpressionProcessor.php | 8 +- .../Action/ImportRuleProcessorInterface.php | 8 +- .../Rules/Action/ObjectProcessor.php | 8 +- .../Condition/AbstractConditionChecker.php | 8 +- .../Condition/ExpressionConditionChecker.php | 8 +- .../ImportRuleConditionCheckerInterface.php | 8 +- .../Rules/Form/Type/Action/ExpressionType.php | 6 +- .../Rules/Form/Type/Action/ObjectType.php | 6 +- .../Condition/ExpressionConditionType.php | 6 +- .../Form/Type/ImportRuleActionChoiceType.php | 6 +- .../Type/ImportRuleActionCollectionType.php | 6 +- .../Rules/Form/Type/ImportRuleActionType.php | 6 +- .../Type/ImportRuleConditionChoiceType.php | 6 +- .../ImportRuleConditionCollectionType.php | 6 +- .../Form/Type/ImportRuleConditionType.php | 6 +- .../Rules/Form/Type/ImportRuleType.php | 6 +- .../Form/Type/ImportRulesInterpreterType.php | 6 +- .../Rules/Model/ImportRule.php | 6 +- .../Rules/Model/ImportRuleInterface.php | 6 +- .../ImportRuleValidationProcessor.php | 10 +- ...ImportRuleValidationProcessorInterface.php | 10 +- .../Rules/Processor/RuleApplier.php | 10 +- .../Rules/Processor/RuleApplierInterface.php | 8 +- .../Runner/ExportRunnerInterface.php | 8 +- .../ImportStartFinishRunnerInterface.php | 8 +- .../Runner/RunnerInterface.php | 8 +- .../Runner/SaveRunnerInterface.php | 8 +- .../Runner/SetterRunnerInterface.php | 10 +- .../Service/FieldSelection.php | 8 +- .../Service/StorageLocator.php | 6 +- .../Setter/ClassificationStoreFieldGetter.php | 10 +- .../Setter/ClassificationStoreSetter.php | 12 +- .../Setter/CoreShop/StorePriceSetter.php | 14 +- .../Setter/CoreShop/StoreValuesSetter.php | 14 +- .../Setter/FieldCollectionSetter.php | 12 +- .../Setter/KeySetter.php | 8 +- .../Setter/LocalizedfieldSetter.php | 12 +- .../Setter/ObjectTypeSetter.php | 8 +- .../Setter/ObjectbrickSetter.php | 12 +- .../Setter/RelationSetter.php | 8 +- .../Setter/SetterInterface.php | 8 +- src/Kernel.php | 21 +- .../Behat/Context/Domain/PimcoreContext.php | 8 +- .../Behat/Context/Hook/IMSetupContext.php | 12 +- .../Behat/Context/Hook/PimcoreDaoContext.php | 6 +- .../Context/Hook/PimcoreSetupContext.php | 6 +- .../Context/Setup/ImportDefinitionContext.php | 14 +- .../Context/Setup/PimcoreAssetContext.php | 8 +- .../Context/Setup/PimcoreClassContext.php | 10 +- .../Transform/ImportDefinitionContext.php | 10 +- .../Context/Transform/PimcoreAssetContext.php | 8 +- .../Context/Transform/PimcoreClassContext.php | 10 +- .../Behat/Resources/config/services.yml | 6 +- .../config/services/contexts/domain.yml | 2 +- .../config/services/contexts/hook.yml | 6 +- .../config/services/contexts/setup.yml | 8 +- .../config/services/contexts/transform.yml | 6 +- .../Behat/Service/ClassStorage.php | 4 +- .../Behat/Service/ClassStorageInterface.php | 4 +- .../Behat/Service/Filter/SimpleFilter.php | 8 +- .../Behat/Service/SharedStorage.php | 4 +- .../Behat/Service/SharedStorageInterface.php | 4 +- 396 files changed, 1696 insertions(+), 1679 deletions(-) diff --git a/.github/workflows/behat.yml b/.github/workflows/behat.yml index 11562840..a1f12ba6 100644 --- a/.github/workflows/behat.yml +++ b/.github/workflows/behat.yml @@ -1,9 +1,9 @@ name: Behat on: push: - branches: [ '4.0' ] + branches: [ '5.0' ] pull_request: - branches: [ '4.0' ] + branches: [ '5.0' ] jobs: behat: diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index f25dff49..f8c3f1ed 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -1,9 +1,9 @@ name: Static Tests (Lint, Stan) on: push: - branches: [ '4.0' ] + branches: [ '5.0' ] pull_request: - branches: [ '4.0' ] + branches: [ '5.0' ] jobs: lint: diff --git a/CHANGELOG.md b/CHANGELOG.md index dede0f44..418a8024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +- Pimcore 11 compatibility +- w-vision > instride rebranding 🔄 + ### [4.0.0] - Pimcore X compatibility diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index 0a694565..a8836e8f 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -4,4 +4,4 @@ | Feature request? | yes/no | BC Break report? | yes/no | RFC? | yes/no -| Branch? | master +| Branch? | 5.0 diff --git a/LICENSE.md b/LICENSE.md index 58661856..ebfc7e20 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,5 +1,5 @@ # License -Copyright (C) 2016-2018 w-vision AG +Copyright (C) 2016-2024 instride AG This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,4 +12,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with this program. If not, see . \ No newline at end of file +along with this program. If not, see . diff --git a/README.md b/README.md index 1939f88b..1eb1d494 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ![DataDefinitions](docs/images/github_banner.png "Data Definitions") [![Software License](https://img.shields.io/badge/license-GPLv3-brightgreen.svg?style=flat-square)](LICENSE.md) -[![Latest Stable Version](https://img.shields.io/packagist/v/w-vision/data-definitions.svg?style=flat-square)](https://packagist.org/packages/w-vision/data-definitions) +[![Latest Stable Version](https://img.shields.io/packagist/v/instride/data-definitions.svg?style=flat-square)](https://packagist.org/packages/instride/data-definitions) Data Definitions allows you to define your DataObject Imports and Exports using a nice GUI and re-run the definitions as often you like. Everything within Data Definitions is extendable. @@ -9,16 +9,27 @@ as often you like. Everything within Data Definitions is extendable. ![Interface](docs/images/mapping.png) ## Requirements -* Pimcore 5.8 or 6.x -* Pimcore X (since Version 4.0) - -## Getting started/Installation - * Install via composer - ```composer require w-vision/data-definitions``` - * Enable via command-line (or inside the pimcore extension manager) - ```bin/console pimcore:bundle:enable DataDefinitionsBundle``` - * Install via command-line (or inside the pimcore extension manager) - ```bin/console pimcore:bundle:install DataDefinitionsBundle``` +* Pimcore 11 + +## Getting started +```bash +# Install via composer +composer require instride/data-definitions +``` + +```php +// Add to config/bundles.php +return [ + // ... + Instride\DataDefinitionsBundle\DataDefinitionsBundle::class => ['all' => true], +]; +``` + +```bash +# Install the bundle via command-line +bin/console pimcore:bundle:install DataDefinitionsBundle +``` + * Reload Pimcore * Open Settings -> Import Definitions or Export Definitions @@ -27,8 +38,8 @@ as often you like. Everything within Data Definitions is extendable. - [Export Definitions](./docs/exports.md) ## License -**w-vision AG**, Sandgruebestrasse 4, 6210 Sursee, Switzerland -[www.w-vision.ch](https://www.w-vision.ch), support@w-vision.ch -Copyright © 2019 w-vision AG. All rights reserved. +**instride AG**, Sandgruebestrasse 4, 6210 Sursee, Switzerland +[instride.ch](https://instride.ch), connect@instride.ch +Copyright © 2024 instride AG. All rights reserved. -For licensing details please visit [LICENSE.md](LICENSE.md) +For licensing details please visit [LICENSE.md](LICENSE.md) diff --git a/bin/console b/bin/console index b37ac8fb..83a2da41 100755 --- a/bin/console +++ b/bin/console @@ -1,16 +1,17 @@ #!/usr/bin/env php =8.0", + "php": ">=8.1", "ext-json": "*", - "box/spout": "^3.0", + "openspout/openspout": "^3.7", "coreshop/pimcore-bundle": "^4.0", "coreshop/resource-bundle": "^4.0", "coreshop/rule-bundle": "^4.0", - "jms/serializer": "^3.17.1", + "jms/serializer": "^3.17", "league/csv": "^9.7", "nyholm/psr7": "^1.5", "pimcore/admin-ui-classic-bundle": "^1.0", @@ -49,10 +49,10 @@ "roave/security-advisories": "dev-latest", "behat/behat": "^3.8", "friends-of-behat/symfony-extension": "^2.1", - "phpstan/phpstan": "^1.5.4", - "phpstan/phpstan-doctrine": "^1.3.2", - "phpstan/phpstan-symfony": "^1.1.8", - "phpstan/phpstan-webmozart-assert": "^1.1.2" + "phpstan/phpstan": "^1.5", + "phpstan/phpstan-doctrine": "^1.3", + "phpstan/phpstan-symfony": "^1.1", + "phpstan/phpstan-webmozart-assert": "^1.1" }, "conflict": { "guzzlehttp/psr7": "< 2.0" @@ -63,12 +63,12 @@ }, "autoload": { "psr-4": { - "Wvision\\Bundle\\DataDefinitionsBundle\\": "src/DataDefinitionsBundle" + "Instride\\Bundle\\DataDefinitionsBundle\\": "src/DataDefinitionsBundle" } }, "autoload-dev": { "psr-4": { - "Wvision\\Bundle\\DataDefinitionsBundle\\Behat\\": "tests/DataDefinitionsBundle/Behat", + "Instride\\Bundle\\DataDefinitionsBundle\\Behat\\": "tests/DataDefinitionsBundle/Behat", "Pimcore\\Model\\DataObject\\": [ "var/classes/DataObject", "var/tmp/behat/var/classes/DataObject" @@ -81,11 +81,11 @@ "extra": { "pimcore": { "bundles": [ - "Wvision\\Bundle\\DataDefinitionsBundle\\DataDefinitionsBundle" + "Instride\\Bundle\\DataDefinitionsBundle\\DataDefinitionsBundle" ] }, "branch-alias": { - "dev-master": "4.0-dev" + "dev-5.0": "5.0-dev" } }, "minimum-stability": "dev", diff --git a/config/services_test.yaml b/config/services_test.yaml index 436320a6..a424665c 100644 --- a/config/services_test.yaml +++ b/config/services_test.yaml @@ -1,5 +1,5 @@ services: data_definitions.behat.filter.simple: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Service\Filter\SimpleFilter + class: Instride\Bundle\DataDefinitionsBundle\Behat\Service\Filter\SimpleFilter tags: - { name: data_definitions.filter, type: simple } diff --git a/docs/export/fetcher.md b/docs/export/fetcher.md index 18d87f41..fa005cd8 100644 --- a/docs/export/fetcher.md +++ b/docs/export/fetcher.md @@ -1,7 +1,7 @@ ## Fetcher A fetcher finds Pimcore Objects and returns it. Per Default, Data Definitions only comes with one Fetcher: ObjectsFetcher, which returns all Objects of a Type. -To create your own Loader you need to implement ```Wvision\Bundle\DataDefinitionsBundle\Fetcher\FetcherInterface``` and add a new service +To create your own Loader you need to implement ```Instride\Bundle\DataDefinitionsBundle\Fetcher\FetcherInterface``` and add a new service ```yml acme_bundle.data_definitions.my_fetcher: diff --git a/docs/export/getter.md b/docs/export/getter.md index 0b22fc98..779cec84 100644 --- a/docs/export/getter.md +++ b/docs/export/getter.md @@ -3,7 +3,7 @@ A Getter gets the data to the data object You can also implement your own Getters. -Todo that, you need to implement the interface ```Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface``` and create a service +Todo that, you need to implement the interface ```Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface``` and create a service ```yml acme_bundle.data_definitions.my_getter: diff --git a/docs/export/provider.md b/docs/export/provider.md index 9d8b3b80..3edeff0f 100644 --- a/docs/export/provider.md +++ b/docs/export/provider.md @@ -5,7 +5,7 @@ Currently, these Export Provider Types are supported: - JSON - XML -To create a custom provider, you need to implement ```Wvision\Bundle\DataDefinitionsBundle\Provider\ExportProviderInterface``` namespace and add a new service: +To create a custom provider, you need to implement ```Instride\Bundle\DataDefinitionsBundle\Provider\ExportProviderInterface``` namespace and add a new service: ```yml acme_bundle.data_definitions.provider.my_provider: diff --git a/docs/import/cleaner.md b/docs/import/cleaner.md index cd4a18f0..4c08fa00 100644 --- a/docs/import/cleaner.md +++ b/docs/import/cleaner.md @@ -6,7 +6,7 @@ A cleaner takes care about the clean-up process. It basically deletes or unpubli - Reference Cleaner: Deletes only when no references exists, otherwise the object will be unpublished - None: does basically nothing -To create your own cleaner you need to implement ```Wvision\Bundle\DataDefinitionsBundle\Cleaner\CleanerInterface``` and add a new service +To create your own cleaner you need to implement ```Instride\Bundle\DataDefinitionsBundle\Cleaner\CleanerInterface``` and add a new service ```yml acme_bundle.data_definitions.my_cleaner: diff --git a/docs/import/filter.md b/docs/import/filter.md index 35342700..a2dbc388 100644 --- a/docs/import/filter.md +++ b/docs/import/filter.md @@ -1,7 +1,7 @@ ## Filter A Filter, as the name says, filters your data on runtime. Your method gets called on every "row" and you get to decide if you want to import it, or not. -To implement a new filter, you need to implement the interface ```Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface``` and add a new service +To implement a new filter, you need to implement the interface ```Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface``` and add a new service ```yml acme_bundle.data_definitions.my_filter: diff --git a/docs/import/loader.md b/docs/import/loader.md index 78d6e950..7cc12fd2 100644 --- a/docs/import/loader.md +++ b/docs/import/loader.md @@ -1,7 +1,7 @@ ## Loader A loader finds a Pimcore Object (or not) and returns it. Per Default, Data Definitions only comes with one Loader: PrimaryKey, which finds your DataObject based on un-interpreted Data based on what you select in the configuration. -To create your own Loader you need to implement ```Wvision\Bundle\DataDefinitionsBundle\Loader\LoaderInterface``` and add a new service +To create your own Loader you need to implement ```Instride\Bundle\DataDefinitionsBundle\Loader\LoaderInterface``` and add a new service ```yml acme_bundle.data_definitions.my_loader: diff --git a/docs/import/persister.md b/docs/import/persister.md index 37b7f464..cd33bf88 100644 --- a/docs/import/persister.md +++ b/docs/import/persister.md @@ -3,7 +3,7 @@ A persister takes care about the save process. It basically saves objects. Follo - `Persister` saves objects -To create your own persister you need to implement `Wvision\Bundle\DataDefinitionsBundle\Persister\PersisterInterface` +To create your own persister you need to implement `Instride\Bundle\DataDefinitionsBundle\Persister\PersisterInterface` and add a new service: ```yml @@ -11,4 +11,4 @@ acme_bundle.data_definitions.my_persister: class: AcmeBundle\DataDefinitions\MyPersister tags: - { name: data_definitions.persister, type: my-persister } -``` \ No newline at end of file +``` diff --git a/docs/import/provider.md b/docs/import/provider.md index a07f610c..d881ec76 100644 --- a/docs/import/provider.md +++ b/docs/import/provider.md @@ -9,7 +9,7 @@ Currently, these Import Provider Types are supported: - Raw (for nested imports) Because, the data needs to be non-hierarchial, XML and JSON are very limited. You can write your own provider to prepare the data for the plugin. To do that, you simply -need to create a new class and implement ```Wvision\Bundle\DataDefinitionsBundle\Provider\ImportProviderInterface``` namespace and add a new service: +need to create a new class and implement ```Instride\Bundle\DataDefinitionsBundle\Provider\ImportProviderInterface``` namespace and add a new service: ```yml acme_bundle.data_definitions.provider.my_provider: diff --git a/docs/import/setter.md b/docs/import/setter.md index 7a473c71..c95e46c6 100644 --- a/docs/import/setter.md +++ b/docs/import/setter.md @@ -10,13 +10,13 @@ A Setter sets the data to the object as it would be needed. Of course, you can also implement your own Setters. Its basically the same as with Interpreters. -Todo that, you need to implement the interface ```Wvision\Bundle\DataDefinitionsBundle\Setter\SetterInterface``` and create a service +Todo that, you need to implement the interface ```Instride\Bundle\DataDefinitionsBundle\Setter\SetterInterface``` and create a service ```yml acme_bundle.data_definitions.my_setter: class: AcmeBundle\DataDefinitions\MySetter tags: - - { name: data_definitions.setter, type: mysetter, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.setter, type: mysetter, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } ``` If your Setter does have configuration as well, you need to create a new FormType and add a new Javascript file for the GUI: diff --git a/docs/interpreter.md b/docs/interpreter.md index 6efe6d92..786a45f4 100644 --- a/docs/interpreter.md +++ b/docs/interpreter.md @@ -123,13 +123,13 @@ Returns input casted to a given type. Data Definitions provides you with a basic starting set of Interpreters, but you can create custom ones as well. -Todo that, you need to implement the interface ```Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface``` and create a service +Todo that, you need to implement the interface ```Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface``` and create a service ```yml acme_bundle.data_definitions.my_interpreter: class: AcmeBundle\DataDefinitions\MyInterpreter tags: - - { name: data_definitions.interpreter, type: myinterpreter, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.interpreter, type: myinterpreter, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } ``` If your Interpreter does have configuration as well, you need to create a new FormType and add a new Javascript file for the GUI: diff --git a/docs/runner.md b/docs/runner.md index 3fe1a5bd..66d6b965 100644 --- a/docs/runner.md +++ b/docs/runner.md @@ -1,7 +1,7 @@ ## Runner A runner gets called before and after every line is imported from your data-source or exported to your export target. This can help you do clean-up or similar stuff. -To implement a new Runner, you need to implement the interface ```Wvision\Bundle\DataDefinitionsBundle\Runner\RunnerInterface``` and add a new service +To implement a new Runner, you need to implement the interface ```Instride\Bundle\DataDefinitionsBundle\Runner\RunnerInterface``` and add a new service ```yml acme_bundle.data_definitions.my_runner: diff --git a/phpstan.neon b/phpstan.neon index da21aefc..a26af1e0 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -29,13 +29,13 @@ parameters: - '/Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::children\(\)/' - '/Call to an undefined method Pimcore\\Model\\\(.*\)::save\(\)./' - '/Call to an undefined method Pimcore\\Model\\\(.*\)::delete\(\)./' - - '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log\\Listing::load\(\)./' - - '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log\\Listing::getTotalCount\(\)./' - - '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log::delete\(\)./' - - '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log::save\(\)./' - - '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log::getById\(\)./' - - '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\ExportDefinition\\Listing::load\(\)./' - - '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\ImportDefinition\\Listing::load\(\)./' + - '/Call to an undefined method Instride\\Bundle\\DataDefinitionsBundle\\Model\\Log\\Listing::load\(\)./' + - '/Call to an undefined method Instride\\Bundle\\DataDefinitionsBundle\\Model\\Log\\Listing::getTotalCount\(\)./' + - '/Call to an undefined method Instride\\Bundle\\DataDefinitionsBundle\\Model\\Log::delete\(\)./' + - '/Call to an undefined method Instride\\Bundle\\DataDefinitionsBundle\\Model\\Log::save\(\)./' + - '/Call to an undefined method Instride\\Bundle\\DataDefinitionsBundle\\Model\\Log::getById\(\)./' + - '/Call to an undefined method Instride\\Bundle\\DataDefinitionsBundle\\Model\\ExportDefinition\\Listing::load\(\)./' + - '/Call to an undefined method Instride\\Bundle\\DataDefinitionsBundle\\Model\\ImportDefinition\\Listing::load\(\)./' includes: - vendor/phpstan/phpstan-doctrine/extension.neon diff --git a/src/BehatKernel.php b/src/BehatKernel.php index 4c78db11..4298642b 100644 --- a/src/BehatKernel.php +++ b/src/BehatKernel.php @@ -1,15 +1,16 @@ addBundle(new \Wvision\Bundle\DataDefinitionsBundle\DataDefinitionsBundle()); + $collection->addBundle(new \Instride\Bundle\DataDefinitionsBundle\DataDefinitionsBundle()); $collection->addBundle(new \FriendsOfBehat\SymfonyExtension\Bundle\FriendsOfBehatSymfonyExtensionBundle()); } diff --git a/src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php b/src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php index 202a8528..a4c7517f 100644 --- a/src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php +++ b/src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Cleaner; +namespace Instride\Bundle\DataDefinitionsBundle\Cleaner; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\Log; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\Log; abstract class AbstractCleaner implements CleanerInterface { diff --git a/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php b/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php index df17104b..3ca6e6c7 100644 --- a/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php +++ b/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Cleaner; +namespace Instride\Bundle\DataDefinitionsBundle\Cleaner; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; interface CleanerInterface { diff --git a/src/DataDefinitionsBundle/Cleaner/Deleter.php b/src/DataDefinitionsBundle/Cleaner/Deleter.php index 6ee8483b..9080ae95 100644 --- a/src/DataDefinitionsBundle/Cleaner/Deleter.php +++ b/src/DataDefinitionsBundle/Cleaner/Deleter.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Cleaner; +namespace Instride\Bundle\DataDefinitionsBundle\Cleaner; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; class Deleter extends AbstractCleaner { diff --git a/src/DataDefinitionsBundle/Cleaner/None.php b/src/DataDefinitionsBundle/Cleaner/None.php index b3aef465..c80f0e8f 100644 --- a/src/DataDefinitionsBundle/Cleaner/None.php +++ b/src/DataDefinitionsBundle/Cleaner/None.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Cleaner; +namespace Instride\Bundle\DataDefinitionsBundle\Cleaner; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; class None extends AbstractCleaner { diff --git a/src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php b/src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php index ef7a217a..e65637e1 100644 --- a/src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php +++ b/src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Cleaner; +namespace Instride\Bundle\DataDefinitionsBundle\Cleaner; use Pimcore\Model\Dependency; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; use function count; class ReferenceCleaner extends AbstractCleaner diff --git a/src/DataDefinitionsBundle/Cleaner/Unpublisher.php b/src/DataDefinitionsBundle/Cleaner/Unpublisher.php index d79f14e5..edf839b6 100644 --- a/src/DataDefinitionsBundle/Cleaner/Unpublisher.php +++ b/src/DataDefinitionsBundle/Cleaner/Unpublisher.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Cleaner; +namespace Instride\Bundle\DataDefinitionsBundle\Cleaner; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; class Unpublisher extends AbstractCleaner { diff --git a/src/DataDefinitionsBundle/Command/AbstractImportDefinitionCommand.php b/src/DataDefinitionsBundle/Command/AbstractImportDefinitionCommand.php index 792d75be..9fa3096a 100644 --- a/src/DataDefinitionsBundle/Command/AbstractImportDefinitionCommand.php +++ b/src/DataDefinitionsBundle/Command/AbstractImportDefinitionCommand.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Command; +namespace Instride\Bundle\DataDefinitionsBundle\Command; use CoreShop\Bundle\ResourceBundle\Controller\ResourceFormFactoryInterface; use CoreShop\Bundle\ResourceBundle\Pimcore\ObjectManager; @@ -24,7 +24,7 @@ use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -use Wvision\Bundle\DataDefinitionsBundle\Repository\DefinitionRepository; +use Instride\Bundle\DataDefinitionsBundle\Repository\DefinitionRepository; abstract class AbstractImportDefinitionCommand extends AbstractCommand { diff --git a/src/DataDefinitionsBundle/Command/ExportCommand.php b/src/DataDefinitionsBundle/Command/ExportCommand.php index dbe1d666..67b8f801 100644 --- a/src/DataDefinitionsBundle/Command/ExportCommand.php +++ b/src/DataDefinitionsBundle/Command/ExportCommand.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Command; +namespace Instride\Bundle\DataDefinitionsBundle\Command; use Exception; use InvalidArgumentException; @@ -24,10 +24,10 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\EventDispatcher\EventDispatcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Event\ExportDefinitionEvent; -use Wvision\Bundle\DataDefinitionsBundle\Exporter\ExporterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Repository\DefinitionRepository; +use Instride\Bundle\DataDefinitionsBundle\Event\ExportDefinitionEvent; +use Instride\Bundle\DataDefinitionsBundle\Exporter\ExporterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Repository\DefinitionRepository; final class ExportCommand extends AbstractCommand { diff --git a/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php b/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php index ac964c23..a1fd58bf 100644 --- a/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php +++ b/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Command; +namespace Instride\Bundle\DataDefinitionsBundle\Command; use Exception; use InvalidArgumentException; @@ -25,11 +25,11 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\EventDispatcher\EventDispatcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Event\ImportDefinitionEvent; -use Wvision\Bundle\DataDefinitionsBundle\Importer\AsyncImporterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Repository\DefinitionRepository; +use Instride\Bundle\DataDefinitionsBundle\Event\ImportDefinitionEvent; +use Instride\Bundle\DataDefinitionsBundle\Importer\AsyncImporterInterface; +use Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Repository\DefinitionRepository; final class ImportAsyncCommand extends AbstractCommand { diff --git a/src/DataDefinitionsBundle/Command/ImportCommand.php b/src/DataDefinitionsBundle/Command/ImportCommand.php index 2278bf3f..1867411c 100644 --- a/src/DataDefinitionsBundle/Command/ImportCommand.php +++ b/src/DataDefinitionsBundle/Command/ImportCommand.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Command; +namespace Instride\Bundle\DataDefinitionsBundle\Command; use Exception; use InvalidArgumentException; @@ -25,10 +25,10 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\EventDispatcher\EventDispatcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Event\ImportDefinitionEvent; -use Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Repository\DefinitionRepository; +use Instride\Bundle\DataDefinitionsBundle\Event\ImportDefinitionEvent; +use Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Repository\DefinitionRepository; final class ImportCommand extends AbstractCommand { diff --git a/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php b/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php index 4521ca42..418fdee6 100644 --- a/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php +++ b/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Command; +namespace Instride\Bundle\DataDefinitionsBundle\Command; final class ImportExportDefinitionCommand extends AbstractImportDefinitionCommand { diff --git a/src/DataDefinitionsBundle/Command/ImportImportDefinitionCommand.php b/src/DataDefinitionsBundle/Command/ImportImportDefinitionCommand.php index 7dfd48b1..e2239abf 100644 --- a/src/DataDefinitionsBundle/Command/ImportImportDefinitionCommand.php +++ b/src/DataDefinitionsBundle/Command/ImportImportDefinitionCommand.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Command; +namespace Instride\Bundle\DataDefinitionsBundle\Command; final class ImportImportDefinitionCommand extends AbstractImportDefinitionCommand { diff --git a/src/DataDefinitionsBundle/Command/ListExportDefinitionsCommand.php b/src/DataDefinitionsBundle/Command/ListExportDefinitionsCommand.php index 75dd7614..3403f6f6 100644 --- a/src/DataDefinitionsBundle/Command/ListExportDefinitionsCommand.php +++ b/src/DataDefinitionsBundle/Command/ListExportDefinitionsCommand.php @@ -8,20 +8,20 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Command; +namespace Instride\Bundle\DataDefinitionsBundle\Command; use CoreShop\Component\Resource\Repository\RepositoryInterface; use Pimcore\Console\AbstractCommand; use Symfony\Component\Console\Helper\Table; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; final class ListExportDefinitionsCommand extends AbstractCommand { diff --git a/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php b/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php index db96ad39..5b56178d 100644 --- a/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php +++ b/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php @@ -8,20 +8,20 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Command; +namespace Instride\Bundle\DataDefinitionsBundle\Command; use CoreShop\Component\Resource\Repository\RepositoryInterface; use Pimcore\Console\AbstractCommand; use Symfony\Component\Console\Helper\Table; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; final class ListImportDefinitionsCommand extends AbstractCommand { diff --git a/src/DataDefinitionsBundle/Context/Context.php b/src/DataDefinitionsBundle/Context/Context.php index 5a259ff4..be7dd0cf 100644 --- a/src/DataDefinitionsBundle/Context/Context.php +++ b/src/DataDefinitionsBundle/Context/Context.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; abstract class Context implements ContextInterface { diff --git a/src/DataDefinitionsBundle/Context/ContextFactory.php b/src/DataDefinitionsBundle/Context/ContextFactory.php index 2549e894..92fbe2b3 100644 --- a/src/DataDefinitionsBundle/Context/ContextFactory.php +++ b/src/DataDefinitionsBundle/Context/ContextFactory.php @@ -8,22 +8,22 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\MappingInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\MappingInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; class ContextFactory implements ContextFactoryInterface { diff --git a/src/DataDefinitionsBundle/Context/ContextFactoryInterface.php b/src/DataDefinitionsBundle/Context/ContextFactoryInterface.php index f9ed17c5..a7917abe 100644 --- a/src/DataDefinitionsBundle/Context/ContextFactoryInterface.php +++ b/src/DataDefinitionsBundle/Context/ContextFactoryInterface.php @@ -8,22 +8,22 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\MappingInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\MappingInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; interface ContextFactoryInterface { diff --git a/src/DataDefinitionsBundle/Context/ContextInterface.php b/src/DataDefinitionsBundle/Context/ContextInterface.php index d4630abd..695c79d8 100644 --- a/src/DataDefinitionsBundle/Context/ContextInterface.php +++ b/src/DataDefinitionsBundle/Context/ContextInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; interface ContextInterface { diff --git a/src/DataDefinitionsBundle/Context/FetcherContext.php b/src/DataDefinitionsBundle/Context/FetcherContext.php index 392f3fb8..a6c24aca 100644 --- a/src/DataDefinitionsBundle/Context/FetcherContext.php +++ b/src/DataDefinitionsBundle/Context/FetcherContext.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; class FetcherContext extends Context implements FetcherContextInterface { diff --git a/src/DataDefinitionsBundle/Context/FetcherContextInterface.php b/src/DataDefinitionsBundle/Context/FetcherContextInterface.php index a7212142..44b2b3a8 100644 --- a/src/DataDefinitionsBundle/Context/FetcherContextInterface.php +++ b/src/DataDefinitionsBundle/Context/FetcherContextInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; interface FetcherContextInterface extends ContextInterface { diff --git a/src/DataDefinitionsBundle/Context/FilterContext.php b/src/DataDefinitionsBundle/Context/FilterContext.php index 876441d3..837b1005 100644 --- a/src/DataDefinitionsBundle/Context/FilterContext.php +++ b/src/DataDefinitionsBundle/Context/FilterContext.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; class FilterContext extends Context implements FilterContextInterface { diff --git a/src/DataDefinitionsBundle/Context/FilterContextInterface.php b/src/DataDefinitionsBundle/Context/FilterContextInterface.php index a77800e8..d20272bf 100644 --- a/src/DataDefinitionsBundle/Context/FilterContextInterface.php +++ b/src/DataDefinitionsBundle/Context/FilterContextInterface.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; interface FilterContextInterface extends ContextInterface { diff --git a/src/DataDefinitionsBundle/Context/GetterContext.php b/src/DataDefinitionsBundle/Context/GetterContext.php index 159f7cb2..dfac3213 100644 --- a/src/DataDefinitionsBundle/Context/GetterContext.php +++ b/src/DataDefinitionsBundle/Context/GetterContext.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; class GetterContext extends Context implements GetterContextInterface { diff --git a/src/DataDefinitionsBundle/Context/GetterContextInterface.php b/src/DataDefinitionsBundle/Context/GetterContextInterface.php index a92f6ebb..586774f0 100644 --- a/src/DataDefinitionsBundle/Context/GetterContextInterface.php +++ b/src/DataDefinitionsBundle/Context/GetterContextInterface.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; interface GetterContextInterface extends ContextInterface { diff --git a/src/DataDefinitionsBundle/Context/InterpreterContext.php b/src/DataDefinitionsBundle/Context/InterpreterContext.php index 553bd6d4..1bdddee9 100644 --- a/src/DataDefinitionsBundle/Context/InterpreterContext.php +++ b/src/DataDefinitionsBundle/Context/InterpreterContext.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\MappingInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\MappingInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; class InterpreterContext extends Context implements InterpreterContextInterface { diff --git a/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php b/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php index 2d8629fc..13c11a6c 100644 --- a/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php +++ b/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\MappingInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\MappingInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; interface InterpreterContextInterface extends ContextInterface { diff --git a/src/DataDefinitionsBundle/Context/LoaderContext.php b/src/DataDefinitionsBundle/Context/LoaderContext.php index e14207ed..2fe637fa 100644 --- a/src/DataDefinitionsBundle/Context/LoaderContext.php +++ b/src/DataDefinitionsBundle/Context/LoaderContext.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; class LoaderContext extends Context implements LoaderContextInterface { diff --git a/src/DataDefinitionsBundle/Context/LoaderContextInterface.php b/src/DataDefinitionsBundle/Context/LoaderContextInterface.php index 3dd61c11..d442b97d 100644 --- a/src/DataDefinitionsBundle/Context/LoaderContextInterface.php +++ b/src/DataDefinitionsBundle/Context/LoaderContextInterface.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; interface LoaderContextInterface extends ContextInterface { diff --git a/src/DataDefinitionsBundle/Context/RunnerContext.php b/src/DataDefinitionsBundle/Context/RunnerContext.php index 06463707..790e351f 100644 --- a/src/DataDefinitionsBundle/Context/RunnerContext.php +++ b/src/DataDefinitionsBundle/Context/RunnerContext.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; class RunnerContext extends Context implements RunnerContextInterface { diff --git a/src/DataDefinitionsBundle/Context/RunnerContextInterface.php b/src/DataDefinitionsBundle/Context/RunnerContextInterface.php index af9948d9..3de499ce 100644 --- a/src/DataDefinitionsBundle/Context/RunnerContextInterface.php +++ b/src/DataDefinitionsBundle/Context/RunnerContextInterface.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; interface RunnerContextInterface extends ContextInterface { diff --git a/src/DataDefinitionsBundle/Context/SetterContext.php b/src/DataDefinitionsBundle/Context/SetterContext.php index a4285951..fe2514c5 100644 --- a/src/DataDefinitionsBundle/Context/SetterContext.php +++ b/src/DataDefinitionsBundle/Context/SetterContext.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; class SetterContext extends Context implements SetterContextInterface { diff --git a/src/DataDefinitionsBundle/Context/SetterContextInterface.php b/src/DataDefinitionsBundle/Context/SetterContextInterface.php index 67969a78..3d593bbc 100644 --- a/src/DataDefinitionsBundle/Context/SetterContextInterface.php +++ b/src/DataDefinitionsBundle/Context/SetterContextInterface.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Context; +namespace Instride\Bundle\DataDefinitionsBundle\Context; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; interface SetterContextInterface extends ContextInterface { diff --git a/src/DataDefinitionsBundle/Controller/AbstractDefinitionController.php b/src/DataDefinitionsBundle/Controller/AbstractDefinitionController.php index 4f22d0b2..3f49b1ce 100644 --- a/src/DataDefinitionsBundle/Controller/AbstractDefinitionController.php +++ b/src/DataDefinitionsBundle/Controller/AbstractDefinitionController.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Controller; +namespace Instride\Bundle\DataDefinitionsBundle\Controller; use CoreShop\Bundle\ResourceBundle\Controller\ResourceController; use CoreShop\Component\Resource\Model\ResourceInterface; @@ -25,8 +25,8 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping\FromColumn; abstract class AbstractDefinitionController extends ResourceController { diff --git a/src/DataDefinitionsBundle/Controller/ExportDefinitionController.php b/src/DataDefinitionsBundle/Controller/ExportDefinitionController.php index 9dd71c0c..895a8190 100644 --- a/src/DataDefinitionsBundle/Controller/ExportDefinitionController.php +++ b/src/DataDefinitionsBundle/Controller/ExportDefinitionController.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Controller; +namespace Instride\Bundle\DataDefinitionsBundle\Controller; use CoreShop\Bundle\ResourceBundle\Controller\ResourceController; use Pimcore\Model\DataObject; @@ -24,8 +24,8 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping\FromColumn; class ExportDefinitionController extends AbstractDefinitionController { diff --git a/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php b/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php index 220e31d1..ba479883 100644 --- a/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php +++ b/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Controller; +namespace Instride\Bundle\DataDefinitionsBundle\Controller; use CoreShop\Component\Registry\ServiceRegistryInterface; use Exception; @@ -26,10 +26,10 @@ use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Contracts\Service\Attribute\SubscribedService; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; -use Wvision\Bundle\DataDefinitionsBundle\Service\FieldSelection; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\Service\FieldSelection; use function is_array; class ImportDefinitionController extends AbstractDefinitionController diff --git a/src/DataDefinitionsBundle/Controller/ImportRuleController.php b/src/DataDefinitionsBundle/Controller/ImportRuleController.php index ffa45046..7d788cd7 100644 --- a/src/DataDefinitionsBundle/Controller/ImportRuleController.php +++ b/src/DataDefinitionsBundle/Controller/ImportRuleController.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Controller; +namespace Instride\Bundle\DataDefinitionsBundle\Controller; use Pimcore\Bundle\AdminBundle\Controller\GDPR\AdminController; use Symfony\Component\Form\FormFactoryInterface; @@ -22,7 +22,7 @@ use Symfony\Component\HttpFoundation\File\UploadedFile; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; -use Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportRulesImportType; +use Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportRulesImportType; class ImportRuleController extends AdminController { diff --git a/src/DataDefinitionsBundle/DataDefinitionsBundle.php b/src/DataDefinitionsBundle/DataDefinitionsBundle.php index fbb00edd..9f751861 100644 --- a/src/DataDefinitionsBundle/DataDefinitionsBundle.php +++ b/src/DataDefinitionsBundle/DataDefinitionsBundle.php @@ -1,4 +1,5 @@ getRootNode(); ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, [ @@ -212,4 +211,4 @@ private function addPimcoreResourcesSection(ArrayNodeDefinition $node) ->end() ->end(); } -} \ No newline at end of file +} diff --git a/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php b/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php index 738f7f34..c2bb2213 100644 --- a/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php +++ b/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\DependencyInjection; +namespace Instride\Bundle\DataDefinitionsBundle\DependencyInjection; use CoreShop\Bundle\ResourceBundle\DependencyInjection\Extension\AbstractModelExtension; use Pimcore\Config\LocationAwareConfigRepository; @@ -23,30 +23,30 @@ use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface; use Symfony\Component\DependencyInjection\Loader; use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; -use Wvision\Bundle\DataDefinitionsBundle\Cleaner\CleanerInterface; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\CleanerRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\ExportProviderRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\ExportRunnerRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\FetcherRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\FilterRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\GetterRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\InterpreterRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\LoaderRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\PersisterRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\ProviderRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\RunnerRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\SetterRegistryCompilerPass; -use Wvision\Bundle\DataDefinitionsBundle\Fetcher\FetcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Loader\LoaderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Persister\PersisterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ExportProviderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportProviderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Runner\ExportRunnerInterface; -use Wvision\Bundle\DataDefinitionsBundle\Runner\RunnerInterface; -use Wvision\Bundle\DataDefinitionsBundle\Setter\SetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Cleaner\CleanerInterface; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\CleanerRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\ExportProviderRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\ExportRunnerRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\FetcherRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\FilterRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\GetterRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\InterpreterRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\LoaderRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\PersisterRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\ProviderRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\RunnerRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler\SetterRegistryCompilerPass; +use Instride\Bundle\DataDefinitionsBundle\Fetcher\FetcherInterface; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; +use Instride\Bundle\DataDefinitionsBundle\Loader\LoaderInterface; +use Instride\Bundle\DataDefinitionsBundle\Persister\PersisterInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ExportProviderInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportProviderInterface; +use Instride\Bundle\DataDefinitionsBundle\Runner\ExportRunnerInterface; +use Instride\Bundle\DataDefinitionsBundle\Runner\RunnerInterface; +use Instride\Bundle\DataDefinitionsBundle\Setter\SetterInterface; class DataDefinitionsExtension extends AbstractModelExtension implements PrependExtensionInterface { diff --git a/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php b/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php index 8067e6d7..55cb2484 100644 --- a/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php +++ b/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2020 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Event; +namespace Instride\Bundle\DataDefinitionsBundle\Event; interface DefinitionEventInterface { diff --git a/src/DataDefinitionsBundle/Event/EventDispatcher.php b/src/DataDefinitionsBundle/Event/EventDispatcher.php index 46c716f9..4eaa2151 100644 --- a/src/DataDefinitionsBundle/Event/EventDispatcher.php +++ b/src/DataDefinitionsBundle/Event/EventDispatcher.php @@ -6,16 +6,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2015-2017 Dominik Pfaffenbauer (https://www.pfaffenbauer.at) - * @license https://www.coreshop.org/license GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Event; +namespace Instride\Bundle\DataDefinitionsBundle\Event; use Symfony\Component\EventDispatcher\EventDispatcherInterface as SymfonyEventDispatcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; final class EventDispatcher implements EventDispatcherInterface { diff --git a/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php b/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php index d30642be..915c82a8 100644 --- a/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php +++ b/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php @@ -6,15 +6,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2015-2017 Dominik Pfaffenbauer (https://www.pfaffenbauer.at) - * @license https://www.coreshop.org/license GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Event; +namespace Instride\Bundle\DataDefinitionsBundle\Event; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; interface EventDispatcherInterface { diff --git a/src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php b/src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php index a3bc3480..8a8b8731 100644 --- a/src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php +++ b/src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Event; +namespace Instride\Bundle\DataDefinitionsBundle\Event; use Symfony\Contracts\EventDispatcher\Event; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; final class ExportDefinitionEvent extends Event implements DefinitionEventInterface { diff --git a/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php b/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php index a715e296..b78d6829 100644 --- a/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php +++ b/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Event; +namespace Instride\Bundle\DataDefinitionsBundle\Event; use Symfony\Contracts\EventDispatcher\Event; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; final class ImportDefinitionEvent extends Event implements DefinitionEventInterface { diff --git a/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php b/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php index 2017124e..752d4322 100644 --- a/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php +++ b/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\EventListener; +namespace Instride\Bundle\DataDefinitionsBundle\EventListener; use Pimcore\Event\Model\DataObjectEvent; -use Wvision\Bundle\DataDefinitionsBundle\Model\Log; +use Instride\Bundle\DataDefinitionsBundle\Model\Log; final class ObjectDeleteListener { diff --git a/src/DataDefinitionsBundle/EventListener/PimcoreSettingsListener.php b/src/DataDefinitionsBundle/EventListener/PimcoreSettingsListener.php index 9b48546d..cc704e1e 100644 --- a/src/DataDefinitionsBundle/EventListener/PimcoreSettingsListener.php +++ b/src/DataDefinitionsBundle/EventListener/PimcoreSettingsListener.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\EventListener; +namespace Instride\Bundle\DataDefinitionsBundle\EventListener; use Pimcore\Bundle\AdminBundle\Event\IndexActionSettingsEvent; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition; class PimcoreSettingsListener { diff --git a/src/DataDefinitionsBundle/EventListener/WriteableListener.php b/src/DataDefinitionsBundle/EventListener/WriteableListener.php index 271c10d0..f4d1b289 100644 --- a/src/DataDefinitionsBundle/EventListener/WriteableListener.php +++ b/src/DataDefinitionsBundle/EventListener/WriteableListener.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\EventListener; +namespace Instride\Bundle\DataDefinitionsBundle\EventListener; use CoreShop\Bundle\ResourceBundle\Event\ResourceControllerEvent; use Pimcore\Model\Exception\ConfigWriteException; use Symfony\Component\EventDispatcher\EventSubscriberInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition; class WriteableListener implements EventSubscriberInterface { diff --git a/src/DataDefinitionsBundle/Exception/DoNotSetException.php b/src/DataDefinitionsBundle/Exception/DoNotSetException.php index 90b795fc..9c33d02d 100644 --- a/src/DataDefinitionsBundle/Exception/DoNotSetException.php +++ b/src/DataDefinitionsBundle/Exception/DoNotSetException.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Exception; +namespace Instride\Bundle\DataDefinitionsBundle\Exception; use Exception; diff --git a/src/DataDefinitionsBundle/Exception/InterpreterException.php b/src/DataDefinitionsBundle/Exception/InterpreterException.php index 905268c1..33ffa2eb 100644 --- a/src/DataDefinitionsBundle/Exception/InterpreterException.php +++ b/src/DataDefinitionsBundle/Exception/InterpreterException.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Exception; +namespace Instride\Bundle\DataDefinitionsBundle\Exception; use RuntimeException; use Throwable; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\MappingInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\MappingInterface; class InterpreterException extends RuntimeException { diff --git a/src/DataDefinitionsBundle/Exception/SpoutException.php b/src/DataDefinitionsBundle/Exception/SpoutException.php index 5cdf3619..dbe9e5d4 100644 --- a/src/DataDefinitionsBundle/Exception/SpoutException.php +++ b/src/DataDefinitionsBundle/Exception/SpoutException.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Exception; +namespace Instride\Bundle\DataDefinitionsBundle\Exception; use Exception; diff --git a/src/DataDefinitionsBundle/Exception/UnexpectedValueException.php b/src/DataDefinitionsBundle/Exception/UnexpectedValueException.php index 71d3515c..416fec64 100644 --- a/src/DataDefinitionsBundle/Exception/UnexpectedValueException.php +++ b/src/DataDefinitionsBundle/Exception/UnexpectedValueException.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Exception; +namespace Instride\Bundle\DataDefinitionsBundle\Exception; use Exception; diff --git a/src/DataDefinitionsBundle/Exporter/Exporter.php b/src/DataDefinitionsBundle/Exporter/Exporter.php index 736fbc7a..271ffdc2 100644 --- a/src/DataDefinitionsBundle/Exporter/Exporter.php +++ b/src/DataDefinitionsBundle/Exporter/Exporter.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Exporter; +namespace Instride\Bundle\DataDefinitionsBundle\Exporter; use CoreShop\Component\Pimcore\DataObject\UnpublishedHelper; use CoreShop\Component\Registry\ServiceRegistryInterface; @@ -24,18 +24,18 @@ use Pimcore\Model\DataObject\Concrete; use Psr\Log\LoggerInterface; use Symfony\Component\EventDispatcher\EventDispatcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\FetcherContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Event\ExportDefinitionEvent; -use Wvision\Bundle\DataDefinitionsBundle\Exception\UnexpectedValueException; -use Wvision\Bundle\DataDefinitionsBundle\Fetcher\FetcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\DynamicColumnGetterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ExportProviderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Runner\ExportRunnerInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\FetcherContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Event\ExportDefinitionEvent; +use Instride\Bundle\DataDefinitionsBundle\Exception\UnexpectedValueException; +use Instride\Bundle\DataDefinitionsBundle\Fetcher\FetcherInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\DynamicColumnGetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; +use Instride\Bundle\DataDefinitionsBundle\Provider\ExportProviderInterface; +use Instride\Bundle\DataDefinitionsBundle\Runner\ExportRunnerInterface; use function is_array; final class Exporter implements ExporterInterface diff --git a/src/DataDefinitionsBundle/Exporter/ExporterInterface.php b/src/DataDefinitionsBundle/Exporter/ExporterInterface.php index 37c61ba3..6258872d 100644 --- a/src/DataDefinitionsBundle/Exporter/ExporterInterface.php +++ b/src/DataDefinitionsBundle/Exporter/ExporterInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Exporter; +namespace Instride\Bundle\DataDefinitionsBundle\Exporter; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; interface ExporterInterface { diff --git a/src/DataDefinitionsBundle/Fetcher/FetcherInterface.php b/src/DataDefinitionsBundle/Fetcher/FetcherInterface.php index 53ace9d6..03a0396e 100644 --- a/src/DataDefinitionsBundle/Fetcher/FetcherInterface.php +++ b/src/DataDefinitionsBundle/Fetcher/FetcherInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Fetcher; +namespace Instride\Bundle\DataDefinitionsBundle\Fetcher; -use Wvision\Bundle\DataDefinitionsBundle\Context\FetcherContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\FetcherContextInterface; interface FetcherInterface { diff --git a/src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php b/src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php index 8f2773f5..7efe7043 100644 --- a/src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php +++ b/src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php @@ -8,20 +8,20 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Fetcher; +namespace Instride\Bundle\DataDefinitionsBundle\Fetcher; use InvalidArgumentException; use Pimcore\Model\DataObject\AbstractObject; use Pimcore\Model\DataObject\ClassDefinition; use Pimcore\Model\DataObject\Listing; -use Wvision\Bundle\DataDefinitionsBundle\Context\FetcherContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\FetcherContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; class ObjectsFetcher implements FetcherInterface { diff --git a/src/DataDefinitionsBundle/Filter/FilterInterface.php b/src/DataDefinitionsBundle/Filter/FilterInterface.php index 1162d9c0..1c5b3562 100644 --- a/src/DataDefinitionsBundle/Filter/FilterInterface.php +++ b/src/DataDefinitionsBundle/Filter/FilterInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Filter; +namespace Instride\Bundle\DataDefinitionsBundle\Filter; -use Wvision\Bundle\DataDefinitionsBundle\Context\FilterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\FilterContextInterface; interface FilterInterface { diff --git a/src/DataDefinitionsBundle/Form/DataMapper/DefinitionMappingDataMapper.php b/src/DataDefinitionsBundle/Form/DataMapper/DefinitionMappingDataMapper.php index 72174b30..075bcc9d 100644 --- a/src/DataDefinitionsBundle/Form/DataMapper/DefinitionMappingDataMapper.php +++ b/src/DataDefinitionsBundle/Form/DataMapper/DefinitionMappingDataMapper.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\DataMapper; +namespace Instride\Bundle\DataDefinitionsBundle\Form\DataMapper; use Symfony\Component\Form\DataMapperInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\MappingInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\MappingInterface; final class DefinitionMappingDataMapper implements DataMapperInterface { diff --git a/src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php index eb06dabf..da584e92 100644 --- a/src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Pimcore\Model\DataObject\ClassDefinition; use Symfony\Component\Form\AbstractType; diff --git a/src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php b/src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php index 877d1545..15835ced 100644 --- a/src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php b/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php index 4b8f7860..4bae5872 100644 --- a/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use CoreShop\Component\Resource\Repository\RepositoryInterface; use Symfony\Bridge\Doctrine\Form\DataTransformer\CollectionToArrayTransformer; @@ -23,7 +23,7 @@ use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\Options; use Symfony\Component\OptionsResolver\OptionsResolver; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; final class DefinitionChoiceType extends AbstractType { diff --git a/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php b/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php index 7ffa436f..2a8be255 100644 --- a/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php +++ b/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistryInterface; use CoreShop\Bundle\ResourceBundle\Form\Type\AbstractResourceType; diff --git a/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php b/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php index 9c62f43f..066fca32 100644 --- a/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php +++ b/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\DataMapperInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php b/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php index 61b42e9b..9c00e410 100644 --- a/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php +++ b/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php @@ -8,11 +8,11 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistryInterface; use CoreShop\Bundle\ResourceBundle\Form\Type\AbstractResourceType; @@ -21,7 +21,7 @@ use Symfony\Component\Form\FormEvent; use Symfony\Component\Form\FormEvents; use Symfony\Component\Form\FormInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; final class ExportMappingType extends AbstractResourceType { diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php b/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php index 2ecd4cf3..699e401e 100644 --- a/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php index 0adabb3d..18125fff 100644 --- a/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php index a748ee8e..daf14bc3 100644 --- a/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php index cbb8d879..921bc0e1 100644 --- a/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php b/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php index 003c7ca5..c9e0a739 100644 --- a/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php +++ b/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Fetcher; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Fetcher; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; diff --git a/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php b/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php index 6d959235..d119e09c 100644 --- a/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php index b2df7f6f..f83ff8c5 100644 --- a/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php @@ -8,11 +8,11 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php b/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php index d0f738ed..f620d20c 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistryInterface; use CoreShop\Bundle\ResourceBundle\Form\Type\AbstractResourceType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php b/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php index f2e7349b..63a30ef6 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\DataMapperInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php b/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php index 7d84e355..0200ef19 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistryInterface; use CoreShop\Bundle\ResourceBundle\Form\Type\AbstractResourceType; @@ -24,7 +24,7 @@ use Symfony\Component\Form\FormEvent; use Symfony\Component\Form\FormEvents; use Symfony\Component\Form\FormInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; final class ImportMappingType extends AbstractResourceType { diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php index d6e5376f..86b58873 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php index b776f551..615f4a4f 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php index 3670993e..a3d84442 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\NumberType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php index 07df8fe9..12551322 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php index a1351327..7e5a1adf 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php index 7f767a46..5753739d 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php index d9ce075c..e0c1b441 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php index 9c4e978f..d1501604 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php b/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php index 05409c8c..f3f03486 100644 --- a/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php +++ b/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\FileType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetByPathInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetByPathInterpreterType.php index 13da32ad..535a832e 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetByPathInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetByPathInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php index e06c8d1a..601cf9e0 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php index ced41619..c954c344 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php index aff2ee11..feee5862 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php index 8167e517..1dd5730e 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php index 1ff387fe..2c0fb304 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop; use CoreShop\Bundle\CurrencyBundle\Form\Type\CurrencyChoiceType; use CoreShop\Component\Currency\Model\CurrencyInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php index 8049883d..76b11906 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php index 1a24d4e8..d267b78b 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop; use CoreShop\Bundle\StoreBundle\Form\Type\StoreChoiceType; use CoreShop\Component\Store\Model\StoreInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefaultValueInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefaultValueInterpreterType.php index 6dfec50f..59f42824 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefaultValueInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefaultValueInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php index 94f7dd0f..0763c5ab 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Form\Type\DefinitionChoiceType; +use Instride\Bundle\DataDefinitionsBundle\Form\Type\DefinitionChoiceType; class DefinitionType extends AbstractType { diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php index 2ee8d9a6..f59ec427 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php index 3589c6e2..5f5759c1 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php index cd5a7721..6936a8b2 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use CoreShop\Component\Registry\ServiceRegistryInterface; use Symfony\Component\Form\AbstractType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php index b5a3301c..54d0263a 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistryInterface; use Symfony\Component\Form\AbstractType; @@ -23,8 +23,8 @@ use Symfony\Component\Form\FormEvents; use Symfony\Component\Form\FormInterface; use Symfony\Component\OptionsResolver\OptionsResolver; -use Wvision\Bundle\DataDefinitionsBundle\Form\Type\InterpreterChoiceType; -use Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType; +use Instride\Bundle\DataDefinitionsBundle\Form\Type\InterpreterChoiceType; +use Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType; final class InterpreterType extends AbstractType { diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php index 032cf033..0fddf297 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php index 840003a8..67c8e399 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php index 2b69d1d1..debd0e78 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php index 1f36f431..159fd0e4 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php index a917d60d..54f2493f 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php index 29fd1d81..7fb9cb3b 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php index eeb1ca17..e0457b02 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\Form\FormBuilderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Form\Type\ClassChoiceType; +use Instride\Bundle\DataDefinitionsBundle\Form\Type\ClassChoiceType; class ObjectResolverType extends AbstractType { diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php index e598c52b..ff6b5f06 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php index eb672525..83e1b068 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php index 72f49270..1dbfd9ea 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextareaType; diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php index 7922be43..68d9f43b 100644 --- a/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; use Symfony\Component\Form\FormBuilderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Interpreter\TypeCastingInterpreter; +use Instride\Bundle\DataDefinitionsBundle\Interpreter\TypeCastingInterpreter; final class TypeCastingInterpreterType extends AbstractType { diff --git a/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php index 41f5ea38..0ed2e50f 100644 --- a/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php index 8adab793..179f088b 100644 --- a/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php b/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php index 7aed3fbd..8ba71444 100644 --- a/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php +++ b/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php index 08560172..3f21fb7c 100644 --- a/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php index 2782e22c..591b24f5 100644 --- a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php +++ b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager; use ProcessManagerBundle\Form\Type\AbstractStartupFormType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; diff --git a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php index ef3b1306..928e814d 100644 --- a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php +++ b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php b/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php index 4ddc50d2..4d1f57bf 100644 --- a/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php index bf12149a..01f28972 100644 --- a/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\IntegerType; diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php index ae3db1e0..29753064 100644 --- a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop; use CoreShop\Bundle\StoreBundle\Form\Type\StoreChoiceType; use CoreShop\Component\Store\Model\StoreInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StoreValuesSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StoreValuesSetterType.php index d2cc097e..415449e4 100644 --- a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StoreValuesSetterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StoreValuesSetterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop; use CoreShop\Bundle\StoreBundle\Form\Type\StoreChoiceType; use CoreShop\Component\Store\Model\StoreInterface; diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/FieldCollectionSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/FieldCollectionSetterType.php index c7b2ce25..351be740 100644 --- a/src/DataDefinitionsBundle/Form/Type/Setter/FieldCollectionSetterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Setter/FieldCollectionSetterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php index d487224a..65b2021a 100644 --- a/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php index 59acf889..e48ae527 100644 --- a/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php +++ b/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php index f16cd082..69615ebc 100644 --- a/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php +++ b/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; diff --git a/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php b/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php index 5f095e24..b6145199 100644 --- a/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php +++ b/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Getter; +namespace Instride\Bundle\DataDefinitionsBundle\Getter; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; interface DynamicColumnGetterInterface extends GetterInterface { diff --git a/src/DataDefinitionsBundle/Getter/GetterInterface.php b/src/DataDefinitionsBundle/Getter/GetterInterface.php index f086d11d..487bc755 100644 --- a/src/DataDefinitionsBundle/Getter/GetterInterface.php +++ b/src/DataDefinitionsBundle/Getter/GetterInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Getter; +namespace Instride\Bundle\DataDefinitionsBundle\Getter; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; interface GetterInterface { diff --git a/src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php b/src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php index 8a1cca58..11102725 100644 --- a/src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php +++ b/src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Importer; +namespace Instride\Bundle\DataDefinitionsBundle\Importer; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; interface AsyncImporterInterface { diff --git a/src/DataDefinitionsBundle/Importer/Importer.php b/src/DataDefinitionsBundle/Importer/Importer.php index 066f3234..4fad40e0 100644 --- a/src/DataDefinitionsBundle/Importer/Importer.php +++ b/src/DataDefinitionsBundle/Importer/Importer.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Importer; +namespace Instride\Bundle\DataDefinitionsBundle\Importer; use CoreShop\Component\Registry\ServiceRegistryInterface; use Countable; @@ -33,27 +33,27 @@ use Symfony\Component\ExpressionLanguage\ExpressionLanguage; use Symfony\Component\Messenger\MessageBusInterface; use Throwable; -use Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; -use Wvision\Bundle\DataDefinitionsBundle\Event\EventDispatcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Exception\DoNotSetException; -use Wvision\Bundle\DataDefinitionsBundle\Exception\UnexpectedValueException; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Loader\LoaderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Messenger\ImportRowMessage; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\ParamsAwareInterface; -use Wvision\Bundle\DataDefinitionsBundle\Persister\PersisterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ArrayImportDataSet; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSet; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportProviderInterface; -use Wvision\Bundle\DataDefinitionsBundle\Runner\ImportStartFinishRunnerInterface; -use Wvision\Bundle\DataDefinitionsBundle\Runner\RunnerInterface; -use Wvision\Bundle\DataDefinitionsBundle\Runner\SaveRunnerInterface; -use Wvision\Bundle\DataDefinitionsBundle\Runner\SetterRunnerInterface; -use Wvision\Bundle\DataDefinitionsBundle\Setter\SetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; +use Instride\Bundle\DataDefinitionsBundle\Event\EventDispatcherInterface; +use Instride\Bundle\DataDefinitionsBundle\Exception\DoNotSetException; +use Instride\Bundle\DataDefinitionsBundle\Exception\UnexpectedValueException; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; +use Instride\Bundle\DataDefinitionsBundle\Loader\LoaderInterface; +use Instride\Bundle\DataDefinitionsBundle\Messenger\ImportRowMessage; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\ParamsAwareInterface; +use Instride\Bundle\DataDefinitionsBundle\Persister\PersisterInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ArrayImportDataSet; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSet; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportProviderInterface; +use Instride\Bundle\DataDefinitionsBundle\Runner\ImportStartFinishRunnerInterface; +use Instride\Bundle\DataDefinitionsBundle\Runner\RunnerInterface; +use Instride\Bundle\DataDefinitionsBundle\Runner\SaveRunnerInterface; +use Instride\Bundle\DataDefinitionsBundle\Runner\SetterRunnerInterface; +use Instride\Bundle\DataDefinitionsBundle\Setter\SetterInterface; final class Importer implements ImporterInterface, AsyncImporterInterface { diff --git a/src/DataDefinitionsBundle/Importer/ImporterInterface.php b/src/DataDefinitionsBundle/Importer/ImporterInterface.php index 07c50538..2c031826 100644 --- a/src/DataDefinitionsBundle/Importer/ImporterInterface.php +++ b/src/DataDefinitionsBundle/Importer/ImporterInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Importer; +namespace Instride\Bundle\DataDefinitionsBundle\Importer; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; interface ImporterInterface { diff --git a/src/DataDefinitionsBundle/Installer.php b/src/DataDefinitionsBundle/Installer.php index 6585c3c2..4029a0a2 100644 --- a/src/DataDefinitionsBundle/Installer.php +++ b/src/DataDefinitionsBundle/Installer.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle; +namespace Instride\Bundle\DataDefinitionsBundle; use Pimcore; use Pimcore\Extension\Bundle\Installer\SettingsStoreAwareInstaller; diff --git a/src/DataDefinitionsBundle/Interpreter/AssetByPathInterpreter.php b/src/DataDefinitionsBundle/Interpreter/AssetByPathInterpreter.php index b1271b9a..3997b2ea 100644 --- a/src/DataDefinitionsBundle/Interpreter/AssetByPathInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/AssetByPathInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\Asset; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class AssetByPathInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php b/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php index 7f11653d..bbe82c28 100644 --- a/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Doctrine\DBAL\Query\QueryBuilder; use Pimcore\File; use Pimcore\Model\Asset; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class AssetUrlInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php b/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php index 48f79ec7..1901135b 100644 --- a/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContext; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContext; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class AssetsUrlInterpreter extends AssetUrlInterpreter { diff --git a/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php index 1f07cd58..0bdc992d 100644 --- a/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Carbon\Carbon; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class CarbonInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php index 6c07d48d..a15c61b1 100644 --- a/src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016 W-Vision (http://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class CheckboxInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php index 6b907899..9f944c9d 100644 --- a/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use CoreShop\Component\Registry\ServiceRegistryInterface; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\ExpressionLanguage\ExpressionLanguage; -use Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class ConditionalInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php index bf967024..75ce721e 100644 --- a/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter\CoreShop; use CoreShop\Component\Currency\Repository\CurrencyRepositoryInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; final class CurrencyInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php index 363df633..54bf90b3 100644 --- a/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter\CoreShop; use CoreShop\Component\Core\Repository\CurrencyRepositoryInterface; use CoreShop\Component\Currency\Model\CurrencyInterface; use CoreShop\Component\Currency\Model\Money; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; final class MoneyInterpreter implements InterpreterInterface { @@ -42,7 +42,7 @@ public function interpret(InterpreterContextInterface $context): mixed return new Money($value, $currency); } - + private function getValue(string $value, InterpreterContextInterface $context): int { $inputIsFloat = $context->getConfiguration()['isFloat']; diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php index 8ca7b85c..6613918e 100644 --- a/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter\CoreShop; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; final class PriceInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/StoresInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/StoresInterpreter.php index 3615a72f..fe867420 100644 --- a/src/DataDefinitionsBundle/Interpreter/CoreShop/StoresInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/StoresInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter\CoreShop; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface; final class StoresInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php b/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php index 0d4a4a20..5ecc3356 100644 --- a/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class DefaultValueInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php b/src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php index 09bf4536..8fc02a2c 100644 --- a/src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use CoreShop\Component\Resource\Repository\RepositoryInterface; use Pimcore\Model\DataObject; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; class DefinitionInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php index ed32d7fb..22770e61 100644 --- a/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Exception\DoNotSetException; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Exception\DoNotSetException; class DoNotSetOnEmptyInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php index cb6de4d6..a7a610f0 100644 --- a/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\ExpressionLanguage\ExpressionLanguage; use Throwable; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Exception\InterpreterException; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Exception\InterpreterException; class ExpressionInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php index 1156fa91..2c008782 100644 --- a/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\DataObject\Data\ExternalImage; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; class ExternalImageInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php b/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php index 0dd719e7..e91f7e03 100644 --- a/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\DataObject\Concrete; use Pimcore\Model\Element\Service; use Pimcore\Tool; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class HrefInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php index 5b9f4d7b..4ed40a06 100644 --- a/src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php @@ -8,20 +8,20 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use CoreShop\Component\Rule\Model\Action; use CoreShop\Component\Rule\Model\Condition; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRule; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessorInterface; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplierInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRule; +use Instride\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessorInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplierInterface; class ImportRuleInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php b/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php index 72e37ba5..3cb8be1c 100644 --- a/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php +++ b/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; interface InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php b/src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php index e928fdfb..b10a080b 100644 --- a/src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use CoreShop\Component\Registry\ServiceRegistryInterface; use Webmozart\Assert\Assert; -use Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; final class IteratorInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php b/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php index 933b4816..3db1a3cd 100644 --- a/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\DataObject\Data\Link; use Pimcore\Model\Element\ElementInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; class LinkInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php b/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php index 9cd7a39f..27492984 100644 --- a/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class MappingInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php b/src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php index 1c53100a..4aaaf3d6 100644 --- a/src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\DataObject\Data\ElementMetadata; use Pimcore\Model\DataObject\Data\ObjectMetadata; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class MetadataInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php b/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php index 68bae641..9e064267 100644 --- a/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\DataObject\Concrete; use Pimcore\Tool; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class MultiHrefInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php b/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php index 8ba7bea4..cf097073 100644 --- a/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use CoreShop\Component\Registry\ServiceRegistryInterface; use Webmozart\Assert\Assert; -use Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; final class NestedInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php index d2cb8b6e..cac3b1a6 100644 --- a/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\DataObject\Listing; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class ObjectResolverInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php b/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php index 686e46d6..4ba6eb9e 100644 --- a/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\DataObject\Data\QuantityValue; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class QuantityValueInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/SpecificObjectInterpreter.php b/src/DataDefinitionsBundle/Interpreter/SpecificObjectInterpreter.php index ad3604d4..ca347a2c 100644 --- a/src/DataDefinitionsBundle/Interpreter/SpecificObjectInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/SpecificObjectInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Pimcore\Model\DataObject; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class SpecificObjectInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php b/src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php index ac9c5058..b8b53034 100644 --- a/src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2017 Divante (http://www.divante.co) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use Twig\Environment; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class TwigInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php b/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php index 94840c79..a39cbc7b 100644 --- a/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php +++ b/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Interpreter; +namespace Instride\Bundle\DataDefinitionsBundle\Interpreter; use InvalidArgumentException; -use Wvision\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\InterpreterContextInterface; class TypeCastingInterpreter implements InterpreterInterface { diff --git a/src/DataDefinitionsBundle/Loader/LoaderInterface.php b/src/DataDefinitionsBundle/Loader/LoaderInterface.php index be0d92f6..96d4d3ee 100644 --- a/src/DataDefinitionsBundle/Loader/LoaderInterface.php +++ b/src/DataDefinitionsBundle/Loader/LoaderInterface.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Loader; +namespace Instride\Bundle\DataDefinitionsBundle\Loader; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Context\LoaderContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\LoaderContextInterface; interface LoaderInterface { diff --git a/src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php b/src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php index 5f1aec88..617d91a6 100644 --- a/src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php +++ b/src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php @@ -8,20 +8,20 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Loader; +namespace Instride\Bundle\DataDefinitionsBundle\Loader; use InvalidArgumentException; use Pimcore\Model\DataObject; use Pimcore\Model\DataObject\Concrete; use Pimcore\Model\DataObject\Listing; -use Wvision\Bundle\DataDefinitionsBundle\Context\LoaderContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Context\LoaderContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; use function count; class PrimaryKeyLoader implements LoaderInterface diff --git a/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php b/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php index e821d42a..fc0f6b19 100644 --- a/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php +++ b/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Messenger; +namespace Instride\Bundle\DataDefinitionsBundle\Messenger; class ImportRowMessage { diff --git a/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php b/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php index 12d8baeb..f50e51b0 100644 --- a/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php +++ b/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Messenger; +namespace Instride\Bundle\DataDefinitionsBundle\Messenger; -use Wvision\Bundle\DataDefinitionsBundle\Importer\AsyncImporterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Importer\AsyncImporterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition; class ImportRowMessageHandler { @@ -34,7 +34,7 @@ public function __invoke(ImportRowMessage $message): void if (!$definition) { throw new \InvalidArgumentException('Invalid definition id'); } - + $this->importer->doImportRowAsync( $definition, $message->getData(), diff --git a/src/DataDefinitionsBundle/Model/AbstractColumn.php b/src/DataDefinitionsBundle/Model/AbstractColumn.php index 4fecbbb1..5a96aa5b 100644 --- a/src/DataDefinitionsBundle/Model/AbstractColumn.php +++ b/src/DataDefinitionsBundle/Model/AbstractColumn.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; abstract class AbstractColumn { diff --git a/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php b/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php index b534767d..6af4875b 100644 --- a/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php +++ b/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; use Pimcore\Model\AbstractModel; diff --git a/src/DataDefinitionsBundle/Model/AbstractMapping.php b/src/DataDefinitionsBundle/Model/AbstractMapping.php index a94790b8..aeb17c8d 100644 --- a/src/DataDefinitionsBundle/Model/AbstractMapping.php +++ b/src/DataDefinitionsBundle/Model/AbstractMapping.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; abstract class AbstractMapping implements MappingInterface { diff --git a/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php b/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php index 429ba971..945da621 100644 --- a/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php +++ b/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; use CoreShop\Component\Resource\Model\ResourceInterface; diff --git a/src/DataDefinitionsBundle/Model/DataSetAwareTrait.php b/src/DataDefinitionsBundle/Model/DataSetAwareTrait.php index 930f2e10..a070b5c0 100644 --- a/src/DataDefinitionsBundle/Model/DataSetAwareTrait.php +++ b/src/DataDefinitionsBundle/Model/DataSetAwareTrait.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; -use Wvision\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; +use Instride\Bundle\DataDefinitionsBundle\Provider\ImportDataSetInterface; trait DataSetAwareTrait { diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition.php b/src/DataDefinitionsBundle/Model/ExportDefinition.php index 8edb9ef9..fe5a0b7d 100644 --- a/src/DataDefinitionsBundle/Model/ExportDefinition.php +++ b/src/DataDefinitionsBundle/Model/ExportDefinition.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; /** * @method ExportDefinition\Dao getDao() @@ -46,7 +46,7 @@ public static function getByName($id) $definitionEntry = new ExportDefinition(); $definitionEntry->setId((int)$id); /** - * @var \Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition\Dao|\Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition\Dao + * @var \Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition\Dao|\Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition\Dao */ $dao = $definitionEntry->getDao(); $dao->getByName($id); diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php b/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php index f88fa881..6fb5ed71 100644 --- a/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php +++ b/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition; use Exception; use InvalidArgumentException; use Pimcore\Model; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; use function count; use function in_array; use function is_array; diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php index 19c8b1e0..f15344e7 100644 --- a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php +++ b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition; use Exception; use Pimcore\Model\AbstractModel; @@ -22,7 +22,7 @@ use Pimcore\Model\Listing\CallableOrderListingInterface; use Pimcore\Model\Listing\Traits\FilterListingTrait; use Pimcore\Model\Listing\Traits\OrderListingTrait; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; /** * @method loadList() diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing/Dao.php b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing/Dao.php index 71b22167..c6fe48c3 100644 --- a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing/Dao.php +++ b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing/Dao.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition\Listing; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition\Listing; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition; use function count; class Dao extends ExportDefinition\Dao diff --git a/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php b/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php index 96dc6f28..11931b67 100644 --- a/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php +++ b/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; interface ExportDefinitionInterface extends DataDefinitionInterface { diff --git a/src/DataDefinitionsBundle/Model/ExportMapping.php b/src/DataDefinitionsBundle/Model/ExportMapping.php index 5df6f623..bfc8864d 100644 --- a/src/DataDefinitionsBundle/Model/ExportMapping.php +++ b/src/DataDefinitionsBundle/Model/ExportMapping.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; class ExportMapping extends AbstractMapping { diff --git a/src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php b/src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php index 79731b67..c012d151 100644 --- a/src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php +++ b/src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\AbstractColumn; +use Instride\Bundle\DataDefinitionsBundle\Model\AbstractColumn; class FromColumn extends AbstractColumn { diff --git a/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php b/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php index 75a0e19b..1b18caad 100644 --- a/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php +++ b/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ExportMapping; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ExportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\AbstractColumn; +use Instride\Bundle\DataDefinitionsBundle\Model\AbstractColumn; class ToColumn extends AbstractColumn { diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition.php b/src/DataDefinitionsBundle/Model/ImportDefinition.php index 86ec2f14..d696ee70 100644 --- a/src/DataDefinitionsBundle/Model/ImportDefinition.php +++ b/src/DataDefinitionsBundle/Model/ImportDefinition.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; /** * @method ImportDefinition\Dao getDao() @@ -96,7 +96,7 @@ public static function getByName($id) $definitionEntry = new ImportDefinition(); $definitionEntry->setId((int)$id); /** - * @var \Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition\Dao|\Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition\Dao + * @var \Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition\Dao|\Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition\Dao */ $dao = $definitionEntry->getDao(); $dao->getByName($id); diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php b/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php index 69f68096..e78eedf0 100644 --- a/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php +++ b/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition; use Exception; use Pimcore\Model; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; use function in_array; use function is_array; diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php index cbec7d43..4a0fc49e 100644 --- a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php +++ b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition; use Exception; use Pimcore\Model; @@ -23,7 +23,7 @@ use Pimcore\Model\Listing\CallableOrderListingInterface; use Pimcore\Model\Listing\Traits\FilterListingTrait; use Pimcore\Model\Listing\Traits\OrderListingTrait; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; /** * @method loadList() diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing/Dao.php b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing/Dao.php index 02e5b73b..90ea8472 100644 --- a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing/Dao.php +++ b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing/Dao.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition\Listing; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition\Listing; use Exception; use Pimcore; use Pimcore\Bundle\StaticRoutesBundle\Model\Staticroute; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition; use function count; class Dao extends ImportDefinition\Dao diff --git a/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php b/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php index 814fd49c..12720b03 100644 --- a/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php +++ b/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; interface ImportDefinitionInterface extends DataDefinitionInterface { diff --git a/src/DataDefinitionsBundle/Model/ImportMapping.php b/src/DataDefinitionsBundle/Model/ImportMapping.php index 6eb911ec..d7b680a8 100644 --- a/src/DataDefinitionsBundle/Model/ImportMapping.php +++ b/src/DataDefinitionsBundle/Model/ImportMapping.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; class ImportMapping extends AbstractMapping { diff --git a/src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php b/src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php index b6c27077..c57a9379 100644 --- a/src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php +++ b/src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\AbstractColumn; +use Instride\Bundle\DataDefinitionsBundle\Model\AbstractColumn; class FromColumn extends AbstractColumn { diff --git a/src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php b/src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php index b9823629..f55cbbbf 100644 --- a/src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php +++ b/src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; +namespace Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; -use Wvision\Bundle\DataDefinitionsBundle\Model\AbstractColumn; +use Instride\Bundle\DataDefinitionsBundle\Model\AbstractColumn; class ToColumn extends AbstractColumn { diff --git a/src/DataDefinitionsBundle/Model/Log.php b/src/DataDefinitionsBundle/Model/Log.php index 8ff97f52..8af5511c 100644 --- a/src/DataDefinitionsBundle/Model/Log.php +++ b/src/DataDefinitionsBundle/Model/Log.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; use Exception; use Pimcore\Model\AbstractModel; -use Wvision\Bundle\DataDefinitionsBundle\Model\Log\Dao; +use Instride\Bundle\DataDefinitionsBundle\Model\Log\Dao; class Log extends AbstractModel { diff --git a/src/DataDefinitionsBundle/Model/Log/Dao.php b/src/DataDefinitionsBundle/Model/Log/Dao.php index 596ec91d..a60b6a8d 100644 --- a/src/DataDefinitionsBundle/Model/Log/Dao.php +++ b/src/DataDefinitionsBundle/Model/Log/Dao.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\Log; +namespace Instride\Bundle\DataDefinitionsBundle\Model\Log; use Exception; use InvalidArgumentException; diff --git a/src/DataDefinitionsBundle/Model/Log/Listing.php b/src/DataDefinitionsBundle/Model/Log/Listing.php index eef5296b..23979523 100644 --- a/src/DataDefinitionsBundle/Model/Log/Listing.php +++ b/src/DataDefinitionsBundle/Model/Log/Listing.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\Log; +namespace Instride\Bundle\DataDefinitionsBundle\Model\Log; use Exception; use Pimcore\Model; use Pimcore\Model\Paginator\PaginateListingInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\Log; +use Instride\Bundle\DataDefinitionsBundle\Model\Log; use function in_array; class Listing extends Model\Listing\AbstractListing implements PaginateListingInterface diff --git a/src/DataDefinitionsBundle/Model/Log/Listing/Dao.php b/src/DataDefinitionsBundle/Model/Log/Listing/Dao.php index 3d15e660..1583854c 100644 --- a/src/DataDefinitionsBundle/Model/Log/Listing/Dao.php +++ b/src/DataDefinitionsBundle/Model/Log/Listing/Dao.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model\Log\Listing; +namespace Instride\Bundle\DataDefinitionsBundle\Model\Log\Listing; use Doctrine\DBAL\Query\QueryBuilder as DoctrineQueryBuilder; use Exception; use Pimcore\Model\Listing; use Pimcore\Model\Listing\Dao\QueryBuilderHelperTrait; -use Wvision\Bundle\DataDefinitionsBundle\Model\Log; +use Instride\Bundle\DataDefinitionsBundle\Model\Log; class Dao extends Listing\Dao\AbstractDao { diff --git a/src/DataDefinitionsBundle/Model/MappingInterface.php b/src/DataDefinitionsBundle/Model/MappingInterface.php index 55380bfb..150e6729 100644 --- a/src/DataDefinitionsBundle/Model/MappingInterface.php +++ b/src/DataDefinitionsBundle/Model/MappingInterface.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; interface MappingInterface { diff --git a/src/DataDefinitionsBundle/Model/ParamsAwareInterface.php b/src/DataDefinitionsBundle/Model/ParamsAwareInterface.php index ac50f1da..8d912d5d 100644 --- a/src/DataDefinitionsBundle/Model/ParamsAwareInterface.php +++ b/src/DataDefinitionsBundle/Model/ParamsAwareInterface.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; interface ParamsAwareInterface { diff --git a/src/DataDefinitionsBundle/Model/ParamsAwareTrait.php b/src/DataDefinitionsBundle/Model/ParamsAwareTrait.php index 54a93216..b7c61cfc 100644 --- a/src/DataDefinitionsBundle/Model/ParamsAwareTrait.php +++ b/src/DataDefinitionsBundle/Model/ParamsAwareTrait.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Model; trait ParamsAwareTrait { diff --git a/src/DataDefinitionsBundle/Persister/Persister.php b/src/DataDefinitionsBundle/Persister/Persister.php index 81ce3c18..e0ae0e48 100644 --- a/src/DataDefinitionsBundle/Persister/Persister.php +++ b/src/DataDefinitionsBundle/Persister/Persister.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Persister; +namespace Instride\Bundle\DataDefinitionsBundle\Persister; use Exception; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; class Persister implements PersisterInterface { diff --git a/src/DataDefinitionsBundle/Persister/PersisterInterface.php b/src/DataDefinitionsBundle/Persister/PersisterInterface.php index 28965240..925b2198 100644 --- a/src/DataDefinitionsBundle/Persister/PersisterInterface.php +++ b/src/DataDefinitionsBundle/Persister/PersisterInterface.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Persister; +namespace Instride\Bundle\DataDefinitionsBundle\Persister; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; interface PersisterInterface { diff --git a/src/DataDefinitionsBundle/ProcessManager/AbstractProcessManagerListener.php b/src/DataDefinitionsBundle/ProcessManager/AbstractProcessManagerListener.php index 1da7de90..f9de1597 100644 --- a/src/DataDefinitionsBundle/ProcessManager/AbstractProcessManagerListener.php +++ b/src/DataDefinitionsBundle/ProcessManager/AbstractProcessManagerListener.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2020 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use Carbon\Carbon; use CoreShop\Component\Resource\Factory\FactoryInterface; @@ -24,7 +24,7 @@ use ProcessManagerBundle\ProcessManagerBundle; use ProcessManagerBundle\Repository\ProcessRepository; use Symfony\Component\EventDispatcher\EventDispatcherInterface; -use Wvision\Bundle\DataDefinitionsBundle\Event\DefinitionEventInterface; +use Instride\Bundle\DataDefinitionsBundle\Event\DefinitionEventInterface; abstract class AbstractProcessManagerListener { diff --git a/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php b/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php index e168e0e6..3aa1f349 100644 --- a/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php +++ b/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use Pimcore\Model\Asset; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; interface ArtifactGenerationProviderInterface { diff --git a/src/DataDefinitionsBundle/ProcessManager/ArtifactProviderTrait.php b/src/DataDefinitionsBundle/ProcessManager/ArtifactProviderTrait.php index 1a945d78..f40690d2 100644 --- a/src/DataDefinitionsBundle/ProcessManager/ArtifactProviderTrait.php +++ b/src/DataDefinitionsBundle/ProcessManager/ArtifactProviderTrait.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use Pimcore\Model\Asset; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; trait ArtifactProviderTrait { diff --git a/src/DataDefinitionsBundle/ProcessManager/DataDefinitionProcessTrait.php b/src/DataDefinitionsBundle/ProcessManager/DataDefinitionProcessTrait.php index 495a64ca..de8eece1 100644 --- a/src/DataDefinitionsBundle/ProcessManager/DataDefinitionProcessTrait.php +++ b/src/DataDefinitionsBundle/ProcessManager/DataDefinitionProcessTrait.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use Pimcore\Tool\Admin; use ProcessManagerBundle\Model\ExecutableInterface; diff --git a/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionProcess.php b/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionProcess.php index 376f558c..badfe9f5 100644 --- a/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionProcess.php +++ b/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionProcess.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use ProcessManagerBundle\Model\ExecutableInterface; use ProcessManagerBundle\Process\Pimcore; diff --git a/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionStartupFormResolver.php b/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionStartupFormResolver.php index dc694d56..44862384 100644 --- a/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionStartupFormResolver.php +++ b/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionStartupFormResolver.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use CoreShop\Component\Resource\Repository\RepositoryInterface; use ProcessManagerBundle\Model\ExecutableInterface; use ProcessManagerBundle\Process\ProcessStartupFormResolverInterface; -use Wvision\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager\ExportDefinitionObjectStartupForm; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager\ExportDefinitionObjectStartupForm; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; final class ExportDefinitionStartupFormResolver implements ProcessStartupFormResolverInterface { diff --git a/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionProcess.php b/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionProcess.php index 995e5e2f..06e0ddb2 100644 --- a/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionProcess.php +++ b/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionProcess.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use Pimcore\Tool\Admin; use ProcessManagerBundle\Model\ExecutableInterface; diff --git a/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionsReport.php b/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionsReport.php index e3d4ae31..13f7d46a 100644 --- a/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionsReport.php +++ b/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionsReport.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use ProcessManagerBundle\Model\ProcessInterface; use ProcessManagerBundle\Report\ReportInterface; diff --git a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php index a496cab4..d7196259 100644 --- a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php +++ b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; use CoreShop\Component\Registry\ServiceRegistryInterface; use ProcessManagerBundle\ProcessManagerBundle; -use Wvision\Bundle\DataDefinitionsBundle\Event\DefinitionEventInterface; +use Instride\Bundle\DataDefinitionsBundle\Event\DefinitionEventInterface; final class ProcessManagerExportListener extends AbstractProcessManagerListener { diff --git a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php index c82cd8db..06004d83 100644 --- a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php +++ b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\ProcessManager; +namespace Instride\Bundle\DataDefinitionsBundle\ProcessManager; final class ProcessManagerImportListener extends AbstractProcessManagerListener { diff --git a/src/DataDefinitionsBundle/Provider/AbstractFileProvider.php b/src/DataDefinitionsBundle/Provider/AbstractFileProvider.php index 4454f059..135afcfb 100644 --- a/src/DataDefinitionsBundle/Provider/AbstractFileProvider.php +++ b/src/DataDefinitionsBundle/Provider/AbstractFileProvider.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Pimcore\File; use Pimcore\Helper\LongRunningHelper; use Pimcore\Model\Asset; -use Wvision\Bundle\DataDefinitionsBundle\Service\StorageLocator; +use Instride\Bundle\DataDefinitionsBundle\Service\StorageLocator; abstract class AbstractFileProvider { diff --git a/src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php b/src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php index 5d83a1b3..31e1b3a4 100644 --- a/src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php +++ b/src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Doctrine\DBAL\Connection; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; use function is_object; abstract class AbstractSqlProvider implements ImportProviderInterface diff --git a/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php b/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php index 2ed01cb5..58084b09 100644 --- a/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php +++ b/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Iterator; diff --git a/src/DataDefinitionsBundle/Provider/CsvProvider.php b/src/DataDefinitionsBundle/Provider/CsvProvider.php index e0c67f82..237b8507 100644 --- a/src/DataDefinitionsBundle/Provider/CsvProvider.php +++ b/src/DataDefinitionsBundle/Provider/CsvProvider.php @@ -8,23 +8,23 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use League\Csv\Reader; use League\Csv\Statement; use League\Csv\Writer; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; -use Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactGenerationProviderInterface; -use Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactProviderTrait; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactGenerationProviderInterface; +use Instride\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactProviderTrait; use function chr; use function count; diff --git a/src/DataDefinitionsBundle/Provider/ExcelProvider.php b/src/DataDefinitionsBundle/Provider/ExcelProvider.php index 522c2063..aa4ee6ef 100644 --- a/src/DataDefinitionsBundle/Provider/ExcelProvider.php +++ b/src/DataDefinitionsBundle/Provider/ExcelProvider.php @@ -8,25 +8,25 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Box\Spout\Common\Entity\Row; use Box\Spout\Reader\ReaderInterface; use Box\Spout\Writer\WriterInterface; use Pimcore\Model\Asset; use Pimcore\Tool\Storage; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; -use Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactGenerationProviderInterface; -use Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactProviderTrait; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactGenerationProviderInterface; +use Instride\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactProviderTrait; class ExcelProvider extends AbstractFileProvider implements ImportProviderInterface, ExportProviderInterface, ArtifactGenerationProviderInterface { diff --git a/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php b/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php index 65efcf52..21fc5fc1 100644 --- a/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php +++ b/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; interface ExportProviderInterface { diff --git a/src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php b/src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php index 60922972..344a834d 100644 --- a/src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php +++ b/src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Doctrine\DBAL\Configuration; use Doctrine\DBAL\Connection; diff --git a/src/DataDefinitionsBundle/Provider/ImportDataSet.php b/src/DataDefinitionsBundle/Provider/ImportDataSet.php index 5e987bbb..679b8398 100644 --- a/src/DataDefinitionsBundle/Provider/ImportDataSet.php +++ b/src/DataDefinitionsBundle/Provider/ImportDataSet.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Closure; use Iterator; diff --git a/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php b/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php index 44905556..0055479b 100644 --- a/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php +++ b/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Iterator; diff --git a/src/DataDefinitionsBundle/Provider/ImportProviderInterface.php b/src/DataDefinitionsBundle/Provider/ImportProviderInterface.php index f328865c..78f9a853 100644 --- a/src/DataDefinitionsBundle/Provider/ImportProviderInterface.php +++ b/src/DataDefinitionsBundle/Provider/ImportProviderInterface.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; interface ImportProviderInterface { diff --git a/src/DataDefinitionsBundle/Provider/JsonProvider.php b/src/DataDefinitionsBundle/Provider/JsonProvider.php index 7c08f6f9..f86b895e 100644 --- a/src/DataDefinitionsBundle/Provider/JsonProvider.php +++ b/src/DataDefinitionsBundle/Provider/JsonProvider.php @@ -8,22 +8,22 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use RecursiveArrayIterator; use RecursiveIteratorIterator; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; -use Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactGenerationProviderInterface; -use Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactProviderTrait; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactGenerationProviderInterface; +use Instride\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactProviderTrait; use function count; class JsonProvider extends AbstractFileProvider implements ImportProviderInterface, ExportProviderInterface, ArtifactGenerationProviderInterface diff --git a/src/DataDefinitionsBundle/Provider/RawProvider.php b/src/DataDefinitionsBundle/Provider/RawProvider.php index 6bd88618..ddda3c39 100644 --- a/src/DataDefinitionsBundle/Provider/RawProvider.php +++ b/src/DataDefinitionsBundle/Provider/RawProvider.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; use function count; class RawProvider implements ImportProviderInterface diff --git a/src/DataDefinitionsBundle/Provider/SqlProvider.php b/src/DataDefinitionsBundle/Provider/SqlProvider.php index 79353b17..de0d9b82 100644 --- a/src/DataDefinitionsBundle/Provider/SqlProvider.php +++ b/src/DataDefinitionsBundle/Provider/SqlProvider.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Doctrine\DBAL\Connection; diff --git a/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php b/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php index adbaf66b..8f47d812 100644 --- a/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php +++ b/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; class TraversableImportDataSet implements ImportDataSetInterface, \Countable { diff --git a/src/DataDefinitionsBundle/Provider/XmlProvider.php b/src/DataDefinitionsBundle/Provider/XmlProvider.php index 92f679dd..060e02e4 100755 --- a/src/DataDefinitionsBundle/Provider/XmlProvider.php +++ b/src/DataDefinitionsBundle/Provider/XmlProvider.php @@ -8,25 +8,25 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Provider; +namespace Instride\Bundle\DataDefinitionsBundle\Provider; use Pimcore\File; use Pimcore\Model\Asset; use Pimcore\Tool\Storage; use Symfony\Component\Console\Exception\RuntimeException; use Symfony\Component\Process\Process; -use Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; -use Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactGenerationProviderInterface; -use Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactProviderTrait; +use Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping\FromColumn; +use Instride\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactGenerationProviderInterface; +use Instride\Bundle\DataDefinitionsBundle\ProcessManager\ArtifactProviderTrait; use XMLWriter; use function count; diff --git a/src/DataDefinitionsBundle/Repository/DefinitionRepository.php b/src/DataDefinitionsBundle/Repository/DefinitionRepository.php index 58e658ee..431f851c 100644 --- a/src/DataDefinitionsBundle/Repository/DefinitionRepository.php +++ b/src/DataDefinitionsBundle/Repository/DefinitionRepository.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Repository; +namespace Instride\Bundle\DataDefinitionsBundle\Repository; use CoreShop\Bundle\ResourceBundle\Pimcore\PimcoreDaoRepository; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; class DefinitionRepository extends PimcoreDaoRepository { diff --git a/src/DataDefinitionsBundle/Resources/config/coreshop.yml b/src/DataDefinitionsBundle/Resources/config/coreshop.yml index c469353e..92d11336 100644 --- a/src/DataDefinitionsBundle/Resources/config/coreshop.yml +++ b/src/DataDefinitionsBundle/Resources/config/coreshop.yml @@ -1,36 +1,36 @@ services: - Wvision\Bundle\DataDefinitionsBundle\Interpreter\CoreShop\PriceInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\CoreShop\PriceInterpreter: tags: - - { name: data_definitions.interpreter, type: coreshop_price, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop\PriceInterpreterType } + - { name: data_definitions.interpreter, type: coreshop_price, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop\PriceInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Setter\CoreShop\StorePriceSetter: + Instride\Bundle\DataDefinitionsBundle\Setter\CoreShop\StorePriceSetter: arguments: - '@coreshop.repository.store' tags: - - { name: data_definitions.setter, type: coreshop_store_price, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop\StorePriceSetterType } - - { name: data_definitions.getter, type: coreshop_store_price, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop\StorePriceSetterType } + - { name: data_definitions.setter, type: coreshop_store_price, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop\StorePriceSetterType } + - { name: data_definitions.getter, type: coreshop_store_price, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop\StorePriceSetterType } - importdefinitions.coreshop.setter.store_values: '@Wvision\Bundle\DataDefinitionsBundle\Setter\CoreShop\StoreValuesSetter' - Wvision\Bundle\DataDefinitionsBundle\Setter\CoreShop\StoreValuesSetter: + importdefinitions.coreshop.setter.store_values: '@Instride\Bundle\DataDefinitionsBundle\Setter\CoreShop\StoreValuesSetter' + Instride\Bundle\DataDefinitionsBundle\Setter\CoreShop\StoreValuesSetter: arguments: - '@coreshop.repository.store' tags: - - { name: data_definitions.setter, type: coreshop_store_values, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop\StoreValuesSetterType } - - { name: data_definitions.getter, type: coreshop_store_values, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop\StoreValuesSetterType } + - { name: data_definitions.setter, type: coreshop_store_values, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop\StoreValuesSetterType } + - { name: data_definitions.getter, type: coreshop_store_values, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\CoreShop\StoreValuesSetterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\CoreShop\StoresInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\CoreShop\StoresInterpreter: tags: - - { name: data_definitions.interpreter, type: coreshop_stores, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop\StoresInterpreterType } + - { name: data_definitions.interpreter, type: coreshop_stores, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop\StoresInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\CoreShop\CurrencyInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\CoreShop\CurrencyInterpreter: arguments: - '@coreshop.repository.currency' tags: - - { name: data_definitions.interpreter, type: coreshop_currency, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.interpreter, type: coreshop_currency, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\CoreShop\MoneyInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\CoreShop\MoneyInterpreter: arguments: - '@coreshop.repository.currency' tags: - - { name: data_definitions.interpreter, type: coreshop_money, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop\MoneyInterpreterType } + - { name: data_definitions.interpreter, type: coreshop_money, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop\MoneyInterpreterType } diff --git a/src/DataDefinitionsBundle/Resources/config/pimcore/messenger.yml b/src/DataDefinitionsBundle/Resources/config/pimcore/messenger.yml index fe0ff6cd..81004e70 100755 --- a/src/DataDefinitionsBundle/Resources/config/pimcore/messenger.yml +++ b/src/DataDefinitionsBundle/Resources/config/pimcore/messenger.yml @@ -15,4 +15,4 @@ framework: max_retries: 0 routing: - 'Wvision\Bundle\DataDefinitionsBundle\Messenger\ImportRowMessage': data_definitions_import \ No newline at end of file + 'Instride\Bundle\DataDefinitionsBundle\Messenger\ImportRowMessage': data_definitions_import diff --git a/src/DataDefinitionsBundle/Resources/config/pimcore/routing.yml b/src/DataDefinitionsBundle/Resources/config/pimcore/routing.yml index d70c3bda..66f4b4eb 100755 --- a/src/DataDefinitionsBundle/Resources/config/pimcore/routing.yml +++ b/src/DataDefinitionsBundle/Resources/config/pimcore/routing.yml @@ -60,8 +60,8 @@ data_definitions_admin_export_definitions: data_definitions_admin_export_import_rules: path: /admin/data_definitions/import_rules/export - defaults: { _controller: Wvision\Bundle\DataDefinitionsBundle\Controller\ImportRuleController::exportAction } + defaults: { _controller: Instride\Bundle\DataDefinitionsBundle\Controller\ImportRuleController::exportAction } data_definitions_admin_import_import_rules: path: /admin/data_definitions/import_rules/import - defaults: { _controller: Wvision\Bundle\DataDefinitionsBundle\Controller\ImportRuleController::importAction } + defaults: { _controller: Instride\Bundle\DataDefinitionsBundle\Controller\ImportRuleController::importAction } diff --git a/src/DataDefinitionsBundle/Resources/config/process_manager.yml b/src/DataDefinitionsBundle/Resources/config/process_manager.yml index c02bb4ab..17a7c953 100644 --- a/src/DataDefinitionsBundle/Resources/config/process_manager.yml +++ b/src/DataDefinitionsBundle/Resources/config/process_manager.yml @@ -1,5 +1,5 @@ services: - Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ProcessManagerImportListener: + Instride\Bundle\DataDefinitionsBundle\ProcessManager\ProcessManagerImportListener: arguments: - '@process_manager.factory.process' - '@ProcessManagerBundle\Logger\ProcessLogger' @@ -12,7 +12,7 @@ services: - { name: 'kernel.event_listener', event: 'data_definitions.import.finished', method: 'onFinishedEvent' } - { name: 'kernel.event_listener', event: 'data_definitions.import.failure', method: 'onFailureEvent' } - Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ProcessManagerExportListener: + Instride\Bundle\DataDefinitionsBundle\ProcessManager\ProcessManagerExportListener: arguments: - '@process_manager.factory.process' - '@ProcessManagerBundle\Logger\ProcessLogger' @@ -29,20 +29,20 @@ services: - { name: 'kernel.event_listener', event: 'data_definitions.export.finished', method: 'onFinishedEvent' } - { name: 'kernel.event_listener', event: 'data_definitions.export.failure', method: 'onFailureEvent' } - Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ImportDefinitionProcess: + Instride\Bundle\DataDefinitionsBundle\ProcessManager\ImportDefinitionProcess: tags: - - { name: 'process_manager.process', type: 'importdefinition', form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager\ImportDefinitionsType } + - { name: 'process_manager.process', type: 'importdefinition', form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager\ImportDefinitionsType } - Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ExportDefinitionProcess: + Instride\Bundle\DataDefinitionsBundle\ProcessManager\ExportDefinitionProcess: tags: - - { name: 'process_manager.process', type: 'exportdefinition', form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager\ImportDefinitionsType } + - { name: 'process_manager.process', type: 'exportdefinition', form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ProcessManager\ImportDefinitionsType } - Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ExportDefinitionStartupFormResolver: + Instride\Bundle\DataDefinitionsBundle\ProcessManager\ExportDefinitionStartupFormResolver: arguments: - '@data_definitions.repository.export_definition' tags: - { name: 'process_manager.startup_form_resolver', type: 'exportdefinition' } - Wvision\Bundle\DataDefinitionsBundle\ProcessManager\ImportDefinitionsReport: + Instride\Bundle\DataDefinitionsBundle\ProcessManager\ImportDefinitionsReport: tags: - { name: process_manager.process_report, type: import_definitions } diff --git a/src/DataDefinitionsBundle/Resources/config/serializer/Model.Definition.yml b/src/DataDefinitionsBundle/Resources/config/serializer/Model.Definition.yml index f87cd6bb..d0c3e940 100755 --- a/src/DataDefinitionsBundle/Resources/config/serializer/Model.Definition.yml +++ b/src/DataDefinitionsBundle/Resources/config/serializer/Model.Definition.yml @@ -1,4 +1,4 @@ -Wvision\Bundle\DataDefinitionsBundle\Model\Definition: +Instride\Bundle\DataDefinitionsBundle\Model\Definition: exclusion_policy: ALL xml_root_name: definition properties: diff --git a/src/DataDefinitionsBundle/Resources/config/serializer/Model.ExportDefinition.yml b/src/DataDefinitionsBundle/Resources/config/serializer/Model.ExportDefinition.yml index 30e861c6..88e5acbc 100755 --- a/src/DataDefinitionsBundle/Resources/config/serializer/Model.ExportDefinition.yml +++ b/src/DataDefinitionsBundle/Resources/config/serializer/Model.ExportDefinition.yml @@ -1,4 +1,4 @@ -Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition: +Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition: exclusion_policy: ALL xml_root_name: export_definition properties: @@ -18,4 +18,4 @@ Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition: isWriteable: exp: object.isWriteable() type: boolean - serialized_name: isWriteable \ No newline at end of file + serialized_name: isWriteable diff --git a/src/DataDefinitionsBundle/Resources/config/serializer/Model.ImportDefinition.yml b/src/DataDefinitionsBundle/Resources/config/serializer/Model.ImportDefinition.yml index df9641c6..89280750 100755 --- a/src/DataDefinitionsBundle/Resources/config/serializer/Model.ImportDefinition.yml +++ b/src/DataDefinitionsBundle/Resources/config/serializer/Model.ImportDefinition.yml @@ -1,4 +1,4 @@ -Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition: +Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition: exclusion_policy: ALL xml_root_name: import_definition properties: @@ -54,4 +54,4 @@ Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition: isWriteable: exp: object.isWriteable() type: boolean - serialized_name: isWriteable \ No newline at end of file + serialized_name: isWriteable diff --git a/src/DataDefinitionsBundle/Resources/config/services.yml b/src/DataDefinitionsBundle/Resources/config/services.yml index 5e6accef..bbdcf1fa 100644 --- a/src/DataDefinitionsBundle/Resources/config/services.yml +++ b/src/DataDefinitionsBundle/Resources/config/services.yml @@ -5,18 +5,18 @@ imports: - { resource: "services/import_rules.yml" } services: - Wvision\Bundle\DataDefinitionsBundle\Event\EventDispatcher: + Instride\Bundle\DataDefinitionsBundle\Event\EventDispatcher: arguments: - '@event_dispatcher' - Wvision\Bundle\DataDefinitionsBundle\Service\FieldSelection: + Instride\Bundle\DataDefinitionsBundle\Service\FieldSelection: public: true - Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface: '@Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactory' - Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactory: ~ + Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface: '@Instride\Bundle\DataDefinitionsBundle\Context\ContextFactory' + Instride\Bundle\DataDefinitionsBundle\Context\ContextFactory: ~ - Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface: '@Wvision\Bundle\DataDefinitionsBundle\Importer\Importer' - Wvision\Bundle\DataDefinitionsBundle\Importer\Importer: + Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface: '@Instride\Bundle\DataDefinitionsBundle\Importer\Importer' + Instride\Bundle\DataDefinitionsBundle\Importer\Importer: arguments: - '@data_definitions.registry.provider' - '@data_definitions.registry.filter' @@ -26,8 +26,8 @@ services: - '@data_definitions.registry.cleaner' - '@data_definitions.registry.loader' - '@data_definitions.registry.persister' - - '@Wvision\Bundle\DataDefinitionsBundle\Event\EventDispatcher' - - '@Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Event\EventDispatcher' + - '@Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' - '@logger' - '@pimcore.model.factory' - '@coreshop.expression_language' @@ -36,15 +36,15 @@ services: - { name: monolog.logger, channel: import_definition } - { name: 'kernel.event_listener', event: 'data_definitions.stop', method: 'stop' } - Wvision\Bundle\DataDefinitionsBundle\Exporter\ExporterInterface: '@Wvision\Bundle\DataDefinitionsBundle\Exporter\Exporter' - Wvision\Bundle\DataDefinitionsBundle\Exporter\Exporter: + Instride\Bundle\DataDefinitionsBundle\Exporter\ExporterInterface: '@Instride\Bundle\DataDefinitionsBundle\Exporter\Exporter' + Instride\Bundle\DataDefinitionsBundle\Exporter\Exporter: arguments: - '@data_definitions.registry.fetcher' - '@data_definitions.registry.export_runner' - '@data_definitions.registry.interpreter' - '@data_definitions.registry.getter' - '@data_definitions.registry.export_provider' - - '@Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' - '@event_dispatcher' - '@logger' tags: @@ -56,7 +56,7 @@ services: class: CoreShop\Component\Registry\ServiceRegistry public: true arguments: - - Wvision\Bundle\DataDefinitionsBundle\Provider\ImportProviderInterface + - Instride\Bundle\DataDefinitionsBundle\Provider\ImportProviderInterface - 'Import Definition Providers' data_definitions.form.registry.provider: @@ -65,7 +65,7 @@ services: data_definitions.registry.export_provider: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Provider\ExportProviderInterface + - Instride\Bundle\DataDefinitionsBundle\Provider\ExportProviderInterface - 'Import Definition Export Providers' data_definitions.form.registry.export_provider: @@ -74,25 +74,25 @@ services: data_definitions.registry.loader: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Loader\LoaderInterface + - Instride\Bundle\DataDefinitionsBundle\Loader\LoaderInterface - 'Import Definition Loaders' data_definitions.registry.cleaner: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Cleaner\CleanerInterface + - Instride\Bundle\DataDefinitionsBundle\Cleaner\CleanerInterface - 'Import Definition Cleaners' data_definitions.registry.filter: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Filter\FilterInterface + - Instride\Bundle\DataDefinitionsBundle\Filter\FilterInterface - 'Import Definition Filters' data_definitions.registry.interpreter: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface + - Instride\Bundle\DataDefinitionsBundle\Interpreter\InterpreterInterface - 'Import Definition Interpreters' data_definitions.form.registry.interpreter: @@ -101,7 +101,7 @@ services: data_definitions.registry.setter: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Setter\SetterInterface + - Instride\Bundle\DataDefinitionsBundle\Setter\SetterInterface - 'Import Definition Setters' data_definitions.form.registry.setter: @@ -110,7 +110,7 @@ services: data_definitions.registry.getter: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface + - Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface - 'Import Definition Getters' data_definitions.form.registry.getter: @@ -119,7 +119,7 @@ services: data_definitions.registry.fetcher: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Fetcher\FetcherInterface + - Instride\Bundle\DataDefinitionsBundle\Fetcher\FetcherInterface - 'Import Definition Fetchers' data_definitions.form.registry.fetcher: @@ -128,276 +128,276 @@ services: data_definitions.registry.runner: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Runner\RunnerInterface + - Instride\Bundle\DataDefinitionsBundle\Runner\RunnerInterface - 'Import Definition Runners' data_definitions.registry.export_runner: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Runner\ExportRunnerInterface + - Instride\Bundle\DataDefinitionsBundle\Runner\ExportRunnerInterface - 'Export Definition Runners' data_definitions.registry.persister: class: CoreShop\Component\Registry\ServiceRegistry arguments: - - Wvision\Bundle\DataDefinitionsBundle\Persister\PersisterInterface + - Instride\Bundle\DataDefinitionsBundle\Persister\PersisterInterface - 'Import Definition Persisters' ### CLEANER - Wvision\Bundle\DataDefinitionsBundle\Cleaner\Deleter: + Instride\Bundle\DataDefinitionsBundle\Cleaner\Deleter: tags: - { name: data_definitions.cleaner, type: deleter } - Wvision\Bundle\DataDefinitionsBundle\Cleaner\None: + Instride\Bundle\DataDefinitionsBundle\Cleaner\None: tags: - { name: data_definitions.cleaner, type: none } - Wvision\Bundle\DataDefinitionsBundle\Cleaner\ReferenceCleaner: + Instride\Bundle\DataDefinitionsBundle\Cleaner\ReferenceCleaner: tags: - { name: data_definitions.cleaner, type: reference_cleaner } - Wvision\Bundle\DataDefinitionsBundle\Cleaner\Unpublisher: + Instride\Bundle\DataDefinitionsBundle\Cleaner\Unpublisher: tags: - { name: data_definitions.cleaner, type: unpublisher } ### INTERPRETER - Wvision\Bundle\DataDefinitionsBundle\Interpreter\AssetsUrlInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\AssetsUrlInterpreter: arguments: - '@Psr\Http\Client\ClientInterface' - '@Psr\Http\Message\RequestFactoryInterface' tags: - - { name: data_definitions.interpreter, type: assets_url, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\AssetsUrlInterpreterType } + - { name: data_definitions.interpreter, type: assets_url, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\AssetsUrlInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\AssetUrlInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\AssetUrlInterpreter: arguments: - '@Psr\Http\Client\ClientInterface' - '@Psr\Http\Message\RequestFactoryInterface' tags: - - { name: data_definitions.interpreter, type: asset_url, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\AssetUrlInterpreterType } + - { name: data_definitions.interpreter, type: asset_url, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\AssetUrlInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\MetadataInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\MetadataInterpreter: tags: - - { name: data_definitions.interpreter, type: metadata, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\MetadataInterpreterType } + - { name: data_definitions.interpreter, type: metadata, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\MetadataInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\AssetByPathInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\AssetByPathInterpreter: tags: - - { name: data_definitions.interpreter, type: asset_by_path, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\AssetByPathInterpreterType } + - { name: data_definitions.interpreter, type: asset_by_path, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\AssetByPathInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\CarbonInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\CarbonInterpreter: tags: - - { name: data_definitions.interpreter, type: carbon, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CarbonInterpreterType } + - { name: data_definitions.interpreter, type: carbon, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CarbonInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\CheckboxInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\CheckboxInterpreter: tags: - - { name: data_definitions.interpreter, type: checkbox, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.interpreter, type: checkbox, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\DefaultValueInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\DefaultValueInterpreter: tags: - - { name: data_definitions.interpreter, type: default_value, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\DefaultValueInterpreterType } + - { name: data_definitions.interpreter, type: default_value, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\DefaultValueInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\SpecificObjectInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\SpecificObjectInterpreter: tags: - - { name: data_definitions.interpreter, type: specific_object, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\SpecificObjectInterpreterType } + - { name: data_definitions.interpreter, type: specific_object, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\SpecificObjectInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\HrefInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\HrefInterpreter: tags: - - { name: data_definitions.interpreter, type: href, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\HrefInterpreterType } + - { name: data_definitions.interpreter, type: href, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\HrefInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\MultiHrefInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\MultiHrefInterpreter: tags: - - { name: data_definitions.interpreter, type: multi_href, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\MultiHrefInterpreterType } + - { name: data_definitions.interpreter, type: multi_href, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\MultiHrefInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\QuantityValueInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\QuantityValueInterpreter: tags: - - { name: data_definitions.interpreter, type: quantity_value, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\QuantityValueInterpreterType } + - { name: data_definitions.interpreter, type: quantity_value, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\QuantityValueInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\NestedInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\NestedInterpreter: arguments: - '@data_definitions.registry.interpreter' - - '@Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' tags: - - { name: data_definitions.interpreter, type: nested, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\NestedInterpreterType } + - { name: data_definitions.interpreter, type: nested, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\NestedInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\ExpressionInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\ExpressionInterpreter: arguments: - '@coreshop.expression_language' - '@service_container' tags: - - { name: data_definitions.interpreter, type: expression, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\ExpressionInterpreterType } + - { name: data_definitions.interpreter, type: expression, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\ExpressionInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\ObjectResolverInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\ObjectResolverInterpreter: arguments: - '@service_container' tags: - - { name: data_definitions.interpreter, type: object_resolver, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\ObjectResolverType } + - { name: data_definitions.interpreter, type: object_resolver, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\ObjectResolverType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\DefinitionInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\DefinitionInterpreter: arguments: - '@data_definitions.repository.import_definition' - - '@Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' tags: - - { name: data_definitions.interpreter, type: definition, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\DefinitionType } + - { name: data_definitions.interpreter, type: definition, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\DefinitionType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\ConditionalInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\ConditionalInterpreter: arguments: - '@data_definitions.registry.interpreter' - '@coreshop.expression_language' - '@service_container' - - '@Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' tags: - - { name: data_definitions.interpreter, type: conditional, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\ConditionalInterpreterType } + - { name: data_definitions.interpreter, type: conditional, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\ConditionalInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\MappingInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\MappingInterpreter: arguments: - '@service_container' tags: - - { name: data_definitions.interpreter, type: mapping, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\MappingInterpreterType } + - { name: data_definitions.interpreter, type: mapping, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\MappingInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\IteratorInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\IteratorInterpreter: arguments: - '@data_definitions.registry.interpreter' - - '@Wvision\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Context\ContextFactoryInterface' tags: - - { name: data_definitions.interpreter, type: iterator, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\IteratorInterpreterType } + - { name: data_definitions.interpreter, type: iterator, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\IteratorInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\TwigInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\TwigInterpreter: arguments: - '@twig' tags: - - { name: data_definitions.interpreter, type: twig, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\TwigInterpreterType } + - { name: data_definitions.interpreter, type: twig, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\TwigInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\DoNotSetOnEmptyInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\DoNotSetOnEmptyInterpreter: tags: - - { name: data_definitions.interpreter, type: donotsetonempty, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.interpreter, type: donotsetonempty, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\TypeCastingInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\TypeCastingInterpreter: tags: - - { name: data_definitions.interpreter, type: type_casting, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\TypeCastingInterpreterType } + - { name: data_definitions.interpreter, type: type_casting, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\TypeCastingInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\LinkInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\LinkInterpreter: tags: - - { name: data_definitions.interpreter, type: link, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.interpreter, type: link, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Interpreter\ExternalImageInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\ExternalImageInterpreter: tags: - - { name: data_definitions.interpreter, type: external_image, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.interpreter, type: external_image, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } ### PROVIDER - Wvision\Bundle\DataDefinitionsBundle\Provider\CsvProvider: + Instride\Bundle\DataDefinitionsBundle\Provider\CsvProvider: arguments: - - '@Wvision\Bundle\DataDefinitionsBundle\Service\StorageLocator' + - '@Instride\Bundle\DataDefinitionsBundle\Service\StorageLocator' - '@Pimcore\Helper\LongRunningHelper' tags: - - { name: data_definitions.import_provider, type: csv, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\CsvProviderType } - - { name: data_definitions.export_provider, type: csv, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportProvider\CsvProviderType } + - { name: data_definitions.import_provider, type: csv, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\CsvProviderType } + - { name: data_definitions.export_provider, type: csv, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportProvider\CsvProviderType } - Wvision\Bundle\DataDefinitionsBundle\Provider\ExcelProvider: + Instride\Bundle\DataDefinitionsBundle\Provider\ExcelProvider: arguments: - - '@Wvision\Bundle\DataDefinitionsBundle\Service\StorageLocator' + - '@Instride\Bundle\DataDefinitionsBundle\Service\StorageLocator' - '@Pimcore\Helper\LongRunningHelper' tags: - - { name: data_definitions.import_provider, type: excel, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\ExcelProviderType } - - { name: data_definitions.export_provider, type: excel, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.import_provider, type: excel, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\ExcelProviderType } + - { name: data_definitions.export_provider, type: excel, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Provider\JsonProvider: + Instride\Bundle\DataDefinitionsBundle\Provider\JsonProvider: arguments: - - '@Wvision\Bundle\DataDefinitionsBundle\Service\StorageLocator' + - '@Instride\Bundle\DataDefinitionsBundle\Service\StorageLocator' - '@Pimcore\Helper\LongRunningHelper' tags: - - { name: data_definitions.import_provider, type: json, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\JsonProviderType } - - { name: data_definitions.export_provider, type: json, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.import_provider, type: json, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\JsonProviderType } + - { name: data_definitions.export_provider, type: json, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Provider\ExternalSqlProvider: + Instride\Bundle\DataDefinitionsBundle\Provider\ExternalSqlProvider: tags: - - { name: data_definitions.import_provider, type: external_sql, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\ExternalSqlProviderType } + - { name: data_definitions.import_provider, type: external_sql, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\ExternalSqlProviderType } - Wvision\Bundle\DataDefinitionsBundle\Provider\SqlProvider: + Instride\Bundle\DataDefinitionsBundle\Provider\SqlProvider: arguments: - '@doctrine.dbal.default_connection' tags: - - { name: data_definitions.import_provider, type: sql, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\SqlProviderType } + - { name: data_definitions.import_provider, type: sql, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\SqlProviderType } - Wvision\Bundle\DataDefinitionsBundle\Provider\XmlProvider: + Instride\Bundle\DataDefinitionsBundle\Provider\XmlProvider: arguments: - - '@Wvision\Bundle\DataDefinitionsBundle\Service\StorageLocator' + - '@Instride\Bundle\DataDefinitionsBundle\Service\StorageLocator' - '@Pimcore\Helper\LongRunningHelper' tags: - - { name: data_definitions.import_provider, type: xml, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\XmlProviderType } - - { name: data_definitions.export_provider, type: xml, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportProvider\XmlProviderType } + - { name: data_definitions.import_provider, type: xml, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\XmlProviderType } + - { name: data_definitions.export_provider, type: xml, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportProvider\XmlProviderType } - Wvision\Bundle\DataDefinitionsBundle\Provider\RawProvider: + Instride\Bundle\DataDefinitionsBundle\Provider\RawProvider: tags: - - { name: data_definitions.import_provider, type: raw, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\RawProviderType } + - { name: data_definitions.import_provider, type: raw, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProvider\RawProviderType } ### SETTER AND GETTER - Wvision\Bundle\DataDefinitionsBundle\Setter\ClassificationStoreSetter: + Instride\Bundle\DataDefinitionsBundle\Setter\ClassificationStoreSetter: tags: - - { name: data_definitions.setter, type: classificationstore, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\ClassificationStoreSetterType } - - { name: data_definitions.getter, type: classificationstore, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\ClassificationStoreSetterType } + - { name: data_definitions.setter, type: classificationstore, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\ClassificationStoreSetterType } + - { name: data_definitions.getter, type: classificationstore, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\ClassificationStoreSetterType } - Wvision\Bundle\DataDefinitionsBundle\Setter\ClassificationStoreFieldGetter: + Instride\Bundle\DataDefinitionsBundle\Setter\ClassificationStoreFieldGetter: tags: - - { name: data_definitions.getter, type: classificationstore_field, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.getter, type: classificationstore_field, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Setter\FieldCollectionSetter: + Instride\Bundle\DataDefinitionsBundle\Setter\FieldCollectionSetter: tags: - - { name: data_definitions.setter, type: fieldcollection, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\FieldCollectionSetterType } - - { name: data_definitions.getter, type: fieldcollection, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\FieldCollectionSetterType } + - { name: data_definitions.setter, type: fieldcollection, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\FieldCollectionSetterType } + - { name: data_definitions.getter, type: fieldcollection, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\FieldCollectionSetterType } - Wvision\Bundle\DataDefinitionsBundle\Setter\KeySetter: + Instride\Bundle\DataDefinitionsBundle\Setter\KeySetter: tags: - - { name: data_definitions.setter, type: key, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.setter, type: key, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Setter\LocalizedfieldSetter: + Instride\Bundle\DataDefinitionsBundle\Setter\LocalizedfieldSetter: tags: - - { name: data_definitions.setter, type: localizedfield, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\LocalizedFieldSetterType } - - { name: data_definitions.getter, type: localizedfield, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\LocalizedFieldSetterType } + - { name: data_definitions.setter, type: localizedfield, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\LocalizedFieldSetterType } + - { name: data_definitions.getter, type: localizedfield, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\LocalizedFieldSetterType } - Wvision\Bundle\DataDefinitionsBundle\Setter\ObjectbrickSetter: + Instride\Bundle\DataDefinitionsBundle\Setter\ObjectbrickSetter: tags: - - { name: data_definitions.setter, type: objectbrick, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\ObjectBrickSetterType } - - { name: data_definitions.getter, type: objectbrick, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Setter\ObjectBrickSetterType } + - { name: data_definitions.setter, type: objectbrick, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\ObjectBrickSetterType } + - { name: data_definitions.getter, type: objectbrick, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Setter\ObjectBrickSetterType } - Wvision\Bundle\DataDefinitionsBundle\Setter\ObjectTypeSetter: + Instride\Bundle\DataDefinitionsBundle\Setter\ObjectTypeSetter: tags: - - { name: data_definitions.setter, type: object_type, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.setter, type: object_type, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\Setter\RelationSetter: + Instride\Bundle\DataDefinitionsBundle\Setter\RelationSetter: tags: - - { name: data_definitions.setter, type: relation, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } + - { name: data_definitions.setter, type: relation, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\NoConfigurationType } - Wvision\Bundle\DataDefinitionsBundle\EventListener\ObjectDeleteListener: + Instride\Bundle\DataDefinitionsBundle\EventListener\ObjectDeleteListener: tags: - { name: kernel.event_listener, event: pimcore.dataobject.postDelete, method: onDataObjectDelete } - Wvision\Bundle\DataDefinitionsBundle\Fetcher\ObjectsFetcher: + Instride\Bundle\DataDefinitionsBundle\Fetcher\ObjectsFetcher: tags: - - { name: data_definitions.fetcher, type: objects, form-type: Wvision\Bundle\DataDefinitionsBundle\Form\Type\Fetcher\ObjectsFetcherType } + - { name: data_definitions.fetcher, type: objects, form-type: Instride\Bundle\DataDefinitionsBundle\Form\Type\Fetcher\ObjectsFetcherType } ### LOADER - Wvision\Bundle\DataDefinitionsBundle\Loader\PrimaryKeyLoader: + Instride\Bundle\DataDefinitionsBundle\Loader\PrimaryKeyLoader: tags: - { name: data_definitions.loader, type: primary_key } ### PERSISTER - Wvision\Bundle\DataDefinitionsBundle\Persister\Persister: + Instride\Bundle\DataDefinitionsBundle\Persister\Persister: tags: - { name: data_definitions.persister, type: persister } - Wvision\Bundle\DataDefinitionsBundle\Service\StorageLocator: + Instride\Bundle\DataDefinitionsBundle\Service\StorageLocator: arguments: $locator: !tagged_locator { tag: flysystem.storage } - Wvision\Bundle\DataDefinitionsBundle\EventListener\PimcoreSettingsListener: + Instride\Bundle\DataDefinitionsBundle\EventListener\PimcoreSettingsListener: tags: - { name: kernel.event_listener, event: pimcore.admin.indexAction.settings, method: indexSettings } - Wvision\Bundle\DataDefinitionsBundle\EventListener\WriteableListener: + Instride\Bundle\DataDefinitionsBundle\EventListener\WriteableListener: tags: - { name: kernel.event_subscriber } - Wvision\Bundle\DataDefinitionsBundle\Messenger\ImportRowMessageHandler: + Instride\Bundle\DataDefinitionsBundle\Messenger\ImportRowMessageHandler: arguments: - - '@Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' tags: - { name: messenger.message_handler } diff --git a/src/DataDefinitionsBundle/Resources/config/services/commands.yml b/src/DataDefinitionsBundle/Resources/config/services/commands.yml index ea5aa5ef..28f7439b 100644 --- a/src/DataDefinitionsBundle/Resources/config/services/commands.yml +++ b/src/DataDefinitionsBundle/Resources/config/services/commands.yml @@ -1,41 +1,41 @@ services: - Wvision\Bundle\DataDefinitionsBundle\Command\ListImportDefinitionsCommand: + Instride\Bundle\DataDefinitionsBundle\Command\ListImportDefinitionsCommand: arguments: - '@data_definitions.repository.import_definition' tags: - { name: 'console.command', command: 'data-definitions:list:imports' } - Wvision\Bundle\DataDefinitionsBundle\Command\ListExportDefinitionsCommand: + Instride\Bundle\DataDefinitionsBundle\Command\ListExportDefinitionsCommand: arguments: - '@data_definitions.repository.export_definition' tags: - { name: 'console.command', command: 'data-definitions:list:exports' } - Wvision\Bundle\DataDefinitionsBundle\Command\ImportCommand: + Instride\Bundle\DataDefinitionsBundle\Command\ImportCommand: arguments: - '@event_dispatcher' - '@data_definitions.repository.import_definition' - - '@Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' tags: - { name: 'console.command', command: 'data-definitions:import' } - Wvision\Bundle\DataDefinitionsBundle\Command\ImportAsyncCommand: + Instride\Bundle\DataDefinitionsBundle\Command\ImportAsyncCommand: arguments: - '@event_dispatcher' - '@data_definitions.repository.import_definition' - - '@Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' tags: - { name: 'console.command', command: 'data-definitions:async-import' } - Wvision\Bundle\DataDefinitionsBundle\Command\ExportCommand: + Instride\Bundle\DataDefinitionsBundle\Command\ExportCommand: arguments: - '@event_dispatcher' - '@data_definitions.repository.export_definition' - - '@Wvision\Bundle\DataDefinitionsBundle\Exporter\ExporterInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Exporter\ExporterInterface' tags: - { name: 'console.command', command: 'data-definitions:export' } - Wvision\Bundle\DataDefinitionsBundle\Command\ImportImportDefinitionCommand: + Instride\Bundle\DataDefinitionsBundle\Command\ImportImportDefinitionCommand: arguments: - '@=service("CoreShop\\Component\\Resource\\Metadata\\RegistryInterface").get("data_definitions.import_definition")' - '@data_definitions.repository.import_definition' @@ -44,7 +44,7 @@ services: tags: - { name: 'console.command', command: 'data-definitions:definition:import:import' } - Wvision\Bundle\DataDefinitionsBundle\Command\ImportExportDefinitionCommand: + Instride\Bundle\DataDefinitionsBundle\Command\ImportExportDefinitionCommand: arguments: - '@=service("CoreShop\\Component\\Resource\\Metadata\\RegistryInterface").get("data_definitions.export_definition")' - '@data_definitions.repository.export_definition' diff --git a/src/DataDefinitionsBundle/Resources/config/services/forms.yml b/src/DataDefinitionsBundle/Resources/config/services/forms.yml index dfd4632f..fc9077e5 100644 --- a/src/DataDefinitionsBundle/Resources/config/services/forms.yml +++ b/src/DataDefinitionsBundle/Resources/config/services/forms.yml @@ -5,58 +5,58 @@ parameters: data_definitions.form.type.export_mapping.validation_groups: [ data_definitions ] services: - Wvision\Bundle\DataDefinitionsBundle\Form\DataMapper\DefinitionMappingDataMapper: ~ + Instride\Bundle\DataDefinitionsBundle\Form\DataMapper\DefinitionMappingDataMapper: ~ - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ClassChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ClassChoiceType: tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\CleanerChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\CleanerChoiceType: arguments: [ '%data_definitions.cleaners%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\FilterChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\FilterChoiceType: arguments: [ '%data_definitions.filters%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\InterpreterChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\InterpreterChoiceType: arguments: [ '%data_definitions.interpreters%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportProviderChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportProviderChoiceType: arguments: [ '%data_definitions.import_providers%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportProviderChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportProviderChoiceType: arguments: [ '%data_definitions.export_providers%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\LoaderChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\LoaderChoiceType: arguments: [ '%data_definitions.loaders%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\RunnerChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\RunnerChoiceType: arguments: [ '%data_definitions.runners%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\SetterChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\SetterChoiceType: arguments: [ '%data_definitions.setters%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\PersisterChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\PersisterChoiceType: arguments: [ '%data_definitions.persisters%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportDefinitionType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportDefinitionType: arguments: - '%data_definitions.model.import_definition.class%' - '%data_definitions.form.type.definition.validation_groups%' @@ -64,13 +64,13 @@ services: tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportMappingCollectionType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportMappingCollectionType: arguments: - - '@Wvision\Bundle\DataDefinitionsBundle\Form\DataMapper\DefinitionMappingDataMapper' + - '@Instride\Bundle\DataDefinitionsBundle\Form\DataMapper\DefinitionMappingDataMapper' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ImportMappingType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ImportMappingType: arguments: - '%data_definitions.form.type.mapping.validation_groups%' - '@data_definitions.form.registry.setter' @@ -79,7 +79,7 @@ services: tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportDefinitionType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportDefinitionType: arguments: - '%data_definitions.model.export_definition.class%' - '%data_definitions.form.type.export_definition.validation_groups%' @@ -88,13 +88,13 @@ services: tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportMappingCollectionType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportMappingCollectionType: arguments: - - '@Wvision\Bundle\DataDefinitionsBundle\Form\DataMapper\DefinitionMappingDataMapper' + - '@Instride\Bundle\DataDefinitionsBundle\Form\DataMapper\DefinitionMappingDataMapper' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportMappingType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportMappingType: arguments: - '%data_definitions.form.type.export_mapping.validation_groups%' - '@data_definitions.form.registry.getter' @@ -102,35 +102,35 @@ services: tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\InterpreterType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\InterpreterType: arguments: [ '@data_definitions.form.registry.interpreter' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\InterpreterCollectionType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\InterpreterCollectionType: arguments: [ '@data_definitions.registry.interpreter' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\NestedInterpreterType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\NestedInterpreterType: tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\ObjectResolverType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\ObjectResolverType: tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\FetcherChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\FetcherChoiceType: arguments: [ '%data_definitions.fetchers%' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\DefinitionChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\DefinitionChoiceType: arguments: [ '@data_definitions.repository.import_definition' ] tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Form\Type\ExportRunnerChoiceType: + Instride\Bundle\DataDefinitionsBundle\Form\Type\ExportRunnerChoiceType: arguments: [ '%data_definitions.export_runners%' ] tags: - { name: form.type } diff --git a/src/DataDefinitionsBundle/Resources/config/services/import_rules.yml b/src/DataDefinitionsBundle/Resources/config/services/import_rules.yml index 5efb6877..28ab16ea 100644 --- a/src/DataDefinitionsBundle/Resources/config/services/import_rules.yml +++ b/src/DataDefinitionsBundle/Resources/config/services/import_rules.yml @@ -8,7 +8,7 @@ services: class: CoreShop\Component\Registry\ServiceRegistry public: true arguments: - - Wvision\Bundle\DataDefinitionsBundle\Rules\Action\ImportRuleProcessorInterface + - Instride\Bundle\DataDefinitionsBundle\Rules\Action\ImportRuleProcessorInterface - 'Import Rule Action Processors' data_definitions.form.import_rule.action: @@ -18,76 +18,76 @@ services: class: CoreShop\Component\Registry\ServiceRegistry public: true arguments: - - Wvision\Bundle\DataDefinitionsBundle\Rules\Condition\ImportRuleConditionCheckerInterface + - Instride\Bundle\DataDefinitionsBundle\Rules\Condition\ImportRuleConditionCheckerInterface - 'Import Rule Condition Checkers' data_definitions.form.import_rule.condition: class: CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistry - Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleActionChoiceType: + Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleActionChoiceType: arguments: - '%data_definitions.import_rule.actions%' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleConditionChoiceType: + Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleConditionChoiceType: arguments: - '%data_definitions.import_rule.conditions%' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleActionCollectionType: + Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleActionCollectionType: arguments: - '@data_definitions.import_rule.action' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleConditionCollectionType: + Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleConditionCollectionType: arguments: - '@data_definitions.import_rule.condition' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleActionType: + Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleActionType: arguments: - '%data_definitions.form.type.import_rule.action.validation_groups%' - '@data_definitions.form.import_rule.action' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleConditionType: + Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleConditionType: arguments: - '%data_definitions.form.type.definition.validation_groups%' - '@data_definitions.form.import_rule.condition' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleType: + Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRuleType: arguments: - '%data_definitions.form.type.definition.validation_groups%' tags: - { name: form.type } - Wvision\Bundle\DataDefinitionsBundle\Rules\Condition\ExpressionConditionChecker: + Instride\Bundle\DataDefinitionsBundle\Rules\Condition\ExpressionConditionChecker: arguments: - '@coreshop.expression_language' - '@service_container' tags: - - { name: data_definitions.import_rule.condition, type: expression, form-type: Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\Condition\ExpressionConditionType } + - { name: data_definitions.import_rule.condition, type: expression, form-type: Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\Condition\ExpressionConditionType } - Wvision\Bundle\DataDefinitionsBundle\Rules\Action\ExpressionProcessor: + Instride\Bundle\DataDefinitionsBundle\Rules\Action\ExpressionProcessor: arguments: - '@coreshop.expression_language' - '@service_container' tags: - - { name: data_definitions.import_rule.action, type: expression, form-type: Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\Action\ExpressionType } + - { name: data_definitions.import_rule.action, type: expression, form-type: Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\Action\ExpressionType } - Wvision\Bundle\DataDefinitionsBundle\Rules\Action\ObjectProcessor: + Instride\Bundle\DataDefinitionsBundle\Rules\Action\ObjectProcessor: tags: - - { name: data_definitions.import_rule.action, type: object, form-type: Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\Action\ObjectType } + - { name: data_definitions.import_rule.action, type: object, form-type: Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\Action\ObjectType } - Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplierInterface: '@Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplier' - Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplier: + Instride\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplierInterface: '@Instride\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplier' + Instride\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplier: arguments: - '@data_definitions.import_rule.action' @@ -98,18 +98,18 @@ services: - '@data_definitions.import_rule.condition' - 'Import Rules Interface' - Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessorInterface: '@Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessor' - Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessor: + Instride\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessorInterface: '@Instride\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessor' + Instride\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessor: arguments: - '@data_definitions.import_rules.conditions.validation.processor' - Wvision\Bundle\DataDefinitionsBundle\Interpreter\ImportRuleInterpreter: + Instride\Bundle\DataDefinitionsBundle\Interpreter\ImportRuleInterpreter: arguments: - - '@Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessorInterface' - - '@Wvision\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplierInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Rules\Processor\ImportRuleValidationProcessorInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Rules\Processor\RuleApplierInterface' tags: - - { name: data_definitions.interpreter, type: import_rule, form-type: Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRulesInterpreterType } + - { name: data_definitions.interpreter, type: import_rule, form-type: Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\ImportRulesInterpreterType } - Wvision\Bundle\DataDefinitionsBundle\Controller\ImportRuleController: + Instride\Bundle\DataDefinitionsBundle\Controller\ImportRuleController: tags: - { name: controller.service_arguments } diff --git a/src/DataDefinitionsBundle/Resources/config/services/installer.yml b/src/DataDefinitionsBundle/Resources/config/services/installer.yml index 6a43e238..61fee40a 100644 --- a/src/DataDefinitionsBundle/Resources/config/services/installer.yml +++ b/src/DataDefinitionsBundle/Resources/config/services/installer.yml @@ -4,7 +4,7 @@ services: autoconfigure: true public: false - Wvision\Bundle\DataDefinitionsBundle\Installer: + Instride\Bundle\DataDefinitionsBundle\Installer: public: true arguments: $bundle: "@=service('kernel').getBundle('DataDefinitionsBundle')" diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/getter/storePrice.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/getter/storePrice.js index 710e201d..19643d2d 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/getter/storePrice.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/getter/storePrice.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.getters.coreshop_store_price'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/getter/storeValues.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/getter/storeValues.js index a449334c..bc620a2b 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/getter/storeValues.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/getter/storeValues.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.getters.coreshop_store_values'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/interpreter/price.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/interpreter/price.js index 94a64c0e..ad275052 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/interpreter/price.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/interpreter/price.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.coreshop_price'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/interpreter/stores.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/interpreter/stores.js index 78a00651..5df6c54e 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/interpreter/stores.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/interpreter/stores.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.coreshop_stores'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/setter/storePrice.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/setter/storePrice.js index 4df6715e..d5c0e0ac 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/setter/storePrice.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/setter/storePrice.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.setters.coreshop_store_price'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/setter/storeValues.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/setter/storeValues.js index faf37cba..6ccf7f90 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/setter/storeValues.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/coreshop/setter/storeValues.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.setters.coreshop_store_values'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/definition/abstractItem.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/definition/abstractItem.js index 6b64cf29..8a46d213 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/definition/abstractItem.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/definition/abstractItem.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.definition.abstractItem'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/configDialog.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/configDialog.js index 5c4d6759..a75cd227 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/configDialog.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/configDialog.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.export.configDialog'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/fields.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/fields.js index 8abe3eca..c1ae193e 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/fields.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/fields.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.export.fields'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/item.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/item.js index 1e1b2799..3733155a 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/item.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/item.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.export.item'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/panel.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/panel.js index d7a2c66b..cb63a01f 100755 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/panel.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export/panel.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.export.panel'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/abstractprovider.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/abstractprovider.js index a6592918..76a8bfdc 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/abstractprovider.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/abstractprovider.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.export_provider.abstractprovider'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/csv.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/csv.js index a594cafa..4c2c5f46 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/csv.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/csv.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.export_provider.csv'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/xml.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/xml.js index 3628675d..3722613c 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/xml.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/export_provider/xml.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.export_provider.xml'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/fetchers/abstract.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/fetchers/abstract.js index 7042e659..13cd1ab3 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/fetchers/abstract.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/fetchers/abstract.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.fetchers'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/fetchers/objects.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/fetchers/objects.js index 4489dd9c..d98778fd 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/fetchers/objects.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/fetchers/objects.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.fetchers.definition'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/classificationstore.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/classificationstore.js index 8ba8eeb5..75c2e84c 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/classificationstore.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/classificationstore.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.getters.classificationstore'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/fieldcollection.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/fieldcollection.js index 0ba73aaa..f103ee29 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/fieldcollection.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/fieldcollection.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.getters.fieldcollection'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/localizedfield.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/localizedfield.js index ce63dd2c..04dadd20 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/localizedfield.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/localizedfield.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.getters.localizedfield'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/objectbrick.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/objectbrick.js index 60f644c8..1cb608d1 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/objectbrick.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/getters/objectbrick.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.getters.objectbrick'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/configDialog.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/configDialog.js index 1a45742d..04e699ab 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/configDialog.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/configDialog.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.import.configDialog'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/item.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/item.js index b10f623a..adf73dba 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/item.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/item.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.import.item'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/panel.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/panel.js index de5d7ff5..7fdfb816 100755 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/panel.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import/panel.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.import.panel'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/action.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/action.js index 959c10cd..55e3f6d2 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/action.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/action.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.import_rule.action'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/actions/expression.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/actions/expression.js index 77852ce7..d524b871 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/actions/expression.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/actions/expression.js @@ -5,8 +5,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2015-2020 Dominik Pfaffenbauer (https://www.pfaffenbauer.at) - * @license https://www.coreshop.org/license GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) * */ diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/actions/object.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/actions/object.js index 2c1ff72b..9c0de691 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/actions/object.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/actions/object.js @@ -5,8 +5,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2015-2020 Dominik Pfaffenbauer (https://www.pfaffenbauer.at) - * @license https://www.coreshop.org/license GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) * */ diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/condition.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/condition.js index b7c67df7..b3c0a0d3 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/condition.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/condition.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.import_rule.condition'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/conditions/expression.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/conditions/expression.js index d50caf9b..1bae227f 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/conditions/expression.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/conditions/expression.js @@ -5,8 +5,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2015-2020 Dominik Pfaffenbauer (https://www.pfaffenbauer.at) - * @license https://www.coreshop.org/license GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) * */ diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/item.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/item.js index 785fc7cd..1e159a05 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/item.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/item.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.import_rule.item'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/panel.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/panel.js index 38c4109d..be3a3c93 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/panel.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/import_rule/panel.js @@ -5,8 +5,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2015-2020 Dominik Pfaffenbauer (https://www.pfaffenbauer.at) - * @license https://www.coreshop.org/license GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) * */ diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/abstract.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/abstract.js index 2c3051b9..8047d45f 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/abstract.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/abstract.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/assetbypath.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/assetbypath.js index aa9a50ba..c0bcbc97 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/assetbypath.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/assetbypath.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.asset_by_path'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/assetsurl.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/assetsurl.js index 8387e443..d980ceb1 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/assetsurl.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/assetsurl.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.assets_url'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/asseturl.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/asseturl.js index 3914e374..31f626b6 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/asseturl.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/asseturl.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.asset_url'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/carbon.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/carbon.js index b1759cc5..bf748bd8 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/carbon.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/carbon.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.carbon'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/conditional.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/conditional.js index e6380196..d7dbc3a5 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/conditional.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/conditional.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.conditional'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/defaultvalue.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/defaultvalue.js index 01a09a5a..1e448213 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/defaultvalue.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/defaultvalue.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.default_value'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/definition.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/definition.js index aadb749a..dd5ead32 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/definition.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/definition.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.definition'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/empty.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/empty.js index d2d5e891..055c8aa5 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/empty.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/empty.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.empty'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/expression.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/expression.js index b59680d5..15277ae6 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/expression.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/expression.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.expression'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/href.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/href.js index 2acf619a..90276497 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/href.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/href.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.href'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/import_rule.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/import_rule.js index 11d7fffc..6042736a 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/import_rule.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/import_rule.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.import_rule'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/iterator.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/iterator.js index 32b15735..60adbc56 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/iterator.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/iterator.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.iterator'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/mapping.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/mapping.js index 7cbc0bfb..0feb999b 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/mapping.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/mapping.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.mapping'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/metadata.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/metadata.js index 524138ac..77ff8a69 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/metadata.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/metadata.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/ImportDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.metadata'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/multihref.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/multihref.js index 8fea9975..78f9068c 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/multihref.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/multihref.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.multi_href'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/nested.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/nested.js index c0ec2a52..8ddb999d 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/nested.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/nested.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.nested'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/nestedcontainer.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/nestedcontainer.js index b883a978..c879b009 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/nestedcontainer.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/nestedcontainer.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.nestedcontainer'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/objectresolver.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/objectresolver.js index 997ef3d7..82ad6638 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/objectresolver.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/objectresolver.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.object_resolver'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/quantityvalue.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/quantityvalue.js index 4e826582..d3fba484 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/quantityvalue.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/quantityvalue.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.quantity_value'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/specificobject.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/specificobject.js index 3c2323ce..8570e37e 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/specificobject.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/specificobject.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.specific_object'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/twig.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/twig.js index 7b2aa277..68fbd97a 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/twig.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/twig.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.twig'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/typecasting.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/typecasting.js index cd846392..e299ff26 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/typecasting.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/interpreters/typecasting.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.interpreters.type_casting'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/export_definitions.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/export_definitions.js index 6f6130e7..1dbf1860 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/export_definitions.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/export_definitions.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ document.addEventListener('processmanager.ready', function () { diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/export_search.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/export_search.js index 82bb725e..9c9dd9fb 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/export_search.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/export_search.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.object.search = Class.create(pimcore.object.search, { diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/import_definitions.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/import_definitions.js index 89fbbb89..e8fc1f24 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/import_definitions.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/process_manager/import_definitions.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ document.addEventListener('processmanager.ready', function () { diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/abstractprovider.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/abstractprovider.js index fcfcdbf0..55cc2d44 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/abstractprovider.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/abstractprovider.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.provider.abstractprovider'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/csv.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/csv.js index 2f1b7cb5..60563b67 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/csv.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/csv.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.provider.csv'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/excel.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/excel.js index 28cda148..76114429 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/excel.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/excel.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.provider.excel'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/externalSql.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/externalSql.js index eae0379b..965f5a4b 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/externalSql.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/externalSql.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.provider.external_sql'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/json.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/json.js index d4e7a1d1..85c1ad01 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/json.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/json.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.provider.json'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/raw.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/raw.js index d32a79e1..ec1ae751 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/raw.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/raw.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.provider.raw'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/sql.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/sql.js index 6f3de8e4..0ae1cfd3 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/sql.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/sql.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.provider.sql'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/xml.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/xml.js index 1e5e2c90..24c8deb8 100755 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/xml.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/provider/xml.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.provider.xml'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/abstract.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/abstract.js index 80c5011f..f919b7dc 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/abstract.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/abstract.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.setters'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/classificationstore.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/classificationstore.js index 7e3ec076..24ae8aef 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/classificationstore.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/classificationstore.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.setters.classificationstore'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/fieldcollection.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/fieldcollection.js index 21a0ae0f..c2b5757d 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/fieldcollection.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/fieldcollection.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.setters.fieldcollection'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/localizedfield.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/localizedfield.js index 6433e8ef..5e4486fd 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/localizedfield.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/localizedfield.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.setters.localizedfield'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/objectbrick.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/objectbrick.js index 7bea331d..de3f0297 100644 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/objectbrick.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/setters/objectbrick.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.datadefinitions.setters.objectbrick'); diff --git a/src/DataDefinitionsBundle/Resources/public/pimcore/js/startup.js b/src/DataDefinitionsBundle/Resources/public/pimcore/js/startup.js index 9208129e..c9d2c687 100755 --- a/src/DataDefinitionsBundle/Resources/public/pimcore/js/startup.js +++ b/src/DataDefinitionsBundle/Resources/public/pimcore/js/startup.js @@ -7,8 +7,8 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ pimcore.registerNS('pimcore.plugin.data_definitions'); diff --git a/src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php b/src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php index 694cbf6f..a0c61a73 100644 --- a/src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php +++ b/src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Action; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Action; use Pimcore\Model\DataObject\Concrete; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\ExpressionLanguage\ExpressionLanguage; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; class ExpressionProcessor implements ImportRuleProcessorInterface { diff --git a/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php b/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php index 74acfe28..842b9b2f 100644 --- a/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php +++ b/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Action; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Action; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; interface ImportRuleProcessorInterface { diff --git a/src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php b/src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php index c823f45a..76ca8dbe 100644 --- a/src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php +++ b/src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Action; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Action; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; class ObjectProcessor implements ImportRuleProcessorInterface { diff --git a/src/DataDefinitionsBundle/Rules/Condition/AbstractConditionChecker.php b/src/DataDefinitionsBundle/Rules/Condition/AbstractConditionChecker.php index 753f306b..1e8f192b 100644 --- a/src/DataDefinitionsBundle/Rules/Condition/AbstractConditionChecker.php +++ b/src/DataDefinitionsBundle/Rules/Condition/AbstractConditionChecker.php @@ -8,20 +8,20 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Condition; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Condition; use CoreShop\Component\Resource\Model\ResourceInterface; use CoreShop\Component\Rule\Model\RuleInterface; use InvalidArgumentException; use Pimcore\Model\DataObject\Concrete; use Webmozart\Assert\Assert; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; abstract class AbstractConditionChecker implements ImportRuleConditionCheckerInterface { diff --git a/src/DataDefinitionsBundle/Rules/Condition/ExpressionConditionChecker.php b/src/DataDefinitionsBundle/Rules/Condition/ExpressionConditionChecker.php index f326e04c..01cf5f1f 100644 --- a/src/DataDefinitionsBundle/Rules/Condition/ExpressionConditionChecker.php +++ b/src/DataDefinitionsBundle/Rules/Condition/ExpressionConditionChecker.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Condition; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Condition; use Pimcore\Model\DataObject\Concrete; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\ExpressionLanguage\ExpressionLanguage; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; class ExpressionConditionChecker extends AbstractConditionChecker { diff --git a/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php b/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php index e1b4f58f..b97929f3 100644 --- a/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php +++ b/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Condition; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Condition; use CoreShop\Component\Rule\Condition\ConditionCheckerInterface; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; interface ImportRuleConditionCheckerInterface extends ConditionCheckerInterface { diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ExpressionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ExpressionType.php index 1612637c..4b8be669 100644 --- a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ExpressionType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ExpressionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\Action; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\Action; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php index 7c77635a..6954f963 100644 --- a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\Action; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\Action; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php index 94416b99..d0cbae85 100644 --- a/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type\Condition; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type\Condition; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php index 791594b7..402aa660 100755 --- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type; use CoreShop\Bundle\RuleBundle\Form\Type\RuleActionChoiceType; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionCollectionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionCollectionType.php index 0c393aae..e5ab8b9f 100755 --- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionCollectionType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionCollectionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type; use CoreShop\Bundle\RuleBundle\Form\Type\RuleActionCollectionType; use Symfony\Component\OptionsResolver\OptionsResolver; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionType.php index a91bed89..459aa251 100755 --- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type; use CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistryInterface; use CoreShop\Bundle\RuleBundle\Form\Type\RuleActionType; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php index c62a2887..36681d03 100755 --- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type; use CoreShop\Bundle\RuleBundle\Form\Type\RuleConditionChoiceType; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionCollectionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionCollectionType.php index f8a03aea..cd0f62af 100644 --- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionCollectionType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionCollectionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type; use CoreShop\Bundle\RuleBundle\Form\Type\RuleConditionCollectionType; use Symfony\Component\OptionsResolver\OptionsResolver; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionType.php index aca112f0..936dacee 100755 --- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type; use CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistryInterface; use CoreShop\Bundle\RuleBundle\Form\Type\RuleConditionType; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php index 905bc167..6e58bb58 100644 --- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type; use CoreShop\Bundle\RuleBundle\Form\Type\RuleType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php index 29b31ffc..084807f8 100644 --- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php +++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Form\Type; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\CollectionType; diff --git a/src/DataDefinitionsBundle/Rules/Model/ImportRule.php b/src/DataDefinitionsBundle/Rules/Model/ImportRule.php index e8fa3a01..e6647016 100644 --- a/src/DataDefinitionsBundle/Rules/Model/ImportRule.php +++ b/src/DataDefinitionsBundle/Rules/Model/ImportRule.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Model; use CoreShop\Component\Rule\Model\RuleTrait; diff --git a/src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php b/src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php index 7a0262e2..45d01391 100644 --- a/src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php +++ b/src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Model; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Model; use CoreShop\Component\Rule\Model\RuleInterface; diff --git a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessor.php b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessor.php index a8e1bf23..51e38a84 100644 --- a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessor.php +++ b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessor.php @@ -8,20 +8,20 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Processor; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Processor; use CoreShop\Component\Resource\Model\ResourceInterface; use CoreShop\Component\Rule\Condition\RuleConditionsValidationProcessorInterface; use CoreShop\Component\Rule\Model\RuleInterface; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; class ImportRuleValidationProcessor implements ImportRuleValidationProcessorInterface { diff --git a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php index edd348f1..da989245 100644 --- a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php +++ b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Processor; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Processor; use CoreShop\Component\Rule\Condition\RuleValidationProcessorInterface; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; interface ImportRuleValidationProcessorInterface extends RuleValidationProcessorInterface { diff --git a/src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php b/src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php index 24bf430d..d3aac222 100644 --- a/src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php +++ b/src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Processor; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Processor; use CoreShop\Component\Registry\ServiceRegistryInterface; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Action\ImportRuleProcessorInterface; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Action\ImportRuleProcessorInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; class RuleApplier implements RuleApplierInterface { diff --git a/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php b/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php index ce5247b2..47a97d82 100644 --- a/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php +++ b/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Rules\Processor; +namespace Instride\Bundle\DataDefinitionsBundle\Rules\Processor; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; +use Instride\Bundle\DataDefinitionsBundle\Rules\Model\ImportRuleInterface; interface RuleApplierInterface { diff --git a/src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php b/src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php index 781f987a..cbf59514 100644 --- a/src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php +++ b/src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Runner; +namespace Instride\Bundle\DataDefinitionsBundle\Runner; -use Wvision\Bundle\DataDefinitionsBundle\Context\RunnerContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\RunnerContextInterface; interface ExportRunnerInterface { diff --git a/src/DataDefinitionsBundle/Runner/ImportStartFinishRunnerInterface.php b/src/DataDefinitionsBundle/Runner/ImportStartFinishRunnerInterface.php index 27aa57b7..dacad9d3 100644 --- a/src/DataDefinitionsBundle/Runner/ImportStartFinishRunnerInterface.php +++ b/src/DataDefinitionsBundle/Runner/ImportStartFinishRunnerInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Runner; +namespace Instride\Bundle\DataDefinitionsBundle\Runner; -use Wvision\Bundle\DataDefinitionsBundle\Context\RunnerContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\RunnerContextInterface; interface ImportStartFinishRunnerInterface { diff --git a/src/DataDefinitionsBundle/Runner/RunnerInterface.php b/src/DataDefinitionsBundle/Runner/RunnerInterface.php index fdf44003..a29734ac 100644 --- a/src/DataDefinitionsBundle/Runner/RunnerInterface.php +++ b/src/DataDefinitionsBundle/Runner/RunnerInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Runner; +namespace Instride\Bundle\DataDefinitionsBundle\Runner; -use Wvision\Bundle\DataDefinitionsBundle\Context\RunnerContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\RunnerContextInterface; interface RunnerInterface { diff --git a/src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php b/src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php index 831716ee..dee95496 100644 --- a/src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php +++ b/src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Runner; +namespace Instride\Bundle\DataDefinitionsBundle\Runner; -use Wvision\Bundle\DataDefinitionsBundle\Context\RunnerContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\RunnerContextInterface; interface SaveRunnerInterface extends RunnerInterface { diff --git a/src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php b/src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php index d2e781bb..71a0fc13 100644 --- a/src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php +++ b/src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Runner; +namespace Instride\Bundle\DataDefinitionsBundle\Runner; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\MappingInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\MappingInterface; interface SetterRunnerInterface extends RunnerInterface { diff --git a/src/DataDefinitionsBundle/Service/FieldSelection.php b/src/DataDefinitionsBundle/Service/FieldSelection.php index 8ba08ff6..23ef134e 100644 --- a/src/DataDefinitionsBundle/Service/FieldSelection.php +++ b/src/DataDefinitionsBundle/Service/FieldSelection.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Service; +namespace Instride\Bundle\DataDefinitionsBundle\Service; use Pimcore\Model\DataObject; use Pimcore\Tool; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping\ToColumn; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping\ToColumn; class FieldSelection { diff --git a/src/DataDefinitionsBundle/Service/StorageLocator.php b/src/DataDefinitionsBundle/Service/StorageLocator.php index 851611c8..b60d3599 100644 --- a/src/DataDefinitionsBundle/Service/StorageLocator.php +++ b/src/DataDefinitionsBundle/Service/StorageLocator.php @@ -8,13 +8,13 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Service; +namespace Instride\Bundle\DataDefinitionsBundle\Service; use League\Flysystem\FilesystemOperator; use Psr\Container\ContainerInterface; diff --git a/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php b/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php index ca72a938..978fc67a 100644 --- a/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php +++ b/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; use Pimcore\Model\DataObject; use Pimcore\Model\DataObject\Classificationstore; use Pimcore\Tool; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; class ClassificationStoreFieldGetter implements GetterInterface { diff --git a/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php b/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php index 3559e18b..252c01d1 100644 --- a/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php +++ b/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php @@ -8,18 +8,18 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; use Pimcore\Model\DataObject\Classificationstore; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; class ClassificationStoreSetter implements SetterInterface, GetterInterface { diff --git a/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php b/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php index 84486df4..c21f79a4 100644 --- a/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php +++ b/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php @@ -8,21 +8,21 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Setter\CoreShop; use CoreShop\Component\Core\Model\StoreInterface; use CoreShop\Component\Store\Repository\StoreRepositoryInterface; use InvalidArgumentException; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Setter\SetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Setter\SetterInterface; use function is_array; class StorePriceSetter implements SetterInterface, GetterInterface diff --git a/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php b/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php index 66e605c4..27d0e3f0 100644 --- a/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php +++ b/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php @@ -8,21 +8,21 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter\CoreShop; +namespace Instride\Bundle\DataDefinitionsBundle\Setter\CoreShop; use CoreShop\Component\Core\Model\StoreInterface; use CoreShop\Component\Store\Repository\StoreRepositoryInterface; use InvalidArgumentException; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Setter\SetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Setter\SetterInterface; use function is_array; class StoreValuesSetter implements SetterInterface, GetterInterface diff --git a/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php b/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php index a626a370..7ed4bcda 100644 --- a/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php +++ b/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; use Pimcore\Model\DataObject\Fieldcollection; use Pimcore\Model\DataObject\Fieldcollection\Data\AbstractData as AbstractFieldCollection; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; class FieldCollectionSetter implements SetterInterface, GetterInterface { diff --git a/src/DataDefinitionsBundle/Setter/KeySetter.php b/src/DataDefinitionsBundle/Setter/KeySetter.php index 22d416e2..41d08cf0 100644 --- a/src/DataDefinitionsBundle/Setter/KeySetter.php +++ b/src/DataDefinitionsBundle/Setter/KeySetter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; use Pimcore\Model\DataObject; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; class KeySetter implements SetterInterface { diff --git a/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php b/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php index d1355e89..f91e4494 100644 --- a/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php +++ b/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; class LocalizedfieldSetter implements SetterInterface, GetterInterface { diff --git a/src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php b/src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php index 95335c52..b09b81ec 100644 --- a/src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php +++ b/src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; use Pimcore\Model\DataObject\Concrete; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; class ObjectTypeSetter implements SetterInterface { diff --git a/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php b/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php index 06d9028a..56850858 100644 --- a/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php +++ b/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php @@ -8,19 +8,19 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; use Pimcore\Model\DataObject\Objectbrick; use Pimcore\Model\DataObject\Objectbrick\Data\AbstractData; -use Wvision\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; -use Wvision\Bundle\DataDefinitionsBundle\Getter\GetterInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\GetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Getter\GetterInterface; class ObjectbrickSetter implements SetterInterface, GetterInterface { diff --git a/src/DataDefinitionsBundle/Setter/RelationSetter.php b/src/DataDefinitionsBundle/Setter/RelationSetter.php index 2cf943fb..98050a31 100644 --- a/src/DataDefinitionsBundle/Setter/RelationSetter.php +++ b/src/DataDefinitionsBundle/Setter/RelationSetter.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; class RelationSetter implements SetterInterface { diff --git a/src/DataDefinitionsBundle/Setter/SetterInterface.php b/src/DataDefinitionsBundle/Setter/SetterInterface.php index 9b19b17e..cf88b195 100644 --- a/src/DataDefinitionsBundle/Setter/SetterInterface.php +++ b/src/DataDefinitionsBundle/Setter/SetterInterface.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ declare(strict_types=1); -namespace Wvision\Bundle\DataDefinitionsBundle\Setter; +namespace Instride\Bundle\DataDefinitionsBundle\Setter; -use Wvision\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; +use Instride\Bundle\DataDefinitionsBundle\Context\SetterContextInterface; interface SetterInterface { diff --git a/src/Kernel.php b/src/Kernel.php index 4b84caec..0fbe448d 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -1,15 +1,16 @@ addBundle(new \Wvision\Bundle\DataDefinitionsBundle\DataDefinitionsBundle()); + $collection->addBundle(new \Instride\Bundle\DataDefinitionsBundle\DataDefinitionsBundle()); $collection->addBundle(new \FriendsOfBehat\SymfonyExtension\Bundle\FriendsOfBehatSymfonyExtensionBundle()); } public function boot(): void { parent::boot(); - + \Pimcore::setKernel($this); } } diff --git a/tests/DataDefinitionsBundle/Behat/Context/Domain/PimcoreContext.php b/tests/DataDefinitionsBundle/Behat/Context/Domain/PimcoreContext.php index 94a74ed1..2ab060ae 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Domain/PimcoreContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Domain/PimcoreContext.php @@ -8,14 +8,14 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Domain; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Domain; use Behat\Behat\Context\Context; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; use Pimcore\Model\DataObject; use Pimcore\Model\DataObject\ClassDefinition; use Webmozart\Assert\Assert; diff --git a/tests/DataDefinitionsBundle/Behat/Context/Hook/IMSetupContext.php b/tests/DataDefinitionsBundle/Behat/Context/Hook/IMSetupContext.php index 2709f863..dcca740b 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Hook/IMSetupContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Hook/IMSetupContext.php @@ -8,17 +8,17 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Hook; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Hook; use Behat\Behat\Context\Context; -use Wvision\Bundle\DataDefinitionsBundle\Installer; +use Instride\Bundle\DataDefinitionsBundle\Installer; use Pimcore\Db\PhpArrayFileTable; -use Wvision\Bundle\DataDefinitionsBundle\Model\ExportDefinition; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Model\ExportDefinition; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinition; final class IMSetupContext implements Context { diff --git a/tests/DataDefinitionsBundle/Behat/Context/Hook/PimcoreDaoContext.php b/tests/DataDefinitionsBundle/Behat/Context/Hook/PimcoreDaoContext.php index 5dd74b03..fae83dc9 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Hook/PimcoreDaoContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Hook/PimcoreDaoContext.php @@ -8,11 +8,11 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Hook; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Hook; use Behat\Behat\Context\Context; use Doctrine\DBAL\Connection; diff --git a/tests/DataDefinitionsBundle/Behat/Context/Hook/PimcoreSetupContext.php b/tests/DataDefinitionsBundle/Behat/Context/Hook/PimcoreSetupContext.php index fd524679..a1a7f457 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Hook/PimcoreSetupContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Hook/PimcoreSetupContext.php @@ -8,11 +8,11 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Hook; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Hook; use Behat\Behat\Context\Context; use Doctrine\DBAL\DriverManager; diff --git a/tests/DataDefinitionsBundle/Behat/Context/Setup/ImportDefinitionContext.php b/tests/DataDefinitionsBundle/Behat/Context/Setup/ImportDefinitionContext.php index 834f9d3e..866cd01e 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Setup/ImportDefinitionContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Setup/ImportDefinitionContext.php @@ -8,11 +8,11 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Setup; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Setup; use Behat\Behat\Context\Context; use Behat\Gherkin\Node\PyStringNode; @@ -20,10 +20,10 @@ use CoreShop\Bundle\ResourceBundle\Form\Registry\FormTypeRegistryInterface; use CoreShop\Bundle\ResourceBundle\Pimcore\ObjectManager; use CoreShop\Component\Resource\Factory\FactoryInterface; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; -use Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\ImportMapping; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\ImportMapping; use Pimcore\Model\DataObject\ClassDefinition; use Symfony\Component\Form\FormFactoryInterface; diff --git a/tests/DataDefinitionsBundle/Behat/Context/Setup/PimcoreAssetContext.php b/tests/DataDefinitionsBundle/Behat/Context/Setup/PimcoreAssetContext.php index 0592a951..62251a50 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Setup/PimcoreAssetContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Setup/PimcoreAssetContext.php @@ -8,14 +8,14 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Setup; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Setup; use Behat\Behat\Context\Context; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; use Pimcore\Model\Asset; use Symfony\Component\HttpKernel\KernelInterface; diff --git a/tests/DataDefinitionsBundle/Behat/Context/Setup/PimcoreClassContext.php b/tests/DataDefinitionsBundle/Behat/Context/Setup/PimcoreClassContext.php index bd92c194..6c1791ed 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Setup/PimcoreClassContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Setup/PimcoreClassContext.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Setup; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Setup; use Behat\Behat\Context\Context; use Behat\Gherkin\Node\TableNode; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\ClassStorageInterface; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\ClassStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; use CoreShop\Component\Pimcore\DataObject\BrickDefinitionUpdate; use CoreShop\Component\Pimcore\DataObject\ClassUpdate; use CoreShop\Component\Pimcore\DataObject\ClassUpdateInterface; diff --git a/tests/DataDefinitionsBundle/Behat/Context/Transform/ImportDefinitionContext.php b/tests/DataDefinitionsBundle/Behat/Context/Transform/ImportDefinitionContext.php index eb1c214b..905b990e 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Transform/ImportDefinitionContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Transform/ImportDefinitionContext.php @@ -8,16 +8,16 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Transform; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Transform; use Behat\Behat\Context\Context; use CoreShop\Component\Resource\Repository\PimcoreDaoRepositoryInterface; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; -use Wvision\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Model\DataDefinitionInterface; final class ImportDefinitionContext implements Context { diff --git a/tests/DataDefinitionsBundle/Behat/Context/Transform/PimcoreAssetContext.php b/tests/DataDefinitionsBundle/Behat/Context/Transform/PimcoreAssetContext.php index 7759716e..c12864a0 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Transform/PimcoreAssetContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Transform/PimcoreAssetContext.php @@ -8,14 +8,14 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Transform; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Transform; use Behat\Behat\Context\Context; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; use Pimcore\Model\Asset; final class PimcoreAssetContext implements Context diff --git a/tests/DataDefinitionsBundle/Behat/Context/Transform/PimcoreClassContext.php b/tests/DataDefinitionsBundle/Behat/Context/Transform/PimcoreClassContext.php index dce8bc31..ebf5e9a1 100644 --- a/tests/DataDefinitionsBundle/Behat/Context/Transform/PimcoreClassContext.php +++ b/tests/DataDefinitionsBundle/Behat/Context/Transform/PimcoreClassContext.php @@ -8,15 +8,15 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2016-2018 w-vision AG (https://www.w-vision.ch) - * @license https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3) + * @copyright 2024 instride AG (https://instride.ch) + * @license https://github.com/instride-ch/DataDefinitions/blob/5.0/gpl-3.0.txt GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Transform; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Context\Transform; use Behat\Behat\Context\Context; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\ClassStorageInterface; -use Wvision\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\ClassStorageInterface; +use Instride\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorageInterface; use Pimcore\Cache\RuntimeCache; use Pimcore\Model\DataObject; use Pimcore\Model\DataObject\ClassDefinition; diff --git a/tests/DataDefinitionsBundle/Behat/Resources/config/services.yml b/tests/DataDefinitionsBundle/Behat/Resources/config/services.yml index dc1a5f39..e8355c1b 100644 --- a/tests/DataDefinitionsBundle/Behat/Resources/config/services.yml +++ b/tests/DataDefinitionsBundle/Behat/Resources/config/services.yml @@ -3,13 +3,13 @@ imports: services: data_definitions.behat.shared_storage: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorage + class: Instride\Bundle\DataDefinitionsBundle\Behat\Service\SharedStorage data_definitions.behat.class_storage: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Service\ClassStorage + class: Instride\Bundle\DataDefinitionsBundle\Behat\Service\ClassStorage data_definitions.behat.filter.simple: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Service\Filter\SimpleFilter + class: Instride\Bundle\DataDefinitionsBundle\Behat\Service\Filter\SimpleFilter tags: - { name: data_definitions.filter, type: simple } - { name: fob.context_service } diff --git a/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/domain.yml b/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/domain.yml index 902bad60..0001d87b 100644 --- a/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/domain.yml +++ b/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/domain.yml @@ -3,7 +3,7 @@ services: public: true data_definitions.behat.context.domain.pimcore: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Domain\PimcoreContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Domain\PimcoreContext arguments: - '@data_definitions.behat.shared_storage' tags: diff --git a/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/hook.yml b/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/hook.yml index d11a7946..af0a441a 100644 --- a/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/hook.yml +++ b/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/hook.yml @@ -3,7 +3,7 @@ services: public: true data_definitions.behat.context.hook.pimcore_dao: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Hook\PimcoreDaoContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Hook\PimcoreDaoContext arguments: - '@doctrine.dbal.default_connection' - '@kernel' @@ -11,11 +11,11 @@ services: - { name: fob.context_service } data_definitions.behat.context.hook.pimcore_setup: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Hook\PimcoreSetupContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Hook\PimcoreSetupContext tags: - { name: fob.context_service } data_definitions.behat.context.hook.im_setup: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Hook\IMSetupContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Hook\IMSetupContext tags: - { name: fob.context_service } diff --git a/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/setup.yml b/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/setup.yml index d02898b3..7590ec35 100644 --- a/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/setup.yml +++ b/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/setup.yml @@ -3,7 +3,7 @@ services: public: true data_definitions.behat.context.setup.pimcore_class: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Setup\PimcoreClassContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Setup\PimcoreClassContext arguments: - '@data_definitions.behat.shared_storage' - '@data_definitions.behat.class_storage' @@ -11,12 +11,12 @@ services: - { name: fob.context_service } data_definitions.behat.context.setup.import_definition: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Setup\ImportDefinitionContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Setup\ImportDefinitionContext arguments: - '@data_definitions.behat.shared_storage' - '@data_definitions.factory.import_definition' - '@data_definitions.manager.import_definition' - - '@Wvision\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' + - '@Instride\Bundle\DataDefinitionsBundle\Importer\ImporterInterface' - '@form.factory' - '@data_definitions.form.registry.provider' - '@data_definitions.form.registry.interpreter' @@ -25,7 +25,7 @@ services: - { name: fob.context_service } data_definitions.behat.context.setup.pimcore_asset: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Setup\PimcoreAssetContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Setup\PimcoreAssetContext arguments: - '@data_definitions.behat.shared_storage' - '@kernel' diff --git a/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/transform.yml b/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/transform.yml index bf65e287..f9f518e0 100644 --- a/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/transform.yml +++ b/tests/DataDefinitionsBundle/Behat/Resources/config/services/contexts/transform.yml @@ -3,7 +3,7 @@ services: public: true data_definitions.behat.context.transform.pimcore_class: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Transform\PimcoreClassContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Transform\PimcoreClassContext arguments: - '@data_definitions.behat.shared_storage' - '@data_definitions.behat.class_storage' @@ -11,7 +11,7 @@ services: - { name: fob.context_service } data_definitions.behat.context.transform.import_definition: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Transform\ImportDefinitionContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Transform\ImportDefinitionContext arguments: - '@data_definitions.behat.shared_storage' - '@data_definitions.repository.import_definition' @@ -19,7 +19,7 @@ services: - { name: fob.context_service } data_definitions.behat.context.transform.pimcore_asset: - class: Wvision\Bundle\DataDefinitionsBundle\Behat\Context\Transform\PimcoreAssetContext + class: Instride\Bundle\DataDefinitionsBundle\Behat\Context\Transform\PimcoreAssetContext arguments: - '@data_definitions.behat.shared_storage' tags: diff --git a/tests/DataDefinitionsBundle/Behat/Service/ClassStorage.php b/tests/DataDefinitionsBundle/Behat/Service/ClassStorage.php index eaba0222..5e3a0f17 100644 --- a/tests/DataDefinitionsBundle/Behat/Service/ClassStorage.php +++ b/tests/DataDefinitionsBundle/Behat/Service/ClassStorage.php @@ -6,11 +6,11 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2015-2017 Dominik Pfaffenbauer (https://www.pfaffenbauer.at) + * @copyright 2024 instride AG (https://instride.ch) * @license https://www.coreshop.org/license GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Service; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Service; class ClassStorage implements ClassStorageInterface { diff --git a/tests/DataDefinitionsBundle/Behat/Service/ClassStorageInterface.php b/tests/DataDefinitionsBundle/Behat/Service/ClassStorageInterface.php index acad8908..20ec1f66 100644 --- a/tests/DataDefinitionsBundle/Behat/Service/ClassStorageInterface.php +++ b/tests/DataDefinitionsBundle/Behat/Service/ClassStorageInterface.php @@ -6,11 +6,11 @@ * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt * files that are distributed with this source code. * - * @copyright Copyright (c) 2015-2017 Dominik Pfaffenbauer (https://www.pfaffenbauer.at) + * @copyright 2024 instride AG (https://instride.ch) * @license https://www.coreshop.org/license GNU General Public License version 3 (GPLv3) */ -namespace Wvision\Bundle\DataDefinitionsBundle\Behat\Service; +namespace Instride\Bundle\DataDefinitionsBundle\Behat\Service; interface ClassStorageInterface { diff --git a/tests/DataDefinitionsBundle/Behat/Service/Filter/SimpleFilter.php b/tests/DataDefinitionsBundle/Behat/Service/Filter/SimpleFilter.php index c28eee64..1c86bc97 100644 --- a/tests/DataDefinitionsBundle/Behat/Service/Filter/SimpleFilter.php +++ b/tests/DataDefinitionsBundle/Behat/Service/Filter/SimpleFilter.php @@ -1,11 +1,11 @@