├── .backup ├── Subscriber.php ├── SyncCtoUpdater.php └── event_listeners.php ├── .gitignore ├── README.md ├── classes ├── ContentData.php ├── InterfaceSyncCtoStep.php ├── StepPool.php ├── SyncCtoAjax.php ├── SyncCtoCommunicationClient.php ├── SyncCtoContaoAutomator.php ├── SyncCtoDatabase.php ├── SyncCtoDatabaseUpdater.php ├── SyncCtoEnum.php ├── SyncCtoFiles.php ├── SyncCtoFilterIteratorBase.php ├── SyncCtoFilterIteratorFiles.php ├── SyncCtoFilterIteratorFolder.php ├── SyncCtoHelper.php ├── SyncCtoModuleBackup.php ├── SyncCtoModuleCheck.php ├── SyncCtoModuleClient.php ├── SyncCtoRPCFunctions.php ├── SyncCtoStats.php ├── SyncCtoTableSettings.php └── ZipArchiveCto.php ├── composer.json └── src ├── Contao ├── API.php ├── ScopeMatcher.php └── Table │ ├── Sync.php │ └── SyncCtoClients.php ├── ContaoManager └── Plugin.php ├── Controller ├── APopUpController.php ├── ApiController.php ├── ClientController.php ├── DatabasePopupController.php └── FilePopupController.php ├── Database └── Diff.php ├── DcGeneral ├── ActionHandler │ ├── BackupEditHandler.php │ └── SyncEditHandler.php ├── Dca │ └── Builder │ │ └── DataDefinitionBuilder.php └── Events │ ├── Backup │ ├── Database.php │ └── File.php │ ├── Base.php │ └── Sync │ ├── From.php │ └── To.php ├── DependencyInjection └── SyncCtoExtension.php ├── Helper ├── PathBuilder.php └── Ping.php ├── Migration └── DbMigration.php ├── Resources ├── config │ ├── listener.yml │ ├── routing.yml │ └── services.yml ├── contao │ ├── config │ │ └── config.php │ ├── dca │ │ ├── tl_syncCto_backup_db.php │ │ ├── tl_syncCto_backup_file.php │ │ ├── tl_syncCto_clients_showExtern.php │ │ ├── tl_syncCto_clients_syncFrom.php │ │ ├── tl_syncCto_clients_syncTo.php │ │ ├── tl_syncCto_restore_db.php │ │ ├── tl_syncCto_restore_file.php │ │ ├── tl_syncCto_settings.php │ │ ├── tl_syncCto_stats.php │ │ ├── tl_synccto_clients.php │ │ ├── tl_user.php │ │ └── tl_user_group.php │ ├── languages │ │ ├── de │ │ │ ├── default.php │ │ │ ├── explain.php │ │ │ ├── modules.php │ │ │ ├── tl_syncCto_backup.php │ │ │ ├── tl_syncCto_backup_db.php │ │ │ ├── tl_syncCto_backup_file.php │ │ │ ├── tl_syncCto_check.php │ │ │ ├── tl_syncCto_clients_showExtern.php │ │ │ ├── tl_syncCto_clients_syncFrom.php │ │ │ ├── tl_syncCto_clients_syncTo.php │ │ │ ├── tl_syncCto_database.php │ │ │ ├── tl_syncCto_restore_db.php │ │ │ ├── tl_syncCto_restore_file.php │ │ │ ├── tl_syncCto_settings.php │ │ │ ├── tl_syncCto_steps.php │ │ │ ├── tl_synccto_clients.php │ │ │ ├── tl_user.php │ │ │ └── tl_user_group.php │ │ ├── en │ │ │ ├── default.php │ │ │ ├── explain.php │ │ │ ├── modules.php │ │ │ ├── tl_syncCto_backup.php │ │ │ ├── tl_syncCto_backup_db.php │ │ │ ├── tl_syncCto_backup_file.php │ │ │ ├── tl_syncCto_check.php │ │ │ ├── tl_syncCto_clients_syncFrom.php │ │ │ ├── tl_syncCto_clients_syncTo.php │ │ │ ├── tl_syncCto_database.php │ │ │ ├── tl_syncCto_restore_db.php │ │ │ ├── tl_syncCto_restore_file.php │ │ │ ├── tl_syncCto_settings.php │ │ │ ├── tl_syncCto_steps.php │ │ │ ├── tl_synccto_clients.php │ │ │ ├── tl_user.php │ │ │ └── tl_user_group.php │ │ └── it │ │ │ ├── default.php │ │ │ ├── explain.php │ │ │ ├── modules.php │ │ │ ├── tl_syncCto_check.php │ │ │ ├── tl_syncCto_database.php │ │ │ ├── tl_syncCto_restore_db.php │ │ │ ├── tl_syncCto_restore_file.php │ │ │ ├── tl_syncCto_settings.php │ │ │ ├── tl_syncCto_steps.php │ │ │ └── tl_synccto_clients.php │ └── templates │ │ ├── be_syncCto_attention.html5 │ │ ├── be_syncCto_backup.html5 │ │ ├── be_syncCto_check.html5 │ │ ├── be_syncCto_database.html5 │ │ ├── be_syncCto_error.html5 │ │ ├── be_syncCto_files.html5 │ │ ├── be_syncCto_form.html5 │ │ ├── be_syncCto_legend.html5 │ │ ├── be_syncCto_popup.html5 │ │ └── be_syncCto_smallCheck.html5 ├── public │ ├── css │ │ ├── attention.css │ │ ├── compare.css │ │ ├── contao.css │ │ ├── legend.css │ │ ├── source │ │ │ ├── attention.css │ │ │ ├── compare.css │ │ │ ├── legend.css │ │ │ ├── steps.css │ │ │ └── systemcheck.css │ │ ├── steps.css │ │ └── systemcheck.css │ ├── images │ │ ├── js │ │ │ ├── blue.png │ │ │ ├── gray.png │ │ │ ├── green.png │ │ │ ├── orange.png │ │ │ ├── red.png │ │ │ └── sorting.png │ │ ├── nav │ │ │ ├── iconBackupDB.png │ │ │ ├── iconBackupFile.png │ │ │ ├── iconBackups.png │ │ │ ├── iconCheck.png │ │ │ ├── iconCheckDisabled.png │ │ │ ├── iconCheck_.png │ │ │ ├── iconClients.png │ │ │ ├── iconEditDisabled.gif │ │ │ ├── iconRestoreDB.png │ │ │ ├── iconRestoreFile.png │ │ │ ├── iconSettings.png │ │ │ ├── iconSyncDisabled.png │ │ │ ├── iconSyncFrom.png │ │ │ ├── iconSyncFrom_.png │ │ │ ├── iconSyncTo.png │ │ │ └── iconSyncTo_.png │ │ └── steps │ │ │ ├── iconError.gif │ │ │ ├── iconOk.gif │ │ │ ├── iconSkipped.gif │ │ │ ├── iconSyncFrom.png │ │ │ ├── iconSyncTo.png │ │ │ ├── iconWork.gif │ │ │ └── loader.gif │ ├── js │ │ ├── compare.js │ │ ├── htmltable.js │ │ ├── ping.js │ │ └── source │ │ │ ├── compare.js │ │ │ ├── htmltable_src.js │ │ │ └── ping.js │ └── logo.png └── views │ └── be_syncCto_steps.html.twig ├── Sync └── FileList │ ├── Base.php │ └── FilterIterator │ └── Base.php └── SyncCtoBundle.php /.backup/Subscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/.backup/Subscriber.php -------------------------------------------------------------------------------- /.backup/SyncCtoUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/.backup/SyncCtoUpdater.php -------------------------------------------------------------------------------- /.backup/event_listeners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/.backup/event_listeners.php -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/README.md -------------------------------------------------------------------------------- /classes/ContentData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/ContentData.php -------------------------------------------------------------------------------- /classes/InterfaceSyncCtoStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/InterfaceSyncCtoStep.php -------------------------------------------------------------------------------- /classes/StepPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/StepPool.php -------------------------------------------------------------------------------- /classes/SyncCtoAjax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoAjax.php -------------------------------------------------------------------------------- /classes/SyncCtoCommunicationClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoCommunicationClient.php -------------------------------------------------------------------------------- /classes/SyncCtoContaoAutomator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoContaoAutomator.php -------------------------------------------------------------------------------- /classes/SyncCtoDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoDatabase.php -------------------------------------------------------------------------------- /classes/SyncCtoDatabaseUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoDatabaseUpdater.php -------------------------------------------------------------------------------- /classes/SyncCtoEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoEnum.php -------------------------------------------------------------------------------- /classes/SyncCtoFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoFiles.php -------------------------------------------------------------------------------- /classes/SyncCtoFilterIteratorBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoFilterIteratorBase.php -------------------------------------------------------------------------------- /classes/SyncCtoFilterIteratorFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoFilterIteratorFiles.php -------------------------------------------------------------------------------- /classes/SyncCtoFilterIteratorFolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoFilterIteratorFolder.php -------------------------------------------------------------------------------- /classes/SyncCtoHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoHelper.php -------------------------------------------------------------------------------- /classes/SyncCtoModuleBackup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoModuleBackup.php -------------------------------------------------------------------------------- /classes/SyncCtoModuleCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoModuleCheck.php -------------------------------------------------------------------------------- /classes/SyncCtoModuleClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoModuleClient.php -------------------------------------------------------------------------------- /classes/SyncCtoRPCFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoRPCFunctions.php -------------------------------------------------------------------------------- /classes/SyncCtoStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoStats.php -------------------------------------------------------------------------------- /classes/SyncCtoTableSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/SyncCtoTableSettings.php -------------------------------------------------------------------------------- /classes/ZipArchiveCto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/classes/ZipArchiveCto.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/composer.json -------------------------------------------------------------------------------- /src/Contao/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Contao/API.php -------------------------------------------------------------------------------- /src/Contao/ScopeMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Contao/ScopeMatcher.php -------------------------------------------------------------------------------- /src/Contao/Table/Sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Contao/Table/Sync.php -------------------------------------------------------------------------------- /src/Contao/Table/SyncCtoClients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Contao/Table/SyncCtoClients.php -------------------------------------------------------------------------------- /src/ContaoManager/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/ContaoManager/Plugin.php -------------------------------------------------------------------------------- /src/Controller/APopUpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Controller/APopUpController.php -------------------------------------------------------------------------------- /src/Controller/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Controller/ApiController.php -------------------------------------------------------------------------------- /src/Controller/ClientController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Controller/ClientController.php -------------------------------------------------------------------------------- /src/Controller/DatabasePopupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Controller/DatabasePopupController.php -------------------------------------------------------------------------------- /src/Controller/FilePopupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Controller/FilePopupController.php -------------------------------------------------------------------------------- /src/Database/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Database/Diff.php -------------------------------------------------------------------------------- /src/DcGeneral/ActionHandler/BackupEditHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DcGeneral/ActionHandler/BackupEditHandler.php -------------------------------------------------------------------------------- /src/DcGeneral/ActionHandler/SyncEditHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DcGeneral/ActionHandler/SyncEditHandler.php -------------------------------------------------------------------------------- /src/DcGeneral/Dca/Builder/DataDefinitionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DcGeneral/Dca/Builder/DataDefinitionBuilder.php -------------------------------------------------------------------------------- /src/DcGeneral/Events/Backup/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DcGeneral/Events/Backup/Database.php -------------------------------------------------------------------------------- /src/DcGeneral/Events/Backup/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DcGeneral/Events/Backup/File.php -------------------------------------------------------------------------------- /src/DcGeneral/Events/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DcGeneral/Events/Base.php -------------------------------------------------------------------------------- /src/DcGeneral/Events/Sync/From.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DcGeneral/Events/Sync/From.php -------------------------------------------------------------------------------- /src/DcGeneral/Events/Sync/To.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DcGeneral/Events/Sync/To.php -------------------------------------------------------------------------------- /src/DependencyInjection/SyncCtoExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/DependencyInjection/SyncCtoExtension.php -------------------------------------------------------------------------------- /src/Helper/PathBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Helper/PathBuilder.php -------------------------------------------------------------------------------- /src/Helper/Ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Helper/Ping.php -------------------------------------------------------------------------------- /src/Migration/DbMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Migration/DbMigration.php -------------------------------------------------------------------------------- /src/Resources/config/listener.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/config/listener.yml -------------------------------------------------------------------------------- /src/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Resources/contao/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/config/config.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_backup_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_backup_db.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_backup_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_backup_file.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_clients_showExtern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_clients_showExtern.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_clients_syncFrom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_clients_syncFrom.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_clients_syncTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_clients_syncTo.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_restore_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_restore_db.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_restore_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_restore_file.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_settings.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_syncCto_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_syncCto_stats.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_synccto_clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_synccto_clients.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_user.php -------------------------------------------------------------------------------- /src/Resources/contao/dca/tl_user_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/dca/tl_user_group.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/default.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/explain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/explain.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/modules.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_backup.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_backup_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_backup_db.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_backup_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_backup_file.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_check.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_clients_showExtern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_clients_showExtern.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_clients_syncFrom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_clients_syncFrom.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_clients_syncTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_clients_syncTo.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_database.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_restore_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_restore_db.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_restore_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_restore_file.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_settings.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_syncCto_steps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_syncCto_steps.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_synccto_clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_synccto_clients.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_user.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/de/tl_user_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/de/tl_user_group.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/default.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/explain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/explain.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/modules.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_backup.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_backup_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_backup_db.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_backup_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_backup_file.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_check.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_clients_syncFrom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_clients_syncFrom.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_clients_syncTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_clients_syncTo.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_database.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_restore_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_restore_db.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_restore_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_restore_file.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_settings.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_syncCto_steps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_syncCto_steps.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_synccto_clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_synccto_clients.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_user.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/en/tl_user_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/en/tl_user_group.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/default.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/explain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/explain.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/modules.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/tl_syncCto_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/tl_syncCto_check.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/tl_syncCto_database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/tl_syncCto_database.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/tl_syncCto_restore_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/tl_syncCto_restore_db.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/tl_syncCto_restore_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/tl_syncCto_restore_file.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/tl_syncCto_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/tl_syncCto_settings.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/tl_syncCto_steps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/tl_syncCto_steps.php -------------------------------------------------------------------------------- /src/Resources/contao/languages/it/tl_synccto_clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/languages/it/tl_synccto_clients.php -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_attention.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_attention.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_backup.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_backup.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_check.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_check.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_database.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_database.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_error.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_error.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_files.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_files.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_form.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_form.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_legend.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_legend.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_popup.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_popup.html5 -------------------------------------------------------------------------------- /src/Resources/contao/templates/be_syncCto_smallCheck.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/contao/templates/be_syncCto_smallCheck.html5 -------------------------------------------------------------------------------- /src/Resources/public/css/attention.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/attention.css -------------------------------------------------------------------------------- /src/Resources/public/css/compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/compare.css -------------------------------------------------------------------------------- /src/Resources/public/css/contao.css: -------------------------------------------------------------------------------- 1 | #tl_buttons { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /src/Resources/public/css/legend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/legend.css -------------------------------------------------------------------------------- /src/Resources/public/css/source/attention.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/source/attention.css -------------------------------------------------------------------------------- /src/Resources/public/css/source/compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/source/compare.css -------------------------------------------------------------------------------- /src/Resources/public/css/source/legend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/source/legend.css -------------------------------------------------------------------------------- /src/Resources/public/css/source/steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/source/steps.css -------------------------------------------------------------------------------- /src/Resources/public/css/source/systemcheck.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/source/systemcheck.css -------------------------------------------------------------------------------- /src/Resources/public/css/steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/steps.css -------------------------------------------------------------------------------- /src/Resources/public/css/systemcheck.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/css/systemcheck.css -------------------------------------------------------------------------------- /src/Resources/public/images/js/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/js/blue.png -------------------------------------------------------------------------------- /src/Resources/public/images/js/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/js/gray.png -------------------------------------------------------------------------------- /src/Resources/public/images/js/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/js/green.png -------------------------------------------------------------------------------- /src/Resources/public/images/js/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/js/orange.png -------------------------------------------------------------------------------- /src/Resources/public/images/js/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/js/red.png -------------------------------------------------------------------------------- /src/Resources/public/images/js/sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/js/sorting.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconBackupDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconBackupDB.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconBackupFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconBackupFile.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconBackups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconBackups.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconCheck.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconCheckDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconCheckDisabled.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconCheck_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconCheck_.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconClients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconClients.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconEditDisabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconEditDisabled.gif -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconRestoreDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconRestoreDB.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconRestoreFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconRestoreFile.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconSettings.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconSyncDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconSyncDisabled.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconSyncFrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconSyncFrom.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconSyncFrom_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconSyncFrom_.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconSyncTo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconSyncTo.png -------------------------------------------------------------------------------- /src/Resources/public/images/nav/iconSyncTo_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/nav/iconSyncTo_.png -------------------------------------------------------------------------------- /src/Resources/public/images/steps/iconError.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/steps/iconError.gif -------------------------------------------------------------------------------- /src/Resources/public/images/steps/iconOk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/steps/iconOk.gif -------------------------------------------------------------------------------- /src/Resources/public/images/steps/iconSkipped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/steps/iconSkipped.gif -------------------------------------------------------------------------------- /src/Resources/public/images/steps/iconSyncFrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/steps/iconSyncFrom.png -------------------------------------------------------------------------------- /src/Resources/public/images/steps/iconSyncTo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/steps/iconSyncTo.png -------------------------------------------------------------------------------- /src/Resources/public/images/steps/iconWork.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/steps/iconWork.gif -------------------------------------------------------------------------------- /src/Resources/public/images/steps/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/images/steps/loader.gif -------------------------------------------------------------------------------- /src/Resources/public/js/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/js/compare.js -------------------------------------------------------------------------------- /src/Resources/public/js/htmltable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/js/htmltable.js -------------------------------------------------------------------------------- /src/Resources/public/js/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/js/ping.js -------------------------------------------------------------------------------- /src/Resources/public/js/source/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/js/source/compare.js -------------------------------------------------------------------------------- /src/Resources/public/js/source/htmltable_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/js/source/htmltable_src.js -------------------------------------------------------------------------------- /src/Resources/public/js/source/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/js/source/ping.js -------------------------------------------------------------------------------- /src/Resources/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/public/logo.png -------------------------------------------------------------------------------- /src/Resources/views/be_syncCto_steps.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Resources/views/be_syncCto_steps.html.twig -------------------------------------------------------------------------------- /src/Sync/FileList/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Sync/FileList/Base.php -------------------------------------------------------------------------------- /src/Sync/FileList/FilterIterator/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/Sync/FileList/FilterIterator/Base.php -------------------------------------------------------------------------------- /src/SyncCtoBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menatwork/syncCto/HEAD/src/SyncCtoBundle.php --------------------------------------------------------------------------------