├── .php-cs-fixer.cache ├── .qodana-profile.xml ├── LICENSE.md ├── README.md ├── SECURITY.md ├── composer.json ├── doc ├── 01_Installation.md ├── 03_Configuration │ ├── 01_Data_Sources.md │ ├── 02_File_Formats.md │ ├── 03_Import_Preview.md │ ├── 04_Resolver_Settings.md │ ├── 05_Processing_Settings.md │ ├── 06_Mapping_Configuration │ │ ├── 02_Transformation_Pipeline.md │ │ ├── 03_Data_Target │ │ │ ├── 05_Classification_Store_Batch_Details.md │ │ │ └── README.md │ │ └── README.md │ ├── 07_Execution_Configuration.md │ └── README.md ├── 03_Upgrade.md ├── 04_Import_Execution_Details.md ├── 05_Import_Progress_and_Logging.md ├── 06_Extending │ ├── 01_Extend_Custom_Strategies.md │ ├── 03_Events.md │ └── README.md ├── 06_Troubleshooting_FAQ.md └── img │ ├── data_target_classification_store.png │ ├── data_target_classification_store_batch.png │ ├── data_target_classification_store_batch_date.png │ ├── data_target_classification_store_batch_decoding.png │ ├── data_target_classification_store_batch_quantityValue.png │ ├── data_target_classification_store_batch_simple.png │ ├── data_target_direct.png │ ├── datasource.png │ ├── datasource_asset.png │ ├── datasource_sql.png │ ├── execution.png │ ├── execution_cron.png │ ├── execution_manual.png │ ├── faq_execution_status.png │ ├── import_preview.png │ ├── logging.png │ ├── mapping.png │ ├── resolver_settings.png │ └── transformation_pipeline.png └── src ├── Cleanup ├── CleanupStrategyFactory.php ├── CleanupStrategyInterface.php ├── DeleteStrategy.php └── UnpublishStrategy.php ├── Command ├── CronExecutionCommand.php ├── DummyDataCommand.php ├── ParallelProcessQueueCommand.php ├── ParallelizationAbstractCommand.php ├── PrepareImportCommand.php └── SequentialProcessQueueCommand.php ├── Controller ├── ConfigDataObjectController.php ├── ConnectionController.php └── PushImportController.php ├── DataSource ├── Interpreter │ ├── AbstractInterpreter.php │ ├── CsvFileInterpreter.php │ ├── DeltaChecker │ │ └── DeltaChecker.php │ ├── InterpreterFactory.php │ ├── InterpreterInterface.php │ ├── JsonFileInterpreter.php │ ├── SqlFileInterpreter.php │ ├── XlsxFileInterpreter.php │ └── XmlFileInterpreter.php └── Loader │ ├── AssetLoader.php │ ├── DataLoaderFactory.php │ ├── DataLoaderInterface.php │ ├── HttpLoader.php │ ├── PushLoader.php │ ├── SftpLoader.php │ ├── SqlLoader.php │ └── UploadLoader.php ├── DependencyInjection ├── CompilerPass │ ├── CleanupStrategyConfigurationFactoryPass.php │ ├── InterpreterConfigurationFactoryPass.php │ ├── LoaderConfigurationFactoryPass.php │ ├── MappingConfigurationFactoryPass.php │ └── ResolverConfigurationFactoryPass.php ├── Configuration.php └── PimcoreDataImporterExtension.php ├── Event ├── DataObject │ ├── AbstractDataObjectImportEvent.php │ ├── PostSaveEvent.php │ ├── PreSaveEvent.php │ └── ProcessElementExceptionEvent.php └── PostPreparationEvent.php ├── EventListener ├── ConfigurationEventSubscriber.php └── DataImporterListener.php ├── Exception ├── ElementNotFoundException.php ├── InvalidConfigurationException.php ├── InvalidInputException.php └── QueueNotEmptyException.php ├── Installer.php ├── Maintenance └── RestartQueueWorkersTask.php ├── Mapping ├── DataTarget │ ├── Classificationstore.php │ ├── ClassificationstoreBatch.php │ ├── DataTargetInterface.php │ ├── Direct.php │ └── ManyToManyRelation.php ├── MappingConfiguration.php ├── MappingConfigurationFactory.php ├── Operator │ ├── AbstractOperator.php │ ├── Factory │ │ ├── AsArray.php │ │ ├── AsColor.php │ │ ├── AsCountries.php │ │ ├── AsGeobounds.php │ │ ├── AsGeopoint.php │ │ ├── AsGeopolygon.php │ │ ├── AsGeopolyline.php │ │ ├── Boolean.php │ │ ├── Date.php │ │ ├── Gallery.php │ │ ├── ImageAdvanced.php │ │ ├── InputQuantityValue.php │ │ ├── InputQuantityValueArray.php │ │ ├── Numeric.php │ │ ├── QuantityValue.php │ │ └── QuantityValueArray.php │ ├── GeopolyAbstractOperator.php │ ├── OperatorInterface.php │ └── Simple │ │ ├── Combine.php │ │ ├── ConditionalConversion.php │ │ ├── Explode.php │ │ ├── FlattenArray.php │ │ ├── HtmlDecode.php │ │ ├── ImportAsset.php │ │ ├── LoadAsset.php │ │ ├── LoadDataObject.php │ │ ├── ObjectField.php │ │ ├── ReduceArrayKeyValuePairs.php │ │ ├── StaticText.php │ │ ├── StringReplace.php │ │ └── Trim.php └── Type │ ├── ClassificationStoreDataTypeService.php │ └── TransformationDataTypeService.php ├── Messenger ├── DataImporterHandler.php └── DataImporterMessage.php ├── Migrations ├── Version20210305134111.php ├── Version20211110174732.php ├── Version20211201173215.php ├── Version20220304130000.php ├── Version20240715160305.php └── Version20251003105903.php ├── PimcoreDataImporterBundle.php ├── Preview ├── Model │ └── PreviewData.php └── PreviewService.php ├── Processing ├── ExecutionService.php ├── ImportPreparationService.php ├── ImportProcessingService.php └── Scheduler │ ├── CronScheduler.php │ ├── Exception │ └── InvalidScheduleException.php │ ├── JobScheduler.php │ ├── SchedulerFactory.php │ └── SchedulerInterface.php ├── Queue └── QueueService.php ├── Resolver ├── Factory │ ├── DataObjectFactory.php │ └── FactoryInterface.php ├── Load │ ├── AbstractLoad.php │ ├── AttributeStrategy.php │ ├── IdStrategy.php │ ├── LoadStrategyInterface.php │ ├── NotLoadStrategy.php │ └── PathStrategy.php ├── Location │ ├── DoNotCreateStrategy.php │ ├── FindOrCreateFolderStrategy.php │ ├── FindParentStrategy.php │ ├── LocationStrategyInterface.php │ ├── NoChangeStrategy.php │ └── StaticPathStrategy.php ├── Publish │ ├── AlwaysPublishStrategy.php │ ├── AttributeBasedStrategy.php │ ├── NoChangePublishNewStrategy.php │ ├── NoChangeUnpublishNewStrategy.php │ └── PublishStrategyInterface.php ├── Resolver.php └── ResolverFactory.php ├── Resources ├── config │ ├── doctrine_migrations.yml │ ├── pimcore │ │ ├── config.yml │ │ └── routing.yml │ ├── services.yml │ └── services │ │ └── mapping.yml ├── public │ ├── css │ │ └── icons.css │ └── js │ │ └── pimcore │ │ ├── adapter │ │ └── dataImporterDataObject.js │ │ ├── configuration │ │ ├── components │ │ │ ├── cleanup │ │ │ │ ├── delete.js │ │ │ │ └── unpublish.js │ │ │ ├── execution.js │ │ │ ├── importPreview.js │ │ │ ├── importSettings.js │ │ │ ├── interpreter │ │ │ │ ├── csv.js │ │ │ │ ├── json.js │ │ │ │ ├── sql.js │ │ │ │ ├── xlsx.js │ │ │ │ └── xml.js │ │ │ ├── loader │ │ │ │ ├── asset.js │ │ │ │ ├── http.js │ │ │ │ ├── push.js │ │ │ │ ├── sftp.js │ │ │ │ ├── sql.js │ │ │ │ └── upload.js │ │ │ ├── logTab.js │ │ │ ├── mapping │ │ │ │ ├── datatarget │ │ │ │ │ ├── classificationstore.js │ │ │ │ │ ├── classificationstoreBatch.js │ │ │ │ │ ├── direct.js │ │ │ │ │ └── manyToManyRelation.js │ │ │ │ ├── mappingConfiguration.js │ │ │ │ ├── mappingConfigurationItem.js │ │ │ │ ├── operator │ │ │ │ │ ├── abstractOperator.js │ │ │ │ │ ├── asArray.js │ │ │ │ │ ├── asColor.js │ │ │ │ │ ├── asCountries.js │ │ │ │ │ ├── asGeobounds.js │ │ │ │ │ ├── asGeopoint.js │ │ │ │ │ ├── asGeopolygon.js │ │ │ │ │ ├── asGeopolyline.js │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── combine.js │ │ │ │ │ ├── conditionalConversion.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── explode.js │ │ │ │ │ ├── flattenArray.js │ │ │ │ │ ├── gallery.js │ │ │ │ │ ├── htmlDecode.js │ │ │ │ │ ├── imageAdvanced.js │ │ │ │ │ ├── importAsset.js │ │ │ │ │ ├── inputQuantityValue.js │ │ │ │ │ ├── inputQuantityValueArray.js │ │ │ │ │ ├── loadAsset.js │ │ │ │ │ ├── loadDataObject.js │ │ │ │ │ ├── numeric.js │ │ │ │ │ ├── objectField.js │ │ │ │ │ ├── quantityValue.js │ │ │ │ │ ├── quantityValueArray.js │ │ │ │ │ ├── reduceArrayKeyValuePairs.js │ │ │ │ │ ├── staticText.js │ │ │ │ │ ├── stringReplace.js │ │ │ │ │ └── trim.js │ │ │ │ ├── tools │ │ │ │ │ └── classificationStoreKeySearchWindow.js │ │ │ │ └── transformationResultHandler.js │ │ │ └── resolver │ │ │ │ ├── load │ │ │ │ ├── attribute.js │ │ │ │ ├── id.js │ │ │ │ ├── notLoad.js │ │ │ │ └── path.js │ │ │ │ ├── location │ │ │ │ ├── doNotCreate.js │ │ │ │ ├── findOrCreateFolder.js │ │ │ │ ├── findParent.js │ │ │ │ ├── noChange.js │ │ │ │ └── staticPath.js │ │ │ │ └── publish │ │ │ │ ├── alwaysPublish.js │ │ │ │ ├── attributeBased.js │ │ │ │ ├── noChangePublishNew.js │ │ │ │ └── noChangeUnpublishNew.js │ │ ├── configEvents.js │ │ └── configItemDataObject.js │ │ └── helper │ │ ├── abstractOptionType.js │ │ └── ext_extensions.js └── translations │ ├── admin.ca.yml │ ├── admin.cs.yml │ ├── admin.de.yml │ ├── admin.en.yml │ ├── admin.es.yml │ ├── admin.fr.yml │ ├── admin.hu.yml │ ├── admin.it.yml │ ├── admin.nl.yml │ ├── admin.pl.yml │ ├── admin.pt_br.yml │ ├── admin.ro.yml │ ├── admin.sk.yml │ ├── admin.sv.yml │ ├── admin.th.yml │ └── admin.zh_Hans.yml ├── Settings ├── ConfigurationPreparationService.php └── SettingsAwareInterface.php └── Tool └── DataObjectLoader.php /.php-cs-fixer.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/.php-cs-fixer.cache -------------------------------------------------------------------------------- /.qodana-profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/.qodana-profile.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/composer.json -------------------------------------------------------------------------------- /doc/01_Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/01_Installation.md -------------------------------------------------------------------------------- /doc/03_Configuration/01_Data_Sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/01_Data_Sources.md -------------------------------------------------------------------------------- /doc/03_Configuration/02_File_Formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/02_File_Formats.md -------------------------------------------------------------------------------- /doc/03_Configuration/03_Import_Preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/03_Import_Preview.md -------------------------------------------------------------------------------- /doc/03_Configuration/04_Resolver_Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/04_Resolver_Settings.md -------------------------------------------------------------------------------- /doc/03_Configuration/05_Processing_Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/05_Processing_Settings.md -------------------------------------------------------------------------------- /doc/03_Configuration/06_Mapping_Configuration/02_Transformation_Pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/06_Mapping_Configuration/02_Transformation_Pipeline.md -------------------------------------------------------------------------------- /doc/03_Configuration/06_Mapping_Configuration/03_Data_Target/05_Classification_Store_Batch_Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/06_Mapping_Configuration/03_Data_Target/05_Classification_Store_Batch_Details.md -------------------------------------------------------------------------------- /doc/03_Configuration/06_Mapping_Configuration/03_Data_Target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/06_Mapping_Configuration/03_Data_Target/README.md -------------------------------------------------------------------------------- /doc/03_Configuration/06_Mapping_Configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/06_Mapping_Configuration/README.md -------------------------------------------------------------------------------- /doc/03_Configuration/07_Execution_Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/07_Execution_Configuration.md -------------------------------------------------------------------------------- /doc/03_Configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Configuration/README.md -------------------------------------------------------------------------------- /doc/03_Upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/03_Upgrade.md -------------------------------------------------------------------------------- /doc/04_Import_Execution_Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/04_Import_Execution_Details.md -------------------------------------------------------------------------------- /doc/05_Import_Progress_and_Logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/05_Import_Progress_and_Logging.md -------------------------------------------------------------------------------- /doc/06_Extending/01_Extend_Custom_Strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/06_Extending/01_Extend_Custom_Strategies.md -------------------------------------------------------------------------------- /doc/06_Extending/03_Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/06_Extending/03_Events.md -------------------------------------------------------------------------------- /doc/06_Extending/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/06_Extending/README.md -------------------------------------------------------------------------------- /doc/06_Troubleshooting_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/06_Troubleshooting_FAQ.md -------------------------------------------------------------------------------- /doc/img/data_target_classification_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/data_target_classification_store.png -------------------------------------------------------------------------------- /doc/img/data_target_classification_store_batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/data_target_classification_store_batch.png -------------------------------------------------------------------------------- /doc/img/data_target_classification_store_batch_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/data_target_classification_store_batch_date.png -------------------------------------------------------------------------------- /doc/img/data_target_classification_store_batch_decoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/data_target_classification_store_batch_decoding.png -------------------------------------------------------------------------------- /doc/img/data_target_classification_store_batch_quantityValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/data_target_classification_store_batch_quantityValue.png -------------------------------------------------------------------------------- /doc/img/data_target_classification_store_batch_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/data_target_classification_store_batch_simple.png -------------------------------------------------------------------------------- /doc/img/data_target_direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/data_target_direct.png -------------------------------------------------------------------------------- /doc/img/datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/datasource.png -------------------------------------------------------------------------------- /doc/img/datasource_asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/datasource_asset.png -------------------------------------------------------------------------------- /doc/img/datasource_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/datasource_sql.png -------------------------------------------------------------------------------- /doc/img/execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/execution.png -------------------------------------------------------------------------------- /doc/img/execution_cron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/execution_cron.png -------------------------------------------------------------------------------- /doc/img/execution_manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/execution_manual.png -------------------------------------------------------------------------------- /doc/img/faq_execution_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/faq_execution_status.png -------------------------------------------------------------------------------- /doc/img/import_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/import_preview.png -------------------------------------------------------------------------------- /doc/img/logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/logging.png -------------------------------------------------------------------------------- /doc/img/mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/mapping.png -------------------------------------------------------------------------------- /doc/img/resolver_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/resolver_settings.png -------------------------------------------------------------------------------- /doc/img/transformation_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/doc/img/transformation_pipeline.png -------------------------------------------------------------------------------- /src/Cleanup/CleanupStrategyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Cleanup/CleanupStrategyFactory.php -------------------------------------------------------------------------------- /src/Cleanup/CleanupStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Cleanup/CleanupStrategyInterface.php -------------------------------------------------------------------------------- /src/Cleanup/DeleteStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Cleanup/DeleteStrategy.php -------------------------------------------------------------------------------- /src/Cleanup/UnpublishStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Cleanup/UnpublishStrategy.php -------------------------------------------------------------------------------- /src/Command/CronExecutionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Command/CronExecutionCommand.php -------------------------------------------------------------------------------- /src/Command/DummyDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Command/DummyDataCommand.php -------------------------------------------------------------------------------- /src/Command/ParallelProcessQueueCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Command/ParallelProcessQueueCommand.php -------------------------------------------------------------------------------- /src/Command/ParallelizationAbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Command/ParallelizationAbstractCommand.php -------------------------------------------------------------------------------- /src/Command/PrepareImportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Command/PrepareImportCommand.php -------------------------------------------------------------------------------- /src/Command/SequentialProcessQueueCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Command/SequentialProcessQueueCommand.php -------------------------------------------------------------------------------- /src/Controller/ConfigDataObjectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Controller/ConfigDataObjectController.php -------------------------------------------------------------------------------- /src/Controller/ConnectionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Controller/ConnectionController.php -------------------------------------------------------------------------------- /src/Controller/PushImportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Controller/PushImportController.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/AbstractInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/AbstractInterpreter.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/CsvFileInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/CsvFileInterpreter.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/DeltaChecker/DeltaChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/DeltaChecker/DeltaChecker.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/InterpreterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/InterpreterFactory.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/InterpreterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/InterpreterInterface.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/JsonFileInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/JsonFileInterpreter.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/SqlFileInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/SqlFileInterpreter.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/XlsxFileInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/XlsxFileInterpreter.php -------------------------------------------------------------------------------- /src/DataSource/Interpreter/XmlFileInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Interpreter/XmlFileInterpreter.php -------------------------------------------------------------------------------- /src/DataSource/Loader/AssetLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Loader/AssetLoader.php -------------------------------------------------------------------------------- /src/DataSource/Loader/DataLoaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Loader/DataLoaderFactory.php -------------------------------------------------------------------------------- /src/DataSource/Loader/DataLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Loader/DataLoaderInterface.php -------------------------------------------------------------------------------- /src/DataSource/Loader/HttpLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Loader/HttpLoader.php -------------------------------------------------------------------------------- /src/DataSource/Loader/PushLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Loader/PushLoader.php -------------------------------------------------------------------------------- /src/DataSource/Loader/SftpLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Loader/SftpLoader.php -------------------------------------------------------------------------------- /src/DataSource/Loader/SqlLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Loader/SqlLoader.php -------------------------------------------------------------------------------- /src/DataSource/Loader/UploadLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DataSource/Loader/UploadLoader.php -------------------------------------------------------------------------------- /src/DependencyInjection/CompilerPass/CleanupStrategyConfigurationFactoryPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DependencyInjection/CompilerPass/CleanupStrategyConfigurationFactoryPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/CompilerPass/InterpreterConfigurationFactoryPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DependencyInjection/CompilerPass/InterpreterConfigurationFactoryPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/CompilerPass/LoaderConfigurationFactoryPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DependencyInjection/CompilerPass/LoaderConfigurationFactoryPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/CompilerPass/MappingConfigurationFactoryPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DependencyInjection/CompilerPass/MappingConfigurationFactoryPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/CompilerPass/ResolverConfigurationFactoryPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DependencyInjection/CompilerPass/ResolverConfigurationFactoryPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/PimcoreDataImporterExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/DependencyInjection/PimcoreDataImporterExtension.php -------------------------------------------------------------------------------- /src/Event/DataObject/AbstractDataObjectImportEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Event/DataObject/AbstractDataObjectImportEvent.php -------------------------------------------------------------------------------- /src/Event/DataObject/PostSaveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Event/DataObject/PostSaveEvent.php -------------------------------------------------------------------------------- /src/Event/DataObject/PreSaveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Event/DataObject/PreSaveEvent.php -------------------------------------------------------------------------------- /src/Event/DataObject/ProcessElementExceptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Event/DataObject/ProcessElementExceptionEvent.php -------------------------------------------------------------------------------- /src/Event/PostPreparationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Event/PostPreparationEvent.php -------------------------------------------------------------------------------- /src/EventListener/ConfigurationEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/EventListener/ConfigurationEventSubscriber.php -------------------------------------------------------------------------------- /src/EventListener/DataImporterListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/EventListener/DataImporterListener.php -------------------------------------------------------------------------------- /src/Exception/ElementNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Exception/ElementNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/InvalidConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Exception/InvalidConfigurationException.php -------------------------------------------------------------------------------- /src/Exception/InvalidInputException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Exception/InvalidInputException.php -------------------------------------------------------------------------------- /src/Exception/QueueNotEmptyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Exception/QueueNotEmptyException.php -------------------------------------------------------------------------------- /src/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Installer.php -------------------------------------------------------------------------------- /src/Maintenance/RestartQueueWorkersTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Maintenance/RestartQueueWorkersTask.php -------------------------------------------------------------------------------- /src/Mapping/DataTarget/Classificationstore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/DataTarget/Classificationstore.php -------------------------------------------------------------------------------- /src/Mapping/DataTarget/ClassificationstoreBatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/DataTarget/ClassificationstoreBatch.php -------------------------------------------------------------------------------- /src/Mapping/DataTarget/DataTargetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/DataTarget/DataTargetInterface.php -------------------------------------------------------------------------------- /src/Mapping/DataTarget/Direct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/DataTarget/Direct.php -------------------------------------------------------------------------------- /src/Mapping/DataTarget/ManyToManyRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/DataTarget/ManyToManyRelation.php -------------------------------------------------------------------------------- /src/Mapping/MappingConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/MappingConfiguration.php -------------------------------------------------------------------------------- /src/Mapping/MappingConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/MappingConfigurationFactory.php -------------------------------------------------------------------------------- /src/Mapping/Operator/AbstractOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/AbstractOperator.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/AsArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/AsArray.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/AsColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/AsColor.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/AsCountries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/AsCountries.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/AsGeobounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/AsGeobounds.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/AsGeopoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/AsGeopoint.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/AsGeopolygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/AsGeopolygon.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/AsGeopolyline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/AsGeopolyline.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/Boolean.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/Date.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/Gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/Gallery.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/ImageAdvanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/ImageAdvanced.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/InputQuantityValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/InputQuantityValue.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/InputQuantityValueArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/InputQuantityValueArray.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/Numeric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/Numeric.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/QuantityValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/QuantityValue.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Factory/QuantityValueArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Factory/QuantityValueArray.php -------------------------------------------------------------------------------- /src/Mapping/Operator/GeopolyAbstractOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/GeopolyAbstractOperator.php -------------------------------------------------------------------------------- /src/Mapping/Operator/OperatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/OperatorInterface.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/Combine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/Combine.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/ConditionalConversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/ConditionalConversion.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/Explode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/Explode.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/FlattenArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/FlattenArray.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/HtmlDecode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/HtmlDecode.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/ImportAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/ImportAsset.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/LoadAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/LoadAsset.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/LoadDataObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/LoadDataObject.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/ObjectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/ObjectField.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/ReduceArrayKeyValuePairs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/ReduceArrayKeyValuePairs.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/StaticText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/StaticText.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/StringReplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/StringReplace.php -------------------------------------------------------------------------------- /src/Mapping/Operator/Simple/Trim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Operator/Simple/Trim.php -------------------------------------------------------------------------------- /src/Mapping/Type/ClassificationStoreDataTypeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Type/ClassificationStoreDataTypeService.php -------------------------------------------------------------------------------- /src/Mapping/Type/TransformationDataTypeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Mapping/Type/TransformationDataTypeService.php -------------------------------------------------------------------------------- /src/Messenger/DataImporterHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Messenger/DataImporterHandler.php -------------------------------------------------------------------------------- /src/Messenger/DataImporterMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Messenger/DataImporterMessage.php -------------------------------------------------------------------------------- /src/Migrations/Version20210305134111.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Migrations/Version20210305134111.php -------------------------------------------------------------------------------- /src/Migrations/Version20211110174732.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Migrations/Version20211110174732.php -------------------------------------------------------------------------------- /src/Migrations/Version20211201173215.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Migrations/Version20211201173215.php -------------------------------------------------------------------------------- /src/Migrations/Version20220304130000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Migrations/Version20220304130000.php -------------------------------------------------------------------------------- /src/Migrations/Version20240715160305.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Migrations/Version20240715160305.php -------------------------------------------------------------------------------- /src/Migrations/Version20251003105903.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Migrations/Version20251003105903.php -------------------------------------------------------------------------------- /src/PimcoreDataImporterBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/PimcoreDataImporterBundle.php -------------------------------------------------------------------------------- /src/Preview/Model/PreviewData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Preview/Model/PreviewData.php -------------------------------------------------------------------------------- /src/Preview/PreviewService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Preview/PreviewService.php -------------------------------------------------------------------------------- /src/Processing/ExecutionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Processing/ExecutionService.php -------------------------------------------------------------------------------- /src/Processing/ImportPreparationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Processing/ImportPreparationService.php -------------------------------------------------------------------------------- /src/Processing/ImportProcessingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Processing/ImportProcessingService.php -------------------------------------------------------------------------------- /src/Processing/Scheduler/CronScheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Processing/Scheduler/CronScheduler.php -------------------------------------------------------------------------------- /src/Processing/Scheduler/Exception/InvalidScheduleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Processing/Scheduler/Exception/InvalidScheduleException.php -------------------------------------------------------------------------------- /src/Processing/Scheduler/JobScheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Processing/Scheduler/JobScheduler.php -------------------------------------------------------------------------------- /src/Processing/Scheduler/SchedulerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Processing/Scheduler/SchedulerFactory.php -------------------------------------------------------------------------------- /src/Processing/Scheduler/SchedulerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Processing/Scheduler/SchedulerInterface.php -------------------------------------------------------------------------------- /src/Queue/QueueService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Queue/QueueService.php -------------------------------------------------------------------------------- /src/Resolver/Factory/DataObjectFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Factory/DataObjectFactory.php -------------------------------------------------------------------------------- /src/Resolver/Factory/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Factory/FactoryInterface.php -------------------------------------------------------------------------------- /src/Resolver/Load/AbstractLoad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Load/AbstractLoad.php -------------------------------------------------------------------------------- /src/Resolver/Load/AttributeStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Load/AttributeStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Load/IdStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Load/IdStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Load/LoadStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Load/LoadStrategyInterface.php -------------------------------------------------------------------------------- /src/Resolver/Load/NotLoadStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Load/NotLoadStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Load/PathStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Load/PathStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Location/DoNotCreateStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Location/DoNotCreateStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Location/FindOrCreateFolderStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Location/FindOrCreateFolderStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Location/FindParentStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Location/FindParentStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Location/LocationStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Location/LocationStrategyInterface.php -------------------------------------------------------------------------------- /src/Resolver/Location/NoChangeStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Location/NoChangeStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Location/StaticPathStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Location/StaticPathStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Publish/AlwaysPublishStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Publish/AlwaysPublishStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Publish/AttributeBasedStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Publish/AttributeBasedStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Publish/NoChangePublishNewStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Publish/NoChangePublishNewStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Publish/NoChangeUnpublishNewStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Publish/NoChangeUnpublishNewStrategy.php -------------------------------------------------------------------------------- /src/Resolver/Publish/PublishStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Publish/PublishStrategyInterface.php -------------------------------------------------------------------------------- /src/Resolver/Resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/Resolver.php -------------------------------------------------------------------------------- /src/Resolver/ResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resolver/ResolverFactory.php -------------------------------------------------------------------------------- /src/Resources/config/doctrine_migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/config/doctrine_migrations.yml -------------------------------------------------------------------------------- /src/Resources/config/pimcore/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/config/pimcore/config.yml -------------------------------------------------------------------------------- /src/Resources/config/pimcore/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/config/pimcore/routing.yml -------------------------------------------------------------------------------- /src/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Resources/config/services/mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/config/services/mapping.yml -------------------------------------------------------------------------------- /src/Resources/public/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/css/icons.css -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/adapter/dataImporterDataObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/adapter/dataImporterDataObject.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/cleanup/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/cleanup/delete.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/cleanup/unpublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/cleanup/unpublish.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/execution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/execution.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/importPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/importPreview.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/importSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/importSettings.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/interpreter/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/interpreter/csv.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/interpreter/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/interpreter/json.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/interpreter/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/interpreter/sql.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/interpreter/xlsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/interpreter/xlsx.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/interpreter/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/interpreter/xml.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/loader/asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/loader/asset.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/loader/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/loader/http.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/loader/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/loader/push.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/loader/sftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/loader/sftp.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/loader/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/loader/sql.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/loader/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/loader/upload.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/logTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/logTab.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/datatarget/classificationstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/datatarget/classificationstore.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/datatarget/classificationstoreBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/datatarget/classificationstoreBatch.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/datatarget/direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/datatarget/direct.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/datatarget/manyToManyRelation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/datatarget/manyToManyRelation.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/mappingConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/mappingConfiguration.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/mappingConfigurationItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/mappingConfigurationItem.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/abstractOperator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/abstractOperator.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/asArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/asArray.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/asColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/asColor.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/asCountries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/asCountries.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/asGeobounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/asGeobounds.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/asGeopoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/asGeopoint.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/asGeopolygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/asGeopolygon.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/asGeopolyline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/asGeopolyline.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/boolean.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/combine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/combine.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/conditionalConversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/conditionalConversion.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/date.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/explode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/explode.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/flattenArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/flattenArray.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/gallery.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/htmlDecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/htmlDecode.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/imageAdvanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/imageAdvanced.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/importAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/importAsset.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/inputQuantityValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/inputQuantityValue.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/inputQuantityValueArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/inputQuantityValueArray.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/loadAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/loadAsset.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/loadDataObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/loadDataObject.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/numeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/numeric.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/objectField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/objectField.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/quantityValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/quantityValue.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/quantityValueArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/quantityValueArray.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/reduceArrayKeyValuePairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/reduceArrayKeyValuePairs.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/staticText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/staticText.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/stringReplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/stringReplace.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/operator/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/operator/trim.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/tools/classificationStoreKeySearchWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/tools/classificationStoreKeySearchWindow.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/mapping/transformationResultHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/mapping/transformationResultHandler.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/load/attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/load/attribute.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/load/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/load/id.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/load/notLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/load/notLoad.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/load/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/load/path.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/location/doNotCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/location/doNotCreate.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/location/findOrCreateFolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/location/findOrCreateFolder.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/location/findParent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/location/findParent.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/location/noChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/location/noChange.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/location/staticPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/location/staticPath.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/publish/alwaysPublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/publish/alwaysPublish.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/publish/attributeBased.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/publish/attributeBased.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/publish/noChangePublishNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/publish/noChangePublishNew.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/components/resolver/publish/noChangeUnpublishNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/components/resolver/publish/noChangeUnpublishNew.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/configEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/configEvents.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/configuration/configItemDataObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/configuration/configItemDataObject.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/helper/abstractOptionType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/helper/abstractOptionType.js -------------------------------------------------------------------------------- /src/Resources/public/js/pimcore/helper/ext_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/public/js/pimcore/helper/ext_extensions.js -------------------------------------------------------------------------------- /src/Resources/translations/admin.ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.ca.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.cs.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.de.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.en.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.es.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.fr.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.hu.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.it.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.nl.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.pl.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.pt_br.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.pt_br.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.ro.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.sk.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.sv.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.th.yml -------------------------------------------------------------------------------- /src/Resources/translations/admin.zh_Hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Resources/translations/admin.zh_Hans.yml -------------------------------------------------------------------------------- /src/Settings/ConfigurationPreparationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Settings/ConfigurationPreparationService.php -------------------------------------------------------------------------------- /src/Settings/SettingsAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Settings/SettingsAwareInterface.php -------------------------------------------------------------------------------- /src/Tool/DataObjectLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/data-importer/HEAD/src/Tool/DataObjectLoader.php --------------------------------------------------------------------------------