├── LICENCE ├── README.md ├── composer.json ├── include.php ├── install ├── db │ └── mysql │ │ ├── install.sql │ │ └── uninstall.sql ├── index.php ├── public │ ├── .htaccess │ └── config.xml └── version.php ├── lang └── ru │ ├── install │ └── index.php │ ├── lib │ ├── data │ │ ├── baseormdata.php │ │ ├── baseuserfield.php │ │ ├── baseuserfieldenum.php │ │ ├── link.php │ │ ├── module │ │ │ ├── advertising │ │ │ │ └── bannertype.php │ │ │ ├── bizproc │ │ │ │ └── workflowtemplate.php │ │ │ ├── catalog │ │ │ │ ├── extra.php │ │ │ │ ├── iblock.php │ │ │ │ ├── measure.php │ │ │ │ ├── pricetype.php │ │ │ │ ├── rounding.php │ │ │ │ └── store.php │ │ │ ├── form │ │ │ │ ├── answer.php │ │ │ │ ├── field.php │ │ │ │ └── form.php │ │ │ ├── highloadblock │ │ │ │ ├── field.php │ │ │ │ ├── highloadblock.php │ │ │ │ └── permission.php │ │ │ ├── iblock │ │ │ │ ├── adminlistfilter.php │ │ │ │ ├── adminlistoption.php │ │ │ │ ├── enum.php │ │ │ │ ├── field.php │ │ │ │ ├── form.php │ │ │ │ ├── iblock.php │ │ │ │ ├── permission.php │ │ │ │ ├── property.php │ │ │ │ └── type.php │ │ │ ├── lists │ │ │ │ └── url.php │ │ │ ├── main │ │ │ │ ├── agent.php │ │ │ │ ├── culture.php │ │ │ │ ├── event.php │ │ │ │ ├── eventtype.php │ │ │ │ ├── fileaccess.php │ │ │ │ ├── group.php │ │ │ │ ├── grouprights.php │ │ │ │ ├── language.php │ │ │ │ ├── site.php │ │ │ │ ├── sitetemplate.php │ │ │ │ └── task.php │ │ │ ├── perfmon │ │ │ │ └── index.php │ │ │ ├── sale │ │ │ │ ├── persontype.php │ │ │ │ ├── property.php │ │ │ │ ├── propertygroup.php │ │ │ │ ├── propertyvariant.php │ │ │ │ └── status.php │ │ │ └── workflow │ │ │ │ └── status.php │ │ ├── recordid.php │ │ └── value.php │ └── tool │ │ ├── console │ │ ├── application.php │ │ ├── command │ │ │ ├── autofixcommand.php │ │ │ ├── backup.php │ │ │ ├── basecommand.php │ │ │ ├── checkexeccommand.php │ │ │ ├── clearcachecommand.php │ │ │ ├── exportcommand.php │ │ │ ├── exportdatacommand.php │ │ │ ├── exportoptioncommand.php │ │ │ ├── generatecommand.php │ │ │ ├── importcommand.php │ │ │ ├── importdatacommand.php │ │ │ ├── importoptioncommand.php │ │ │ ├── importormcommand.php │ │ │ ├── importxmlidcommand.php │ │ │ ├── logcommand.php │ │ │ ├── reindexcommand.php │ │ │ ├── reindexfacetcommand.php │ │ │ ├── unittestcommand.php │ │ │ ├── unusedconfigcommand.php │ │ │ ├── urlrewritecommand.php │ │ │ ├── validatecommand.php │ │ │ ├── validatecomplexcommand.php │ │ │ └── warndeletecommand.php │ │ ├── formatter.php │ │ └── logger.php │ │ ├── datafileviewxml.php │ │ ├── eventhandlers │ │ ├── catalog.php │ │ └── sale.php │ │ ├── exceptiontext.php │ │ ├── optionfileviewxml.php │ │ ├── page.php │ │ └── xmlidvalidateerror.php │ └── tools │ └── run.php ├── lib ├── data │ ├── basedata.php │ ├── basedataobject.php │ ├── baseormdata.php │ ├── baseuserfield.php │ ├── baseuserfieldenum.php │ ├── link.php │ ├── module │ │ ├── advertising │ │ │ └── bannertype.php │ │ ├── bizproc │ │ │ └── workflowtemplate.php │ │ ├── catalog │ │ │ ├── extra.php │ │ │ ├── iblock.php │ │ │ ├── measure.php │ │ │ ├── pricetype.php │ │ │ ├── rounding.php │ │ │ └── store.php │ │ ├── form │ │ │ ├── answer.php │ │ │ ├── field.php │ │ │ └── form.php │ │ ├── highloadblock │ │ │ ├── field.php │ │ │ ├── fieldenum.php │ │ │ ├── highloadblock.php │ │ │ └── permission.php │ │ ├── iblock │ │ │ ├── adminlistfilter.php │ │ │ ├── adminlistoption.php │ │ │ ├── enum.php │ │ │ ├── field.php │ │ │ ├── fieldenum.php │ │ │ ├── form.php │ │ │ ├── iblock.php │ │ │ ├── permission.php │ │ │ ├── property.php │ │ │ └── type.php │ │ ├── lists │ │ │ └── url.php │ │ ├── main │ │ │ ├── agent.php │ │ │ ├── culture.php │ │ │ ├── event.php │ │ │ ├── eventtype.php │ │ │ ├── field.php │ │ │ ├── fieldenum.php │ │ │ ├── fileaccess.php │ │ │ ├── group.php │ │ │ ├── grouprights.php │ │ │ ├── language.php │ │ │ ├── site.php │ │ │ ├── sitetemplate.php │ │ │ └── task.php │ │ ├── perfmon │ │ │ └── index.php │ │ ├── sale │ │ │ ├── persontype.php │ │ │ ├── property.php │ │ │ ├── propertygroup.php │ │ │ ├── propertyvariant.php │ │ │ └── status.php │ │ └── workflow │ │ │ └── status.php │ ├── record.php │ ├── recordid.php │ ├── runtime.php │ └── value.php ├── orm │ └── lists │ │ └── url.php ├── tool │ ├── code.php │ ├── config.php │ ├── console │ │ ├── application.php │ │ ├── command │ │ │ ├── autofixcommand.php │ │ │ ├── backup.php │ │ │ ├── basecommand.php │ │ │ ├── checkexeccommand.php │ │ │ ├── cleandeletedxml.php │ │ │ ├── clearcachecommand.php │ │ │ ├── exportcommand.php │ │ │ ├── exportdatacommand.php │ │ │ ├── exportoptioncommand.php │ │ │ ├── generatecommand.php │ │ │ ├── importcommand.php │ │ │ ├── importdatacommand.php │ │ │ ├── importoptioncommand.php │ │ │ ├── importormcommand.php │ │ │ ├── importxmlidcommand.php │ │ │ ├── logcommand.php │ │ │ ├── reindexcommand.php │ │ │ ├── reindexfacetcommand.php │ │ │ ├── unittestcommand.php │ │ │ ├── unusedconfigcommand.php │ │ │ ├── urlrewritecommand.php │ │ │ ├── validatecommand.php │ │ │ ├── validatecomplexcommand.php │ │ │ └── warndeletecommand.php │ │ ├── formatter.php │ │ ├── logger.php │ │ └── tablehelper.php │ ├── datafileviewxml.php │ ├── datalist.php │ ├── datatree │ │ ├── builder.php │ │ ├── node.php │ │ └── tree.php │ ├── eventhandlers │ │ ├── catalog.php │ │ └── sale.php │ ├── exceptiontext.php │ ├── importlist.php │ ├── optionfileviewxml.php │ ├── orm │ │ ├── log.php │ │ ├── option.php │ │ └── workflow │ │ │ ├── status.php │ │ │ └── statusgroup.php │ ├── page.php │ ├── publiccache.php │ ├── xmlhelper.php │ ├── xmlidprovider │ │ ├── basexmlidprovider.php │ │ └── ormxmlidprovider.php │ └── xmlidvalidateerror.php └── utils │ ├── ormtablemigration.php │ └── usemigrations.php └── tools ├── create_session.php ├── run.php └── simplesign.php /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/composer.json -------------------------------------------------------------------------------- /include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/include.php -------------------------------------------------------------------------------- /install/db/mysql/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/install/db/mysql/install.sql -------------------------------------------------------------------------------- /install/db/mysql/uninstall.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS intervolga_migrato_log; -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/install/index.php -------------------------------------------------------------------------------- /install/public/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /install/public/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/install/public/config.xml -------------------------------------------------------------------------------- /install/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/install/version.php -------------------------------------------------------------------------------- /lang/ru/install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/install/index.php -------------------------------------------------------------------------------- /lang/ru/lib/data/baseormdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/data/baseormdata.php -------------------------------------------------------------------------------- /lang/ru/lib/data/baseuserfield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/data/baseuserfield.php -------------------------------------------------------------------------------- /lang/ru/lib/data/baseuserfieldenum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/data/baseuserfieldenum.php -------------------------------------------------------------------------------- /lang/ru/lib/data/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/data/link.php -------------------------------------------------------------------------------- /lang/ru/lib/data/module/advertising/bannertype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/data/module/advertising/bannertype.php -------------------------------------------------------------------------------- /lang/ru/lib/data/module/bizproc/workflowtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/data/module/bizproc/workflowtemplate.php -------------------------------------------------------------------------------- /lang/ru/lib/data/module/catalog/extra.php: -------------------------------------------------------------------------------- 1 | XML (данные и настройки)'; -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/exportdatacommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/exportdatacommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/exportoptioncommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/exportoptioncommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/generatecommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/generatecommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/importcommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/importcommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/importdatacommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/importdatacommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/importoptioncommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/importoptioncommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/importormcommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/importormcommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/importxmlidcommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/importxmlidcommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/logcommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/logcommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/reindexcommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intervolga/intervolga.migrato/HEAD/lang/ru/lib/tool/console/command/reindexcommand.php -------------------------------------------------------------------------------- /lang/ru/lib/tool/console/command/reindexfacetcommand.php: -------------------------------------------------------------------------------- 1 |