├── .gitignore ├── .settings.php ├── LICENSE.txt ├── README.md ├── admin ├── assets │ ├── script.js │ ├── style.css │ ├── style.php │ └── version.php ├── fields │ ├── input_hidden.php │ ├── input_text.php │ ├── select.php │ ├── select_groups.php │ ├── select_groups_multiple.php │ ├── select_multiple.php │ └── textarea.php ├── includes │ ├── builder_form.php │ ├── builder_group.php │ ├── config_list.php │ ├── errors.php │ ├── help.php │ ├── interface.php │ ├── options.php │ └── version.php ├── menu.php ├── sprint_migrations.php └── steps │ ├── migration_create.php │ ├── migration_delete.php │ ├── migration_execute.php │ ├── migration_list.php │ ├── migration_mark.php │ ├── migration_settag.php │ ├── migration_status.php │ └── migration_transfer.php ├── commands-en.txt ├── commands.txt ├── composer.json ├── contributors.txt ├── description.ru ├── examples ├── Version20150520000001.php ├── Version20150520000002.php ├── Version20150520000003.php ├── Version20150520000004.php ├── Version20150520000005.php ├── Version20170213000006.php ├── Version20170213000007.php ├── Version20170213000008.php ├── Version20170213000009.php ├── Version20190606000011.php ├── Version20190606000012.php ├── Version20190606000013.php └── Version20250606000014.php ├── include.php ├── install ├── admin │ └── sprint_migrations.php ├── gadgets │ └── sprint.migration │ │ └── dashboard │ │ ├── .description.php │ │ ├── .parameters.php │ │ ├── includes │ │ ├── errors.php │ │ ├── interface.php │ │ └── style.php │ │ └── index.php ├── index.php └── version.php ├── lib ├── builder.php ├── builders │ ├── agentbuilder.php │ ├── blankbuilder.php │ ├── cachecleanerbuilder.php │ ├── eventbuilder.php │ ├── formbuilder.php │ ├── hlblockbuilder.php │ ├── hlblockelementsbuilder.php │ ├── iblockbuilder.php │ ├── iblockcategorybuilder.php │ ├── iblockdeletebuilder.php │ ├── iblockelementsbuilder.php │ ├── iblockpropertybuilder.php │ ├── markerbuilder.php │ ├── medialibelementsbuilder.php │ ├── optionbuilder.php │ ├── orderpropertiesbuilder.php │ ├── transferbuilder.php │ ├── usergroupbuilder.php │ ├── useroptionsbuilder.php │ └── usertypeentitiesbuilder.php ├── console.php ├── controller │ └── main.php ├── enum │ ├── eventsenum.php │ └── versionenum.php ├── exceptions │ ├── builderexception.php │ ├── consoleexception.php │ ├── helperexception.php │ ├── migrationexception.php │ ├── rebuildexception.php │ └── restartexception.php ├── exchange │ ├── exchangemanager.php │ ├── reader.php │ ├── restartablereader.php │ ├── restartablewriter.php │ ├── writer.php │ └── writertag.php ├── helper.php ├── helpermanager.php ├── helpers │ ├── agenthelper.php │ ├── deliveryservicehelper.php │ ├── eventhelper.php │ ├── formhelper.php │ ├── hlblockexchangehelper.php │ ├── hlblockhelper.php │ ├── iblockexchangehelper.php │ ├── iblockhelper.php │ ├── langhelper.php │ ├── medialibexchangehelper.php │ ├── medialibhelper.php │ ├── optionhelper.php │ ├── orderpropertieshelper.php │ ├── sitehelper.php │ ├── sqlhelper.php │ ├── taskhelper.php │ ├── texthelper.php │ ├── traits │ │ ├── hlblock │ │ │ ├── hlblockelementtrait.php │ │ │ ├── hlblockgrouptrait.php │ │ │ ├── hlblockpermissionstrait.php │ │ │ └── hlblocktrait.php │ │ ├── iblock │ │ │ ├── iblockelementtrait.php │ │ │ ├── iblockfieldtrait.php │ │ │ ├── iblockpermissionstrait.php │ │ │ ├── iblockpropertytrait.php │ │ │ ├── iblocksectiontrait.php │ │ │ ├── iblocktrait.php │ │ │ └── iblocktypetrait.php │ │ └── useroptions │ │ │ ├── hlblocktrait.php │ │ │ ├── iblocktrait.php │ │ │ ├── usergrouptrait.php │ │ │ └── usertrait.php │ ├── usergrouphelper.php │ ├── userhelper.php │ ├── useroptionshelper.php │ └── usertypeentityhelper.php ├── installer.php ├── interfaces │ ├── readerhelperinterface.php │ ├── restartableinterface.php │ └── writerhelperinterface.php ├── locale.php ├── module.php ├── out.php ├── storagemanager.php ├── symfonybundle │ ├── command │ │ └── consolecommand.php │ └── sprintmigrationbundle.php ├── tables │ ├── abstract.php │ ├── formgroup.php │ ├── option.php │ ├── smstemplatesite.php │ ├── storage.php │ └── version.php ├── traits │ ├── currentusertrait.php │ ├── helpermanagertrait.php │ ├── outtrait.php │ ├── restartabletrait.php │ └── versionconfigtrait.php ├── version.php ├── versionbuilder.php ├── versionconfig.php └── versionmanager.php ├── locale ├── en.php └── ru.php ├── options.php ├── templates ├── AgentExport.php ├── EventExport.php ├── FormExport.php ├── HlblockElementsExport.php ├── HlblockExport.php ├── IblockCategoryExport.php ├── IblockDelete.php ├── IblockElementsExport.php ├── IblockExport.php ├── IblockPropertyExport.php ├── MedialibElementsExport.php ├── OptionExport.php ├── OrderPropertiesExport.php ├── UserGroupExport.php ├── UserOptionsExport.php ├── UserTypeEntities.php └── version.php ├── tools └── migrate.php └── updater.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/.gitignore -------------------------------------------------------------------------------- /.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/.settings.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/README.md -------------------------------------------------------------------------------- /admin/assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/assets/script.js -------------------------------------------------------------------------------- /admin/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/assets/style.css -------------------------------------------------------------------------------- /admin/assets/style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/assets/style.php -------------------------------------------------------------------------------- /admin/assets/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/assets/version.php -------------------------------------------------------------------------------- /admin/fields/input_hidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/fields/input_hidden.php -------------------------------------------------------------------------------- /admin/fields/input_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/fields/input_text.php -------------------------------------------------------------------------------- /admin/fields/select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/fields/select.php -------------------------------------------------------------------------------- /admin/fields/select_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/fields/select_groups.php -------------------------------------------------------------------------------- /admin/fields/select_groups_multiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/fields/select_groups_multiple.php -------------------------------------------------------------------------------- /admin/fields/select_multiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/fields/select_multiple.php -------------------------------------------------------------------------------- /admin/fields/textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/fields/textarea.php -------------------------------------------------------------------------------- /admin/includes/builder_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/includes/builder_form.php -------------------------------------------------------------------------------- /admin/includes/builder_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/includes/builder_group.php -------------------------------------------------------------------------------- /admin/includes/config_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/includes/config_list.php -------------------------------------------------------------------------------- /admin/includes/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/includes/errors.php -------------------------------------------------------------------------------- /admin/includes/help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/includes/help.php -------------------------------------------------------------------------------- /admin/includes/interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/includes/interface.php -------------------------------------------------------------------------------- /admin/includes/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/includes/options.php -------------------------------------------------------------------------------- /admin/includes/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/includes/version.php -------------------------------------------------------------------------------- /admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/menu.php -------------------------------------------------------------------------------- /admin/sprint_migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/sprint_migrations.php -------------------------------------------------------------------------------- /admin/steps/migration_create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/steps/migration_create.php -------------------------------------------------------------------------------- /admin/steps/migration_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/steps/migration_delete.php -------------------------------------------------------------------------------- /admin/steps/migration_execute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/steps/migration_execute.php -------------------------------------------------------------------------------- /admin/steps/migration_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/steps/migration_list.php -------------------------------------------------------------------------------- /admin/steps/migration_mark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/steps/migration_mark.php -------------------------------------------------------------------------------- /admin/steps/migration_settag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/steps/migration_settag.php -------------------------------------------------------------------------------- /admin/steps/migration_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/steps/migration_status.php -------------------------------------------------------------------------------- /admin/steps/migration_transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/admin/steps/migration_transfer.php -------------------------------------------------------------------------------- /commands-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/commands-en.txt -------------------------------------------------------------------------------- /commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/commands.txt -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/composer.json -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/contributors.txt -------------------------------------------------------------------------------- /description.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/description.ru -------------------------------------------------------------------------------- /examples/Version20150520000001.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20150520000001.php -------------------------------------------------------------------------------- /examples/Version20150520000002.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20150520000002.php -------------------------------------------------------------------------------- /examples/Version20150520000003.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20150520000003.php -------------------------------------------------------------------------------- /examples/Version20150520000004.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20150520000004.php -------------------------------------------------------------------------------- /examples/Version20150520000005.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20150520000005.php -------------------------------------------------------------------------------- /examples/Version20170213000006.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20170213000006.php -------------------------------------------------------------------------------- /examples/Version20170213000007.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20170213000007.php -------------------------------------------------------------------------------- /examples/Version20170213000008.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20170213000008.php -------------------------------------------------------------------------------- /examples/Version20170213000009.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20170213000009.php -------------------------------------------------------------------------------- /examples/Version20190606000011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20190606000011.php -------------------------------------------------------------------------------- /examples/Version20190606000012.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20190606000012.php -------------------------------------------------------------------------------- /examples/Version20190606000013.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20190606000013.php -------------------------------------------------------------------------------- /examples/Version20250606000014.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/examples/Version20250606000014.php -------------------------------------------------------------------------------- /include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/include.php -------------------------------------------------------------------------------- /install/admin/sprint_migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/admin/sprint_migrations.php -------------------------------------------------------------------------------- /install/gadgets/sprint.migration/dashboard/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/gadgets/sprint.migration/dashboard/.description.php -------------------------------------------------------------------------------- /install/gadgets/sprint.migration/dashboard/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/gadgets/sprint.migration/dashboard/.parameters.php -------------------------------------------------------------------------------- /install/gadgets/sprint.migration/dashboard/includes/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/gadgets/sprint.migration/dashboard/includes/errors.php -------------------------------------------------------------------------------- /install/gadgets/sprint.migration/dashboard/includes/interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/gadgets/sprint.migration/dashboard/includes/interface.php -------------------------------------------------------------------------------- /install/gadgets/sprint.migration/dashboard/includes/style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/gadgets/sprint.migration/dashboard/includes/style.php -------------------------------------------------------------------------------- /install/gadgets/sprint.migration/dashboard/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/gadgets/sprint.migration/dashboard/index.php -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/index.php -------------------------------------------------------------------------------- /install/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/install/version.php -------------------------------------------------------------------------------- /lib/builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builder.php -------------------------------------------------------------------------------- /lib/builders/agentbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/agentbuilder.php -------------------------------------------------------------------------------- /lib/builders/blankbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/blankbuilder.php -------------------------------------------------------------------------------- /lib/builders/cachecleanerbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/cachecleanerbuilder.php -------------------------------------------------------------------------------- /lib/builders/eventbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/eventbuilder.php -------------------------------------------------------------------------------- /lib/builders/formbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/formbuilder.php -------------------------------------------------------------------------------- /lib/builders/hlblockbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/hlblockbuilder.php -------------------------------------------------------------------------------- /lib/builders/hlblockelementsbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/hlblockelementsbuilder.php -------------------------------------------------------------------------------- /lib/builders/iblockbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/iblockbuilder.php -------------------------------------------------------------------------------- /lib/builders/iblockcategorybuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/iblockcategorybuilder.php -------------------------------------------------------------------------------- /lib/builders/iblockdeletebuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/iblockdeletebuilder.php -------------------------------------------------------------------------------- /lib/builders/iblockelementsbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/iblockelementsbuilder.php -------------------------------------------------------------------------------- /lib/builders/iblockpropertybuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/iblockpropertybuilder.php -------------------------------------------------------------------------------- /lib/builders/markerbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/markerbuilder.php -------------------------------------------------------------------------------- /lib/builders/medialibelementsbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/medialibelementsbuilder.php -------------------------------------------------------------------------------- /lib/builders/optionbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/optionbuilder.php -------------------------------------------------------------------------------- /lib/builders/orderpropertiesbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/orderpropertiesbuilder.php -------------------------------------------------------------------------------- /lib/builders/transferbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/transferbuilder.php -------------------------------------------------------------------------------- /lib/builders/usergroupbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/usergroupbuilder.php -------------------------------------------------------------------------------- /lib/builders/useroptionsbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/useroptionsbuilder.php -------------------------------------------------------------------------------- /lib/builders/usertypeentitiesbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/builders/usertypeentitiesbuilder.php -------------------------------------------------------------------------------- /lib/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/console.php -------------------------------------------------------------------------------- /lib/controller/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/controller/main.php -------------------------------------------------------------------------------- /lib/enum/eventsenum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/enum/eventsenum.php -------------------------------------------------------------------------------- /lib/enum/versionenum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/enum/versionenum.php -------------------------------------------------------------------------------- /lib/exceptions/builderexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exceptions/builderexception.php -------------------------------------------------------------------------------- /lib/exceptions/consoleexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exceptions/consoleexception.php -------------------------------------------------------------------------------- /lib/exceptions/helperexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exceptions/helperexception.php -------------------------------------------------------------------------------- /lib/exceptions/migrationexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exceptions/migrationexception.php -------------------------------------------------------------------------------- /lib/exceptions/rebuildexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exceptions/rebuildexception.php -------------------------------------------------------------------------------- /lib/exceptions/restartexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exceptions/restartexception.php -------------------------------------------------------------------------------- /lib/exchange/exchangemanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exchange/exchangemanager.php -------------------------------------------------------------------------------- /lib/exchange/reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exchange/reader.php -------------------------------------------------------------------------------- /lib/exchange/restartablereader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exchange/restartablereader.php -------------------------------------------------------------------------------- /lib/exchange/restartablewriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exchange/restartablewriter.php -------------------------------------------------------------------------------- /lib/exchange/writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exchange/writer.php -------------------------------------------------------------------------------- /lib/exchange/writertag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/exchange/writertag.php -------------------------------------------------------------------------------- /lib/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helper.php -------------------------------------------------------------------------------- /lib/helpermanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpermanager.php -------------------------------------------------------------------------------- /lib/helpers/agenthelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/agenthelper.php -------------------------------------------------------------------------------- /lib/helpers/deliveryservicehelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/deliveryservicehelper.php -------------------------------------------------------------------------------- /lib/helpers/eventhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/eventhelper.php -------------------------------------------------------------------------------- /lib/helpers/formhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/formhelper.php -------------------------------------------------------------------------------- /lib/helpers/hlblockexchangehelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/hlblockexchangehelper.php -------------------------------------------------------------------------------- /lib/helpers/hlblockhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/hlblockhelper.php -------------------------------------------------------------------------------- /lib/helpers/iblockexchangehelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/iblockexchangehelper.php -------------------------------------------------------------------------------- /lib/helpers/iblockhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/iblockhelper.php -------------------------------------------------------------------------------- /lib/helpers/langhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/langhelper.php -------------------------------------------------------------------------------- /lib/helpers/medialibexchangehelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/medialibexchangehelper.php -------------------------------------------------------------------------------- /lib/helpers/medialibhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/medialibhelper.php -------------------------------------------------------------------------------- /lib/helpers/optionhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/optionhelper.php -------------------------------------------------------------------------------- /lib/helpers/orderpropertieshelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/orderpropertieshelper.php -------------------------------------------------------------------------------- /lib/helpers/sitehelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/sitehelper.php -------------------------------------------------------------------------------- /lib/helpers/sqlhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/sqlhelper.php -------------------------------------------------------------------------------- /lib/helpers/taskhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/taskhelper.php -------------------------------------------------------------------------------- /lib/helpers/texthelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/texthelper.php -------------------------------------------------------------------------------- /lib/helpers/traits/hlblock/hlblockelementtrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/hlblock/hlblockelementtrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/hlblock/hlblockgrouptrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/hlblock/hlblockgrouptrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/hlblock/hlblockpermissionstrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/hlblock/hlblockpermissionstrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/hlblock/hlblocktrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/hlblock/hlblocktrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/iblock/iblockelementtrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/iblock/iblockelementtrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/iblock/iblockfieldtrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/iblock/iblockfieldtrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/iblock/iblockpermissionstrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/iblock/iblockpermissionstrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/iblock/iblockpropertytrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/iblock/iblockpropertytrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/iblock/iblocksectiontrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/iblock/iblocksectiontrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/iblock/iblocktrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/iblock/iblocktrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/iblock/iblocktypetrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/iblock/iblocktypetrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/useroptions/hlblocktrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/useroptions/hlblocktrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/useroptions/iblocktrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/useroptions/iblocktrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/useroptions/usergrouptrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/useroptions/usergrouptrait.php -------------------------------------------------------------------------------- /lib/helpers/traits/useroptions/usertrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/traits/useroptions/usertrait.php -------------------------------------------------------------------------------- /lib/helpers/usergrouphelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/usergrouphelper.php -------------------------------------------------------------------------------- /lib/helpers/userhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/userhelper.php -------------------------------------------------------------------------------- /lib/helpers/useroptionshelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/useroptionshelper.php -------------------------------------------------------------------------------- /lib/helpers/usertypeentityhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/helpers/usertypeentityhelper.php -------------------------------------------------------------------------------- /lib/installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/installer.php -------------------------------------------------------------------------------- /lib/interfaces/readerhelperinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/interfaces/readerhelperinterface.php -------------------------------------------------------------------------------- /lib/interfaces/restartableinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/interfaces/restartableinterface.php -------------------------------------------------------------------------------- /lib/interfaces/writerhelperinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/interfaces/writerhelperinterface.php -------------------------------------------------------------------------------- /lib/locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/locale.php -------------------------------------------------------------------------------- /lib/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/module.php -------------------------------------------------------------------------------- /lib/out.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/out.php -------------------------------------------------------------------------------- /lib/storagemanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/storagemanager.php -------------------------------------------------------------------------------- /lib/symfonybundle/command/consolecommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/symfonybundle/command/consolecommand.php -------------------------------------------------------------------------------- /lib/symfonybundle/sprintmigrationbundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/symfonybundle/sprintmigrationbundle.php -------------------------------------------------------------------------------- /lib/tables/abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/tables/abstract.php -------------------------------------------------------------------------------- /lib/tables/formgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/tables/formgroup.php -------------------------------------------------------------------------------- /lib/tables/option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/tables/option.php -------------------------------------------------------------------------------- /lib/tables/smstemplatesite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/tables/smstemplatesite.php -------------------------------------------------------------------------------- /lib/tables/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/tables/storage.php -------------------------------------------------------------------------------- /lib/tables/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/tables/version.php -------------------------------------------------------------------------------- /lib/traits/currentusertrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/traits/currentusertrait.php -------------------------------------------------------------------------------- /lib/traits/helpermanagertrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/traits/helpermanagertrait.php -------------------------------------------------------------------------------- /lib/traits/outtrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/traits/outtrait.php -------------------------------------------------------------------------------- /lib/traits/restartabletrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/traits/restartabletrait.php -------------------------------------------------------------------------------- /lib/traits/versionconfigtrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/traits/versionconfigtrait.php -------------------------------------------------------------------------------- /lib/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/version.php -------------------------------------------------------------------------------- /lib/versionbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/versionbuilder.php -------------------------------------------------------------------------------- /lib/versionconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/versionconfig.php -------------------------------------------------------------------------------- /lib/versionmanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/lib/versionmanager.php -------------------------------------------------------------------------------- /locale/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/locale/en.php -------------------------------------------------------------------------------- /locale/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/locale/ru.php -------------------------------------------------------------------------------- /options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/options.php -------------------------------------------------------------------------------- /templates/AgentExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/AgentExport.php -------------------------------------------------------------------------------- /templates/EventExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/EventExport.php -------------------------------------------------------------------------------- /templates/FormExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/FormExport.php -------------------------------------------------------------------------------- /templates/HlblockElementsExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/HlblockElementsExport.php -------------------------------------------------------------------------------- /templates/HlblockExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/HlblockExport.php -------------------------------------------------------------------------------- /templates/IblockCategoryExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/IblockCategoryExport.php -------------------------------------------------------------------------------- /templates/IblockDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/IblockDelete.php -------------------------------------------------------------------------------- /templates/IblockElementsExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/IblockElementsExport.php -------------------------------------------------------------------------------- /templates/IblockExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/IblockExport.php -------------------------------------------------------------------------------- /templates/IblockPropertyExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/IblockPropertyExport.php -------------------------------------------------------------------------------- /templates/MedialibElementsExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/MedialibElementsExport.php -------------------------------------------------------------------------------- /templates/OptionExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/OptionExport.php -------------------------------------------------------------------------------- /templates/OrderPropertiesExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/OrderPropertiesExport.php -------------------------------------------------------------------------------- /templates/UserGroupExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/UserGroupExport.php -------------------------------------------------------------------------------- /templates/UserOptionsExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/UserOptionsExport.php -------------------------------------------------------------------------------- /templates/UserTypeEntities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/UserTypeEntities.php -------------------------------------------------------------------------------- /templates/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/templates/version.php -------------------------------------------------------------------------------- /tools/migrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/tools/migrate.php -------------------------------------------------------------------------------- /updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyryabin/sprint.migration/HEAD/updater.php --------------------------------------------------------------------------------