diff --git a/.env-dev b/.env-dev index 82fcbee..fc11642 100644 --- a/.env-dev +++ b/.env-dev @@ -1,4 +1,4 @@ URL_INTERNAL=0.0.0.0 -URL_EXTERNAL=http://192.168.0.101 +URL_CMS=http://192.168.0.101 PORT_APP=3003 -PORT_SERVER=3004 +PORT_CMS=3004 diff --git a/.env-production b/.env-production index b467ba2..15dcb40 100644 --- a/.env-production +++ b/.env-production @@ -1,4 +1,4 @@ URL_INTERNAL=127.0.0.1 -URL_EXTERNAL=https://cms.marcleopold.isnet.uk +URL_CMS=https://cms.marcleopold.isnet.uk PORT_APP=3003 -PORT_SERVER=3004 +PORT_CMS=3004 diff --git a/.gitignore b/.gitignore index 2450e1c..098c1ae 100644 --- a/.gitignore +++ b/.gitignore @@ -81,4 +81,6 @@ dist .idea Session.vim *.un~ -server/storage/database.sqlite +cms/storage/database.sqlite +cms/storage +*.swp diff --git a/app/nuxt.config.js b/app/nuxt.config.js index 30fde13..d3ac527 100644 --- a/app/nuxt.config.js +++ b/app/nuxt.config.js @@ -81,12 +81,12 @@ module.exports = { '@nuxtjs/proxy', ['@nuxtjs/dotenv', { path: '../', - systemvars: true, + systemvars: false, only: [ 'URL_INTERNAL', - 'URL_EXTERNAL', + 'URL_CMS', 'PORT_APP', - 'PORT_SERVER', + 'PORT_CMS', ], }] ], @@ -101,14 +101,14 @@ module.exports = { axios: { // See https://github.com/nuxt-community/axios-module#options proxy: true, - // baseURL: 'http://' + process.env.URL_EXTERNAL + ':' + process.env.PORT_APP, - baseURL: process.env.URL_EXTERNAL, + baseURL: process.env.URL_CMS, browserBaseURL: 'https://marcleopold.isnet.uk', debug: true, }, proxy: { '/api/v1/': 'https://cms.marcleopold.isnet.uk', + // '/api/v1/': process.env.URL_CMS, }, /* diff --git a/server/.gitignore b/cms/.gitignore similarity index 100% rename from server/.gitignore rename to cms/.gitignore diff --git a/server/Dockerfile b/cms/Dockerfile similarity index 100% rename from server/Dockerfile rename to cms/Dockerfile diff --git a/server/README.md b/cms/README.md similarity index 100% rename from server/README.md rename to cms/README.md diff --git a/server/docker-compose.yml b/cms/docker-compose.yml similarity index 100% rename from server/docker-compose.yml rename to cms/docker-compose.yml diff --git a/server/package.json b/cms/package.json similarity index 100% rename from server/package.json rename to cms/package.json diff --git a/server/plugins/graker/photoalbums/LICENSE b/cms/plugins/graker/photoalbums/LICENSE similarity index 100% rename from server/plugins/graker/photoalbums/LICENSE rename to cms/plugins/graker/photoalbums/LICENSE diff --git a/server/plugins/graker/photoalbums/Plugin.php b/cms/plugins/graker/photoalbums/Plugin.php similarity index 100% rename from server/plugins/graker/photoalbums/Plugin.php rename to cms/plugins/graker/photoalbums/Plugin.php diff --git a/server/plugins/graker/photoalbums/README.md b/cms/plugins/graker/photoalbums/README.md similarity index 100% rename from server/plugins/graker/photoalbums/README.md rename to cms/plugins/graker/photoalbums/README.md diff --git a/server/plugins/graker/photoalbums/assets/css/dropzone.css b/cms/plugins/graker/photoalbums/assets/css/dropzone.css similarity index 100% rename from server/plugins/graker/photoalbums/assets/css/dropzone.css rename to cms/plugins/graker/photoalbums/assets/css/dropzone.css diff --git a/server/plugins/graker/photoalbums/assets/js/extend-markdown-editor.js b/cms/plugins/graker/photoalbums/assets/js/extend-markdown-editor.js similarity index 100% rename from server/plugins/graker/photoalbums/assets/js/extend-markdown-editor.js rename to cms/plugins/graker/photoalbums/assets/js/extend-markdown-editor.js diff --git a/server/plugins/graker/photoalbums/assets/js/upload.js b/cms/plugins/graker/photoalbums/assets/js/upload.js similarity index 100% rename from server/plugins/graker/photoalbums/assets/js/upload.js rename to cms/plugins/graker/photoalbums/assets/js/upload.js diff --git a/server/plugins/graker/photoalbums/classes/MarkdownPhotoInsert.php b/cms/plugins/graker/photoalbums/classes/MarkdownPhotoInsert.php similarity index 100% rename from server/plugins/graker/photoalbums/classes/MarkdownPhotoInsert.php rename to cms/plugins/graker/photoalbums/classes/MarkdownPhotoInsert.php diff --git a/server/plugins/graker/photoalbums/classes/MenuItemsProvider.php b/cms/plugins/graker/photoalbums/classes/MenuItemsProvider.php similarity index 100% rename from server/plugins/graker/photoalbums/classes/MenuItemsProvider.php rename to cms/plugins/graker/photoalbums/classes/MenuItemsProvider.php diff --git a/server/plugins/graker/photoalbums/components/Album.php b/cms/plugins/graker/photoalbums/components/Album.php similarity index 100% rename from server/plugins/graker/photoalbums/components/Album.php rename to cms/plugins/graker/photoalbums/components/Album.php diff --git a/server/plugins/graker/photoalbums/components/AlbumList.php b/cms/plugins/graker/photoalbums/components/AlbumList.php similarity index 100% rename from server/plugins/graker/photoalbums/components/AlbumList.php rename to cms/plugins/graker/photoalbums/components/AlbumList.php diff --git a/server/plugins/graker/photoalbums/components/Photo.php b/cms/plugins/graker/photoalbums/components/Photo.php similarity index 100% rename from server/plugins/graker/photoalbums/components/Photo.php rename to cms/plugins/graker/photoalbums/components/Photo.php diff --git a/server/plugins/graker/photoalbums/components/RandomPhotos.php b/cms/plugins/graker/photoalbums/components/RandomPhotos.php similarity index 100% rename from server/plugins/graker/photoalbums/components/RandomPhotos.php rename to cms/plugins/graker/photoalbums/components/RandomPhotos.php diff --git a/server/plugins/graker/photoalbums/components/album/default.htm b/cms/plugins/graker/photoalbums/components/album/default.htm similarity index 100% rename from server/plugins/graker/photoalbums/components/album/default.htm rename to cms/plugins/graker/photoalbums/components/album/default.htm diff --git a/server/plugins/graker/photoalbums/components/albumlist/default.htm b/cms/plugins/graker/photoalbums/components/albumlist/default.htm similarity index 100% rename from server/plugins/graker/photoalbums/components/albumlist/default.htm rename to cms/plugins/graker/photoalbums/components/albumlist/default.htm diff --git a/server/plugins/graker/photoalbums/components/photo/default.htm b/cms/plugins/graker/photoalbums/components/photo/default.htm similarity index 100% rename from server/plugins/graker/photoalbums/components/photo/default.htm rename to cms/plugins/graker/photoalbums/components/photo/default.htm diff --git a/server/plugins/graker/photoalbums/components/randomphotos/default.htm b/cms/plugins/graker/photoalbums/components/randomphotos/default.htm similarity index 100% rename from server/plugins/graker/photoalbums/components/randomphotos/default.htm rename to cms/plugins/graker/photoalbums/components/randomphotos/default.htm diff --git a/server/plugins/graker/photoalbums/controllers/Albums.php b/cms/plugins/graker/photoalbums/controllers/Albums.php similarity index 100% rename from server/plugins/graker/photoalbums/controllers/Albums.php rename to cms/plugins/graker/photoalbums/controllers/Albums.php diff --git a/server/plugins/graker/photoalbums/controllers/Photos.php b/cms/plugins/graker/photoalbums/controllers/Photos.php similarity index 100% rename from server/plugins/graker/photoalbums/controllers/Photos.php rename to cms/plugins/graker/photoalbums/controllers/Photos.php diff --git a/server/plugins/graker/photoalbums/controllers/Reorder.php b/cms/plugins/graker/photoalbums/controllers/Reorder.php similarity index 100% rename from server/plugins/graker/photoalbums/controllers/Reorder.php rename to cms/plugins/graker/photoalbums/controllers/Reorder.php diff --git a/server/plugins/graker/photoalbums/controllers/Upload.php b/cms/plugins/graker/photoalbums/controllers/Upload.php similarity index 100% rename from server/plugins/graker/photoalbums/controllers/Upload.php rename to cms/plugins/graker/photoalbums/controllers/Upload.php diff --git a/server/plugins/graker/photoalbums/controllers/albums/_list_toolbar.htm b/cms/plugins/graker/photoalbums/controllers/albums/_list_toolbar.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/_list_toolbar.htm rename to cms/plugins/graker/photoalbums/controllers/albums/_list_toolbar.htm diff --git a/server/plugins/graker/photoalbums/controllers/albums/_relation_toolbar.htm b/cms/plugins/graker/photoalbums/controllers/albums/_relation_toolbar.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/_relation_toolbar.htm rename to cms/plugins/graker/photoalbums/controllers/albums/_relation_toolbar.htm diff --git a/server/plugins/graker/photoalbums/controllers/albums/config_form.yaml b/cms/plugins/graker/photoalbums/controllers/albums/config_form.yaml similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/config_form.yaml rename to cms/plugins/graker/photoalbums/controllers/albums/config_form.yaml diff --git a/server/plugins/graker/photoalbums/controllers/albums/config_list.yaml b/cms/plugins/graker/photoalbums/controllers/albums/config_list.yaml similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/config_list.yaml rename to cms/plugins/graker/photoalbums/controllers/albums/config_list.yaml diff --git a/server/plugins/graker/photoalbums/controllers/albums/config_relation.yaml b/cms/plugins/graker/photoalbums/controllers/albums/config_relation.yaml similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/config_relation.yaml rename to cms/plugins/graker/photoalbums/controllers/albums/config_relation.yaml diff --git a/server/plugins/graker/photoalbums/controllers/albums/create.htm b/cms/plugins/graker/photoalbums/controllers/albums/create.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/create.htm rename to cms/plugins/graker/photoalbums/controllers/albums/create.htm diff --git a/server/plugins/graker/photoalbums/controllers/albums/index.htm b/cms/plugins/graker/photoalbums/controllers/albums/index.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/index.htm rename to cms/plugins/graker/photoalbums/controllers/albums/index.htm diff --git a/server/plugins/graker/photoalbums/controllers/albums/preview.htm b/cms/plugins/graker/photoalbums/controllers/albums/preview.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/preview.htm rename to cms/plugins/graker/photoalbums/controllers/albums/preview.htm diff --git a/server/plugins/graker/photoalbums/controllers/albums/update.htm b/cms/plugins/graker/photoalbums/controllers/albums/update.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/albums/update.htm rename to cms/plugins/graker/photoalbums/controllers/albums/update.htm diff --git a/server/plugins/graker/photoalbums/controllers/photos/_list_toolbar.htm b/cms/plugins/graker/photoalbums/controllers/photos/_list_toolbar.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/photos/_list_toolbar.htm rename to cms/plugins/graker/photoalbums/controllers/photos/_list_toolbar.htm diff --git a/server/plugins/graker/photoalbums/controllers/photos/config_form.yaml b/cms/plugins/graker/photoalbums/controllers/photos/config_form.yaml similarity index 100% rename from server/plugins/graker/photoalbums/controllers/photos/config_form.yaml rename to cms/plugins/graker/photoalbums/controllers/photos/config_form.yaml diff --git a/server/plugins/graker/photoalbums/controllers/photos/config_list.yaml b/cms/plugins/graker/photoalbums/controllers/photos/config_list.yaml similarity index 100% rename from server/plugins/graker/photoalbums/controllers/photos/config_list.yaml rename to cms/plugins/graker/photoalbums/controllers/photos/config_list.yaml diff --git a/server/plugins/graker/photoalbums/controllers/photos/create.htm b/cms/plugins/graker/photoalbums/controllers/photos/create.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/photos/create.htm rename to cms/plugins/graker/photoalbums/controllers/photos/create.htm diff --git a/server/plugins/graker/photoalbums/controllers/photos/index.htm b/cms/plugins/graker/photoalbums/controllers/photos/index.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/photos/index.htm rename to cms/plugins/graker/photoalbums/controllers/photos/index.htm diff --git a/server/plugins/graker/photoalbums/controllers/photos/preview.htm b/cms/plugins/graker/photoalbums/controllers/photos/preview.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/photos/preview.htm rename to cms/plugins/graker/photoalbums/controllers/photos/preview.htm diff --git a/server/plugins/graker/photoalbums/controllers/photos/update.htm b/cms/plugins/graker/photoalbums/controllers/photos/update.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/photos/update.htm rename to cms/plugins/graker/photoalbums/controllers/photos/update.htm diff --git a/server/plugins/graker/photoalbums/controllers/reorder/_records.htm b/cms/plugins/graker/photoalbums/controllers/reorder/_records.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/reorder/_records.htm rename to cms/plugins/graker/photoalbums/controllers/reorder/_records.htm diff --git a/server/plugins/graker/photoalbums/controllers/reorder/_reorder.htm b/cms/plugins/graker/photoalbums/controllers/reorder/_reorder.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/reorder/_reorder.htm rename to cms/plugins/graker/photoalbums/controllers/reorder/_reorder.htm diff --git a/server/plugins/graker/photoalbums/controllers/upload/_form.htm b/cms/plugins/graker/photoalbums/controllers/upload/_form.htm similarity index 100% rename from server/plugins/graker/photoalbums/controllers/upload/_form.htm rename to cms/plugins/graker/photoalbums/controllers/upload/_form.htm diff --git a/server/plugins/graker/photoalbums/lang/en/lang.php b/cms/plugins/graker/photoalbums/lang/en/lang.php similarity index 100% rename from server/plugins/graker/photoalbums/lang/en/lang.php rename to cms/plugins/graker/photoalbums/lang/en/lang.php diff --git a/server/plugins/graker/photoalbums/models/Album.php b/cms/plugins/graker/photoalbums/models/Album.php similarity index 100% rename from server/plugins/graker/photoalbums/models/Album.php rename to cms/plugins/graker/photoalbums/models/Album.php diff --git a/server/plugins/graker/photoalbums/models/Photo.php b/cms/plugins/graker/photoalbums/models/Photo.php similarity index 100% rename from server/plugins/graker/photoalbums/models/Photo.php rename to cms/plugins/graker/photoalbums/models/Photo.php diff --git a/server/plugins/graker/photoalbums/models/Settings.php b/cms/plugins/graker/photoalbums/models/Settings.php similarity index 100% rename from server/plugins/graker/photoalbums/models/Settings.php rename to cms/plugins/graker/photoalbums/models/Settings.php diff --git a/server/plugins/graker/photoalbums/models/album/columns.yaml b/cms/plugins/graker/photoalbums/models/album/columns.yaml similarity index 100% rename from server/plugins/graker/photoalbums/models/album/columns.yaml rename to cms/plugins/graker/photoalbums/models/album/columns.yaml diff --git a/server/plugins/graker/photoalbums/models/album/fields.yaml b/cms/plugins/graker/photoalbums/models/album/fields.yaml similarity index 100% rename from server/plugins/graker/photoalbums/models/album/fields.yaml rename to cms/plugins/graker/photoalbums/models/album/fields.yaml diff --git a/server/plugins/graker/photoalbums/models/photo/columns.yaml b/cms/plugins/graker/photoalbums/models/photo/columns.yaml similarity index 100% rename from server/plugins/graker/photoalbums/models/photo/columns.yaml rename to cms/plugins/graker/photoalbums/models/photo/columns.yaml diff --git a/server/plugins/graker/photoalbums/models/photo/fields.yaml b/cms/plugins/graker/photoalbums/models/photo/fields.yaml similarity index 100% rename from server/plugins/graker/photoalbums/models/photo/fields.yaml rename to cms/plugins/graker/photoalbums/models/photo/fields.yaml diff --git a/server/plugins/graker/photoalbums/models/settings/fields.yaml b/cms/plugins/graker/photoalbums/models/settings/fields.yaml similarity index 100% rename from server/plugins/graker/photoalbums/models/settings/fields.yaml rename to cms/plugins/graker/photoalbums/models/settings/fields.yaml diff --git a/server/plugins/graker/photoalbums/phpunit.xml b/cms/plugins/graker/photoalbums/phpunit.xml similarity index 100% rename from server/plugins/graker/photoalbums/phpunit.xml rename to cms/plugins/graker/photoalbums/phpunit.xml diff --git a/server/plugins/graker/photoalbums/tests/RandomPhotosTest.php b/cms/plugins/graker/photoalbums/tests/RandomPhotosTest.php similarity index 100% rename from server/plugins/graker/photoalbums/tests/RandomPhotosTest.php rename to cms/plugins/graker/photoalbums/tests/RandomPhotosTest.php diff --git a/server/plugins/graker/photoalbums/updates/add_album_front.php b/cms/plugins/graker/photoalbums/updates/add_album_front.php similarity index 100% rename from server/plugins/graker/photoalbums/updates/add_album_front.php rename to cms/plugins/graker/photoalbums/updates/add_album_front.php diff --git a/server/plugins/graker/photoalbums/updates/add_sort_order_field.php b/cms/plugins/graker/photoalbums/updates/add_sort_order_field.php similarity index 100% rename from server/plugins/graker/photoalbums/updates/add_sort_order_field.php rename to cms/plugins/graker/photoalbums/updates/add_sort_order_field.php diff --git a/server/plugins/graker/photoalbums/updates/create_albums_table.php b/cms/plugins/graker/photoalbums/updates/create_albums_table.php similarity index 100% rename from server/plugins/graker/photoalbums/updates/create_albums_table.php rename to cms/plugins/graker/photoalbums/updates/create_albums_table.php diff --git a/server/plugins/graker/photoalbums/updates/create_photos_table.php b/cms/plugins/graker/photoalbums/updates/create_photos_table.php similarity index 100% rename from server/plugins/graker/photoalbums/updates/create_photos_table.php rename to cms/plugins/graker/photoalbums/updates/create_photos_table.php diff --git a/server/plugins/graker/photoalbums/updates/update_sort_order_on_existing_photos.php b/cms/plugins/graker/photoalbums/updates/update_sort_order_on_existing_photos.php similarity index 100% rename from server/plugins/graker/photoalbums/updates/update_sort_order_on_existing_photos.php rename to cms/plugins/graker/photoalbums/updates/update_sort_order_on_existing_photos.php diff --git a/server/plugins/graker/photoalbums/updates/version.yaml b/cms/plugins/graker/photoalbums/updates/version.yaml similarity index 100% rename from server/plugins/graker/photoalbums/updates/version.yaml rename to cms/plugins/graker/photoalbums/updates/version.yaml diff --git a/server/plugins/graker/photoalbums/widgets/PhotoSelector.php b/cms/plugins/graker/photoalbums/widgets/PhotoSelector.php similarity index 100% rename from server/plugins/graker/photoalbums/widgets/PhotoSelector.php rename to cms/plugins/graker/photoalbums/widgets/PhotoSelector.php diff --git a/server/plugins/graker/photoalbums/widgets/photoselector/assets/css/photoselector.css b/cms/plugins/graker/photoalbums/widgets/photoselector/assets/css/photoselector.css similarity index 100% rename from server/plugins/graker/photoalbums/widgets/photoselector/assets/css/photoselector.css rename to cms/plugins/graker/photoalbums/widgets/photoselector/assets/css/photoselector.css diff --git a/server/plugins/graker/photoalbums/widgets/photoselector/assets/js/photoselector.js b/cms/plugins/graker/photoalbums/widgets/photoselector/assets/js/photoselector.js similarity index 100% rename from server/plugins/graker/photoalbums/widgets/photoselector/assets/js/photoselector.js rename to cms/plugins/graker/photoalbums/widgets/photoselector/assets/js/photoselector.js diff --git a/server/plugins/graker/photoalbums/widgets/photoselector/partials/_albums.htm b/cms/plugins/graker/photoalbums/widgets/photoselector/partials/_albums.htm similarity index 100% rename from server/plugins/graker/photoalbums/widgets/photoselector/partials/_albums.htm rename to cms/plugins/graker/photoalbums/widgets/photoselector/partials/_albums.htm diff --git a/server/plugins/graker/photoalbums/widgets/photoselector/partials/_body.htm b/cms/plugins/graker/photoalbums/widgets/photoselector/partials/_body.htm similarity index 100% rename from server/plugins/graker/photoalbums/widgets/photoselector/partials/_body.htm rename to cms/plugins/graker/photoalbums/widgets/photoselector/partials/_body.htm diff --git a/server/plugins/graker/photoalbums/widgets/photoselector/partials/_photos.htm b/cms/plugins/graker/photoalbums/widgets/photoselector/partials/_photos.htm similarity index 100% rename from server/plugins/graker/photoalbums/widgets/photoselector/partials/_photos.htm rename to cms/plugins/graker/photoalbums/widgets/photoselector/partials/_photos.htm diff --git a/server/plugins/manogi/mediathumb/LICENCE.md b/cms/plugins/manogi/mediathumb/LICENCE.md similarity index 100% rename from server/plugins/manogi/mediathumb/LICENCE.md rename to cms/plugins/manogi/mediathumb/LICENCE.md diff --git a/server/plugins/manogi/mediathumb/Plugin.php b/cms/plugins/manogi/mediathumb/Plugin.php similarity index 100% rename from server/plugins/manogi/mediathumb/Plugin.php rename to cms/plugins/manogi/mediathumb/Plugin.php diff --git a/server/plugins/manogi/mediathumb/README.md b/cms/plugins/manogi/mediathumb/README.md similarity index 100% rename from server/plugins/manogi/mediathumb/README.md rename to cms/plugins/manogi/mediathumb/README.md diff --git a/server/plugins/manogi/mediathumb/config/config.php b/cms/plugins/manogi/mediathumb/config/config.php similarity index 100% rename from server/plugins/manogi/mediathumb/config/config.php rename to cms/plugins/manogi/mediathumb/config/config.php diff --git a/server/plugins/manogi/mediathumb/lang/cs/lang.php b/cms/plugins/manogi/mediathumb/lang/cs/lang.php similarity index 100% rename from server/plugins/manogi/mediathumb/lang/cs/lang.php rename to cms/plugins/manogi/mediathumb/lang/cs/lang.php diff --git a/server/plugins/manogi/mediathumb/lang/de/lang.php b/cms/plugins/manogi/mediathumb/lang/de/lang.php similarity index 100% rename from server/plugins/manogi/mediathumb/lang/de/lang.php rename to cms/plugins/manogi/mediathumb/lang/de/lang.php diff --git a/server/plugins/manogi/mediathumb/lang/en/lang.php b/cms/plugins/manogi/mediathumb/lang/en/lang.php similarity index 100% rename from server/plugins/manogi/mediathumb/lang/en/lang.php rename to cms/plugins/manogi/mediathumb/lang/en/lang.php diff --git a/server/plugins/manogi/mediathumb/lang/hu/lang.php b/cms/plugins/manogi/mediathumb/lang/hu/lang.php similarity index 100% rename from server/plugins/manogi/mediathumb/lang/hu/lang.php rename to cms/plugins/manogi/mediathumb/lang/hu/lang.php diff --git a/server/plugins/manogi/mediathumb/updates/version.yaml b/cms/plugins/manogi/mediathumb/updates/version.yaml similarity index 100% rename from server/plugins/manogi/mediathumb/updates/version.yaml rename to cms/plugins/manogi/mediathumb/updates/version.yaml diff --git a/server/plugins/manogi/mediathumb/vendor/autoload.php b/cms/plugins/manogi/mediathumb/vendor/autoload.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/autoload.php rename to cms/plugins/manogi/mediathumb/vendor/autoload.php diff --git a/server/plugins/manogi/mediathumb/vendor/composer/ClassLoader.php b/cms/plugins/manogi/mediathumb/vendor/composer/ClassLoader.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/ClassLoader.php rename to cms/plugins/manogi/mediathumb/vendor/composer/ClassLoader.php diff --git a/server/plugins/manogi/mediathumb/vendor/composer/LICENSE b/cms/plugins/manogi/mediathumb/vendor/composer/LICENSE similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/LICENSE rename to cms/plugins/manogi/mediathumb/vendor/composer/LICENSE diff --git a/server/plugins/manogi/mediathumb/vendor/composer/autoload_classmap.php b/cms/plugins/manogi/mediathumb/vendor/composer/autoload_classmap.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/autoload_classmap.php rename to cms/plugins/manogi/mediathumb/vendor/composer/autoload_classmap.php diff --git a/server/plugins/manogi/mediathumb/vendor/composer/autoload_files.php b/cms/plugins/manogi/mediathumb/vendor/composer/autoload_files.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/autoload_files.php rename to cms/plugins/manogi/mediathumb/vendor/composer/autoload_files.php diff --git a/server/plugins/manogi/mediathumb/vendor/composer/autoload_namespaces.php b/cms/plugins/manogi/mediathumb/vendor/composer/autoload_namespaces.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/autoload_namespaces.php rename to cms/plugins/manogi/mediathumb/vendor/composer/autoload_namespaces.php diff --git a/server/plugins/manogi/mediathumb/vendor/composer/autoload_psr4.php b/cms/plugins/manogi/mediathumb/vendor/composer/autoload_psr4.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/autoload_psr4.php rename to cms/plugins/manogi/mediathumb/vendor/composer/autoload_psr4.php diff --git a/server/plugins/manogi/mediathumb/vendor/composer/autoload_real.php b/cms/plugins/manogi/mediathumb/vendor/composer/autoload_real.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/autoload_real.php rename to cms/plugins/manogi/mediathumb/vendor/composer/autoload_real.php diff --git a/server/plugins/manogi/mediathumb/vendor/composer/autoload_static.php b/cms/plugins/manogi/mediathumb/vendor/composer/autoload_static.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/autoload_static.php rename to cms/plugins/manogi/mediathumb/vendor/composer/autoload_static.php diff --git a/server/plugins/manogi/mediathumb/vendor/composer/installed.json b/cms/plugins/manogi/mediathumb/vendor/composer/installed.json similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/composer/installed.json rename to cms/plugins/manogi/mediathumb/vendor/composer/installed.json diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/CHANGELOG.md b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/CHANGELOG.md similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/CHANGELOG.md rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/CHANGELOG.md diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/LICENSE b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/LICENSE similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/LICENSE rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/LICENSE diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/README.md b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/README.md similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/README.md rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/README.md diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/composer.json b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/composer.json similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/composer.json rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/composer.json diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/AppendStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/AppendStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/AppendStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/AppendStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/BufferStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/BufferStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/BufferStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/BufferStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/CachingStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/CachingStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/CachingStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/CachingStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/DroppingStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/DroppingStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/DroppingStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/DroppingStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/FnStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/FnStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/FnStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/FnStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/InflateStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/InflateStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/InflateStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/InflateStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/LazyOpenStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/LazyOpenStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/LazyOpenStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/LazyOpenStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/LimitStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/LimitStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/LimitStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/LimitStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/MessageTrait.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/MessageTrait.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/MessageTrait.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/MessageTrait.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/MultipartStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/MultipartStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/MultipartStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/MultipartStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/NoSeekStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/NoSeekStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/NoSeekStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/NoSeekStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/PumpStream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/PumpStream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/PumpStream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/PumpStream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Request.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Request.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Request.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Request.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Response.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Response.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Response.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Response.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/ServerRequest.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/ServerRequest.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/ServerRequest.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/ServerRequest.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Stream.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Stream.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Stream.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Stream.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/StreamWrapper.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/StreamWrapper.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/StreamWrapper.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/StreamWrapper.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UploadedFile.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UploadedFile.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UploadedFile.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UploadedFile.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Uri.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Uri.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Uri.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/Uri.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UriNormalizer.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UriNormalizer.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UriNormalizer.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UriNormalizer.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UriResolver.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UriResolver.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UriResolver.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/UriResolver.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/functions.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/functions.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/functions.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/functions.php diff --git a/server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/functions_include.php b/cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/functions_include.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/functions_include.php rename to cms/plugins/manogi/mediathumb/vendor/guzzlehttp/psr7/src/functions_include.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/LICENSE b/cms/plugins/manogi/mediathumb/vendor/intervention/image/LICENSE similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/LICENSE rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/LICENSE diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/composer.json b/cms/plugins/manogi/mediathumb/vendor/intervention/image/composer.json similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/composer.json rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/composer.json diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/provides.json b/cms/plugins/manogi/mediathumb/vendor/intervention/image/provides.json similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/provides.json rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/provides.json diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractColor.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractColor.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractColor.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractColor.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractDecoder.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractDecoder.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractDecoder.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractDecoder.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractDriver.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractDriver.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractDriver.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractDriver.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractEncoder.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractEncoder.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractEncoder.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractEncoder.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractFont.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractFont.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractFont.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractFont.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/AbstractShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/AbstractCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/AbstractCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/AbstractCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/AbstractCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/Argument.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/Argument.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/Argument.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/Argument.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ChecksumCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ChecksumCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ChecksumCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ChecksumCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/CircleCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/CircleCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/CircleCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/CircleCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/EllipseCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/EllipseCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/EllipseCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/EllipseCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ExifCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ExifCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ExifCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ExifCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/IptcCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/IptcCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/IptcCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/IptcCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/LineCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/LineCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/LineCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/LineCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/OrientateCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/OrientateCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/OrientateCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/OrientateCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/PolygonCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/PolygonCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/PolygonCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/PolygonCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/PsrResponseCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/PsrResponseCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/PsrResponseCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/PsrResponseCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/RectangleCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/RectangleCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/RectangleCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/RectangleCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ResponseCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ResponseCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ResponseCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/ResponseCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/StreamCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/StreamCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/StreamCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/StreamCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/TextCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/TextCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/TextCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Commands/TextCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Constraint.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Constraint.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Constraint.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Constraint.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/ImageException.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/ImageException.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/ImageException.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/ImageException.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/InvalidArgumentException.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/InvalidArgumentException.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/InvalidArgumentException.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/InvalidArgumentException.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/MissingDependencyException.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/MissingDependencyException.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/MissingDependencyException.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/MissingDependencyException.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotFoundException.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotFoundException.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotFoundException.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotFoundException.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotReadableException.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotReadableException.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotReadableException.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotReadableException.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotSupportedException.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotSupportedException.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotSupportedException.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotSupportedException.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotWritableException.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotWritableException.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotWritableException.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/NotWritableException.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/RuntimeException.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/RuntimeException.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/RuntimeException.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Exception/RuntimeException.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Facades/Image.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Facades/Image.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Facades/Image.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Facades/Image.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/File.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/File.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/File.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/File.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Filters/DemoFilter.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Filters/DemoFilter.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Filters/DemoFilter.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Filters/DemoFilter.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Filters/FilterInterface.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Filters/FilterInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Filters/FilterInterface.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Filters/FilterInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Color.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Color.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Color.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Color.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BackupCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BackupCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BackupCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BackupCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BlurCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BlurCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BlurCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BlurCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BrightnessCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BrightnessCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BrightnessCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BrightnessCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ColorizeCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ColorizeCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ColorizeCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ColorizeCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ContrastCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ContrastCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ContrastCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ContrastCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/CropCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/CropCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/CropCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/CropCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/DestroyCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/DestroyCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/DestroyCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/DestroyCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FillCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FillCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FillCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FillCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FitCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FitCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FitCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FitCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FlipCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FlipCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FlipCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FlipCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GammaCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GammaCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GammaCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GammaCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GetSizeCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GetSizeCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GetSizeCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GetSizeCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GreyscaleCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GreyscaleCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GreyscaleCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GreyscaleCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/HeightenCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/HeightenCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/HeightenCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/HeightenCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InsertCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InsertCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InsertCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InsertCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InterlaceCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InterlaceCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InterlaceCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InterlaceCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InvertCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InvertCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InvertCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InvertCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/MaskCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/MaskCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/MaskCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/MaskCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/OpacityCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/OpacityCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/OpacityCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/OpacityCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PickColorCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PickColorCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PickColorCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PickColorCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelateCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelateCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelateCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelateCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResetCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResetCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResetCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResetCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCanvasCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCanvasCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCanvasCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCanvasCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/RotateCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/RotateCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/RotateCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/RotateCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/SharpenCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/SharpenCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/SharpenCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/SharpenCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/TrimCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/TrimCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/TrimCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/TrimCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/WidenCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/WidenCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/WidenCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Commands/WidenCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Decoder.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Decoder.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Decoder.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Decoder.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Driver.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Driver.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Driver.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Driver.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Encoder.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Encoder.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Encoder.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Encoder.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Font.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Font.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Font.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Font.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/CircleShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/CircleShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/CircleShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/CircleShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/EllipseShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/EllipseShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/EllipseShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/EllipseShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/LineShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/LineShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/LineShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/LineShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/PolygonShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/PolygonShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/PolygonShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/PolygonShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/RectangleShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/RectangleShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/RectangleShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/RectangleShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Image.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Image.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Image.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Image.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageManager.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageManager.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageManager.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageManager.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageManagerStatic.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageManagerStatic.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageManagerStatic.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageManagerStatic.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProvider.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProvider.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProvider.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProvider.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel4.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel4.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel4.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel4.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel5.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel5.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel5.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel5.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLeague.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLeague.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLeague.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLeague.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLumen.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLumen.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLumen.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLumen.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Color.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Color.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Color.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Color.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BackupCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BackupCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BackupCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BackupCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BlurCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BlurCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BlurCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BlurCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BrightnessCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BrightnessCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BrightnessCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BrightnessCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ColorizeCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ColorizeCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ColorizeCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ColorizeCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ContrastCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ContrastCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ContrastCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ContrastCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/CropCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/CropCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/CropCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/CropCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/DestroyCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/DestroyCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/DestroyCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/DestroyCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ExifCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ExifCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ExifCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ExifCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FillCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FillCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FillCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FillCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FitCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FitCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FitCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FitCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FlipCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FlipCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FlipCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FlipCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GammaCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GammaCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GammaCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GammaCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GetSizeCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GetSizeCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GetSizeCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GetSizeCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GreyscaleCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GreyscaleCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GreyscaleCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GreyscaleCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/HeightenCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/HeightenCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/HeightenCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/HeightenCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InsertCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InsertCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InsertCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InsertCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InterlaceCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InterlaceCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InterlaceCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InterlaceCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InvertCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InvertCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InvertCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InvertCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/LimitColorsCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/LimitColorsCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/LimitColorsCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/LimitColorsCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/MaskCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/MaskCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/MaskCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/MaskCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/OpacityCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/OpacityCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/OpacityCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/OpacityCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PickColorCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PickColorCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PickColorCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PickColorCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelateCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelateCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelateCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelateCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResetCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResetCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResetCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResetCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCanvasCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCanvasCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCanvasCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCanvasCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/RotateCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/RotateCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/RotateCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/RotateCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/SharpenCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/SharpenCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/SharpenCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/SharpenCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/TrimCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/TrimCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/TrimCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/TrimCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/WidenCommand.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/WidenCommand.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/WidenCommand.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/WidenCommand.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Decoder.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Decoder.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Decoder.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Decoder.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Driver.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Driver.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Driver.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Driver.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Encoder.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Encoder.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Encoder.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Encoder.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Font.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Font.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Font.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Font.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/CircleShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/CircleShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/CircleShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/CircleShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/EllipseShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/EllipseShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/EllipseShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/EllipseShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/LineShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/LineShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/LineShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/LineShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/PolygonShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/PolygonShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/PolygonShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/PolygonShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/RectangleShape.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/RectangleShape.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/RectangleShape.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/RectangleShape.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Point.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Point.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Point.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Point.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Response.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Response.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Response.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Response.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Size.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Size.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Size.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/Intervention/Image/Size.php diff --git a/server/plugins/manogi/mediathumb/vendor/intervention/image/src/config/config.php b/cms/plugins/manogi/mediathumb/vendor/intervention/image/src/config/config.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/intervention/image/src/config/config.php rename to cms/plugins/manogi/mediathumb/vendor/intervention/image/src/config/config.php diff --git a/server/plugins/manogi/mediathumb/vendor/manogi/mediathumb/resize_helper.php b/cms/plugins/manogi/mediathumb/vendor/manogi/mediathumb/resize_helper.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/manogi/mediathumb/resize_helper.php rename to cms/plugins/manogi/mediathumb/vendor/manogi/mediathumb/resize_helper.php diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/CHANGELOG.md b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/CHANGELOG.md similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/CHANGELOG.md rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/CHANGELOG.md diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/LICENSE b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/LICENSE similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/LICENSE rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/LICENSE diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/README.md b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/README.md similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/README.md rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/README.md diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/composer.json b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/composer.json similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/composer.json rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/composer.json diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/src/MessageInterface.php b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/MessageInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/src/MessageInterface.php rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/MessageInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/src/RequestInterface.php b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/RequestInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/src/RequestInterface.php rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/RequestInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/src/ResponseInterface.php b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/ResponseInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/src/ResponseInterface.php rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/ResponseInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/src/ServerRequestInterface.php b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/ServerRequestInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/src/ServerRequestInterface.php rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/ServerRequestInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/src/StreamInterface.php b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/StreamInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/src/StreamInterface.php rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/StreamInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/src/UploadedFileInterface.php b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/UploadedFileInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/src/UploadedFileInterface.php rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/UploadedFileInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/psr/http-message/src/UriInterface.php b/cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/UriInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/psr/http-message/src/UriInterface.php rename to cms/plugins/manogi/mediathumb/vendor/psr/http-message/src/UriInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/LICENSE b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/LICENSE similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/LICENSE rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/LICENSE diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/README.md b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/README.md similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/README.md rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/README.md diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/phpunit.xml.dist b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/phpunit.xml.dist similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/phpunit.xml.dist rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/phpunit.xml.dist diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Symfony/UrodozTruncateBundle.php b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Symfony/UrodozTruncateBundle.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Symfony/UrodozTruncateBundle.php rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Symfony/UrodozTruncateBundle.php diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Symfony/UrodozTruncateExtension.php b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Symfony/UrodozTruncateExtension.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Symfony/UrodozTruncateExtension.php rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Symfony/UrodozTruncateExtension.php diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Twig/TruncateExtension.php b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Twig/TruncateExtension.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Twig/TruncateExtension.php rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/Bridge/Twig/TruncateExtension.php diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/TruncateInterface.php b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/TruncateInterface.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/TruncateInterface.php rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/TruncateInterface.php diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/TruncateService.php b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/TruncateService.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/TruncateService.php rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/src/TruncateService.php diff --git a/server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/tests/TruncateServiceTest.php b/cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/tests/TruncateServiceTest.php similarity index 100% rename from server/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/tests/TruncateServiceTest.php rename to cms/plugins/manogi/mediathumb/vendor/urodoz/truncate-html/tests/TruncateServiceTest.php diff --git a/server/plugins/rainlab/builder/LICENCE.md b/cms/plugins/rainlab/builder/LICENCE.md similarity index 100% rename from server/plugins/rainlab/builder/LICENCE.md rename to cms/plugins/rainlab/builder/LICENCE.md diff --git a/server/plugins/rainlab/builder/Plugin.php b/cms/plugins/rainlab/builder/Plugin.php similarity index 100% rename from server/plugins/rainlab/builder/Plugin.php rename to cms/plugins/rainlab/builder/Plugin.php diff --git a/server/plugins/rainlab/builder/assets/css/builder.css b/cms/plugins/rainlab/builder/assets/css/builder.css similarity index 100% rename from server/plugins/rainlab/builder/assets/css/builder.css rename to cms/plugins/rainlab/builder/assets/css/builder.css diff --git a/server/plugins/rainlab/builder/assets/images/builder-icon.svg b/cms/plugins/rainlab/builder/assets/images/builder-icon.svg similarity index 100% rename from server/plugins/rainlab/builder/assets/images/builder-icon.svg rename to cms/plugins/rainlab/builder/assets/images/builder-icon.svg diff --git a/server/plugins/rainlab/builder/assets/images/tab.png b/cms/plugins/rainlab/builder/assets/images/tab.png similarity index 100% rename from server/plugins/rainlab/builder/assets/images/tab.png rename to cms/plugins/rainlab/builder/assets/images/tab.png diff --git a/server/plugins/rainlab/builder/assets/js/build-min.js b/cms/plugins/rainlab/builder/assets/js/build-min.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/build-min.js rename to cms/plugins/rainlab/builder/assets/js/build-min.js diff --git a/server/plugins/rainlab/builder/assets/js/build.js b/cms/plugins/rainlab/builder/assets/js/build.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/build.js rename to cms/plugins/rainlab/builder/assets/js/build.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.dataregistry.js b/cms/plugins/rainlab/builder/assets/js/builder.dataregistry.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.dataregistry.js rename to cms/plugins/rainlab/builder/assets/js/builder.dataregistry.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.base.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.base.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.base.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.base.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.controller.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.controller.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.controller.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.controller.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.databasetable.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.databasetable.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.databasetable.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.databasetable.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.localization.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.localization.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.localization.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.localization.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.menus.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.menus.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.menus.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.menus.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.model.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.model.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.model.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.model.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.modelform.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.modelform.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.modelform.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.modelform.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.modellist.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.modellist.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.modellist.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.modellist.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.permission.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.permission.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.permission.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.permission.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.plugin.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.plugin.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.plugin.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.plugin.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.entity.version.js b/cms/plugins/rainlab/builder/assets/js/builder.index.entity.version.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.entity.version.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.entity.version.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.index.js b/cms/plugins/rainlab/builder/assets/js/builder.index.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.index.js rename to cms/plugins/rainlab/builder/assets/js/builder.index.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.inspector.editor.localization.js b/cms/plugins/rainlab/builder/assets/js/builder.inspector.editor.localization.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.inspector.editor.localization.js rename to cms/plugins/rainlab/builder/assets/js/builder.inspector.editor.localization.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.localizationinput.js b/cms/plugins/rainlab/builder/assets/js/builder.localizationinput.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.localizationinput.js rename to cms/plugins/rainlab/builder/assets/js/builder.localizationinput.js diff --git a/server/plugins/rainlab/builder/assets/js/builder.table.processor.localization.js b/cms/plugins/rainlab/builder/assets/js/builder.table.processor.localization.js similarity index 100% rename from server/plugins/rainlab/builder/assets/js/builder.table.processor.localization.js rename to cms/plugins/rainlab/builder/assets/js/builder.table.processor.localization.js diff --git a/server/plugins/rainlab/builder/assets/less/behaviors.less b/cms/plugins/rainlab/builder/assets/less/behaviors.less similarity index 100% rename from server/plugins/rainlab/builder/assets/less/behaviors.less rename to cms/plugins/rainlab/builder/assets/less/behaviors.less diff --git a/server/plugins/rainlab/builder/assets/less/builder.less b/cms/plugins/rainlab/builder/assets/less/builder.less similarity index 100% rename from server/plugins/rainlab/builder/assets/less/builder.less rename to cms/plugins/rainlab/builder/assets/less/builder.less diff --git a/server/plugins/rainlab/builder/assets/less/buildingarea.less b/cms/plugins/rainlab/builder/assets/less/buildingarea.less similarity index 100% rename from server/plugins/rainlab/builder/assets/less/buildingarea.less rename to cms/plugins/rainlab/builder/assets/less/buildingarea.less diff --git a/server/plugins/rainlab/builder/assets/less/controlblueprint.less b/cms/plugins/rainlab/builder/assets/less/controlblueprint.less similarity index 100% rename from server/plugins/rainlab/builder/assets/less/controlblueprint.less rename to cms/plugins/rainlab/builder/assets/less/controlblueprint.less diff --git a/server/plugins/rainlab/builder/assets/less/localization.less b/cms/plugins/rainlab/builder/assets/less/localization.less similarity index 100% rename from server/plugins/rainlab/builder/assets/less/localization.less rename to cms/plugins/rainlab/builder/assets/less/localization.less diff --git a/server/plugins/rainlab/builder/assets/less/menus.less b/cms/plugins/rainlab/builder/assets/less/menus.less similarity index 100% rename from server/plugins/rainlab/builder/assets/less/menus.less rename to cms/plugins/rainlab/builder/assets/less/menus.less diff --git a/server/plugins/rainlab/builder/assets/less/tabs.less b/cms/plugins/rainlab/builder/assets/less/tabs.less similarity index 100% rename from server/plugins/rainlab/builder/assets/less/tabs.less rename to cms/plugins/rainlab/builder/assets/less/tabs.less diff --git a/server/plugins/rainlab/builder/behaviors/IndexControllerOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexControllerOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexControllerOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexControllerOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexDataRegistry.php b/cms/plugins/rainlab/builder/behaviors/IndexDataRegistry.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexDataRegistry.php rename to cms/plugins/rainlab/builder/behaviors/IndexDataRegistry.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexDatabaseTableOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexDatabaseTableOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexDatabaseTableOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexDatabaseTableOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexLocalizationOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexLocalizationOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexLocalizationOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexLocalizationOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexMenusOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexMenusOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexMenusOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexMenusOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexModelFormOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexModelFormOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexModelFormOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexModelFormOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexModelListOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexModelListOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexModelListOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexModelListOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexModelOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexModelOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexModelOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexModelOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexPermissionsOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexPermissionsOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexPermissionsOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexPermissionsOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexPluginOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexPluginOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexPluginOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexPluginOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/IndexVersionsOperations.php b/cms/plugins/rainlab/builder/behaviors/IndexVersionsOperations.php similarity index 100% rename from server/plugins/rainlab/builder/behaviors/IndexVersionsOperations.php rename to cms/plugins/rainlab/builder/behaviors/IndexVersionsOperations.php diff --git a/server/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_create-controller-popup-form.htm b/cms/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_create-controller-popup-form.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_create-controller-popup-form.htm rename to cms/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_create-controller-popup-form.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_tab.htm b/cms/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_tab.htm rename to cms/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_toolbar.htm b/cms/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/behaviors/indexcontrolleroperations/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_migration-popup-form.htm b/cms/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_migration-popup-form.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_migration-popup-form.htm rename to cms/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_migration-popup-form.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_tab.htm b/cms/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_tab.htm rename to cms/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_toolbar.htm b/cms/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/behaviors/indexdatabasetableoperations/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_copy-strings-popup-form.htm b/cms/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_copy-strings-popup-form.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_copy-strings-popup-form.htm rename to cms/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_copy-strings-popup-form.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_new-string-popup.htm b/cms/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_new-string-popup.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_new-string-popup.htm rename to cms/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_new-string-popup.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_tab.htm b/cms/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_tab.htm rename to cms/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_toolbar.htm b/cms/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/behaviors/indexlocalizationoperations/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexmenusoperations/partials/_tab.htm b/cms/plugins/rainlab/builder/behaviors/indexmenusoperations/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexmenusoperations/partials/_tab.htm rename to cms/plugins/rainlab/builder/behaviors/indexmenusoperations/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexmenusoperations/partials/_toolbar.htm b/cms/plugins/rainlab/builder/behaviors/indexmenusoperations/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexmenusoperations/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/behaviors/indexmenusoperations/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexmodelformoperations/partials/_tab.htm b/cms/plugins/rainlab/builder/behaviors/indexmodelformoperations/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexmodelformoperations/partials/_tab.htm rename to cms/plugins/rainlab/builder/behaviors/indexmodelformoperations/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexmodelformoperations/partials/_toolbar.htm b/cms/plugins/rainlab/builder/behaviors/indexmodelformoperations/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexmodelformoperations/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/behaviors/indexmodelformoperations/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexmodellistoperations/partials/_tab.htm b/cms/plugins/rainlab/builder/behaviors/indexmodellistoperations/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexmodellistoperations/partials/_tab.htm rename to cms/plugins/rainlab/builder/behaviors/indexmodellistoperations/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexmodellistoperations/partials/_toolbar.htm b/cms/plugins/rainlab/builder/behaviors/indexmodellistoperations/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexmodellistoperations/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/behaviors/indexmodellistoperations/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexmodeloperations/partials/_model-popup-form.htm b/cms/plugins/rainlab/builder/behaviors/indexmodeloperations/partials/_model-popup-form.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexmodeloperations/partials/_model-popup-form.htm rename to cms/plugins/rainlab/builder/behaviors/indexmodeloperations/partials/_model-popup-form.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexpermissionsoperations/partials/_tab.htm b/cms/plugins/rainlab/builder/behaviors/indexpermissionsoperations/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexpermissionsoperations/partials/_tab.htm rename to cms/plugins/rainlab/builder/behaviors/indexpermissionsoperations/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexpermissionsoperations/partials/_toolbar.htm b/cms/plugins/rainlab/builder/behaviors/indexpermissionsoperations/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexpermissionsoperations/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/behaviors/indexpermissionsoperations/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexpluginoperations/partials/_plugin-popup-form.htm b/cms/plugins/rainlab/builder/behaviors/indexpluginoperations/partials/_plugin-popup-form.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexpluginoperations/partials/_plugin-popup-form.htm rename to cms/plugins/rainlab/builder/behaviors/indexpluginoperations/partials/_plugin-popup-form.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexpluginoperations/partials/_plugin-update-hint.htm b/cms/plugins/rainlab/builder/behaviors/indexpluginoperations/partials/_plugin-update-hint.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexpluginoperations/partials/_plugin-update-hint.htm rename to cms/plugins/rainlab/builder/behaviors/indexpluginoperations/partials/_plugin-update-hint.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_tab.htm b/cms/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_tab.htm rename to cms/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_toolbar.htm b/cms/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_version-hint-block.htm b/cms/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_version-hint-block.htm similarity index 100% rename from server/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_version-hint-block.htm rename to cms/plugins/rainlab/builder/behaviors/indexversionsoperations/partials/_version-hint-block.htm diff --git a/server/plugins/rainlab/builder/classes/BaseModel.php b/cms/plugins/rainlab/builder/classes/BaseModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/BaseModel.php rename to cms/plugins/rainlab/builder/classes/BaseModel.php diff --git a/server/plugins/rainlab/builder/classes/BehaviorDesignTimeProviderBase.php b/cms/plugins/rainlab/builder/classes/BehaviorDesignTimeProviderBase.php similarity index 100% rename from server/plugins/rainlab/builder/classes/BehaviorDesignTimeProviderBase.php rename to cms/plugins/rainlab/builder/classes/BehaviorDesignTimeProviderBase.php diff --git a/server/plugins/rainlab/builder/classes/ComponentHelper.php b/cms/plugins/rainlab/builder/classes/ComponentHelper.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ComponentHelper.php rename to cms/plugins/rainlab/builder/classes/ComponentHelper.php diff --git a/server/plugins/rainlab/builder/classes/ControlDesignTimeProviderBase.php b/cms/plugins/rainlab/builder/classes/ControlDesignTimeProviderBase.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ControlDesignTimeProviderBase.php rename to cms/plugins/rainlab/builder/classes/ControlDesignTimeProviderBase.php diff --git a/server/plugins/rainlab/builder/classes/ControlLibrary.php b/cms/plugins/rainlab/builder/classes/ControlLibrary.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ControlLibrary.php rename to cms/plugins/rainlab/builder/classes/ControlLibrary.php diff --git a/server/plugins/rainlab/builder/classes/ControllerBehaviorLibrary.php b/cms/plugins/rainlab/builder/classes/ControllerBehaviorLibrary.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ControllerBehaviorLibrary.php rename to cms/plugins/rainlab/builder/classes/ControllerBehaviorLibrary.php diff --git a/server/plugins/rainlab/builder/classes/ControllerFileParser.php b/cms/plugins/rainlab/builder/classes/ControllerFileParser.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ControllerFileParser.php rename to cms/plugins/rainlab/builder/classes/ControllerFileParser.php diff --git a/server/plugins/rainlab/builder/classes/ControllerGenerator.php b/cms/plugins/rainlab/builder/classes/ControllerGenerator.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ControllerGenerator.php rename to cms/plugins/rainlab/builder/classes/ControllerGenerator.php diff --git a/server/plugins/rainlab/builder/classes/ControllerModel.php b/cms/plugins/rainlab/builder/classes/ControllerModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ControllerModel.php rename to cms/plugins/rainlab/builder/classes/ControllerModel.php diff --git a/server/plugins/rainlab/builder/classes/DatabaseTableModel.php b/cms/plugins/rainlab/builder/classes/DatabaseTableModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/DatabaseTableModel.php rename to cms/plugins/rainlab/builder/classes/DatabaseTableModel.php diff --git a/server/plugins/rainlab/builder/classes/DatabaseTableSchemaCreator.php b/cms/plugins/rainlab/builder/classes/DatabaseTableSchemaCreator.php similarity index 100% rename from server/plugins/rainlab/builder/classes/DatabaseTableSchemaCreator.php rename to cms/plugins/rainlab/builder/classes/DatabaseTableSchemaCreator.php diff --git a/server/plugins/rainlab/builder/classes/EnumDbType.php b/cms/plugins/rainlab/builder/classes/EnumDbType.php similarity index 100% rename from server/plugins/rainlab/builder/classes/EnumDbType.php rename to cms/plugins/rainlab/builder/classes/EnumDbType.php diff --git a/server/plugins/rainlab/builder/classes/FilesystemGenerator.php b/cms/plugins/rainlab/builder/classes/FilesystemGenerator.php similarity index 100% rename from server/plugins/rainlab/builder/classes/FilesystemGenerator.php rename to cms/plugins/rainlab/builder/classes/FilesystemGenerator.php diff --git a/server/plugins/rainlab/builder/classes/IconList.php b/cms/plugins/rainlab/builder/classes/IconList.php similarity index 100% rename from server/plugins/rainlab/builder/classes/IconList.php rename to cms/plugins/rainlab/builder/classes/IconList.php diff --git a/server/plugins/rainlab/builder/classes/IndexOperationsBehaviorBase.php b/cms/plugins/rainlab/builder/classes/IndexOperationsBehaviorBase.php similarity index 100% rename from server/plugins/rainlab/builder/classes/IndexOperationsBehaviorBase.php rename to cms/plugins/rainlab/builder/classes/IndexOperationsBehaviorBase.php diff --git a/server/plugins/rainlab/builder/classes/LanguageMixer.php b/cms/plugins/rainlab/builder/classes/LanguageMixer.php similarity index 100% rename from server/plugins/rainlab/builder/classes/LanguageMixer.php rename to cms/plugins/rainlab/builder/classes/LanguageMixer.php diff --git a/server/plugins/rainlab/builder/classes/LocalizationModel.php b/cms/plugins/rainlab/builder/classes/LocalizationModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/LocalizationModel.php rename to cms/plugins/rainlab/builder/classes/LocalizationModel.php diff --git a/server/plugins/rainlab/builder/classes/MenusModel.php b/cms/plugins/rainlab/builder/classes/MenusModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/MenusModel.php rename to cms/plugins/rainlab/builder/classes/MenusModel.php diff --git a/server/plugins/rainlab/builder/classes/MigrationColumnType.php b/cms/plugins/rainlab/builder/classes/MigrationColumnType.php similarity index 100% rename from server/plugins/rainlab/builder/classes/MigrationColumnType.php rename to cms/plugins/rainlab/builder/classes/MigrationColumnType.php diff --git a/server/plugins/rainlab/builder/classes/MigrationFileParser.php b/cms/plugins/rainlab/builder/classes/MigrationFileParser.php similarity index 100% rename from server/plugins/rainlab/builder/classes/MigrationFileParser.php rename to cms/plugins/rainlab/builder/classes/MigrationFileParser.php diff --git a/server/plugins/rainlab/builder/classes/MigrationModel.php b/cms/plugins/rainlab/builder/classes/MigrationModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/MigrationModel.php rename to cms/plugins/rainlab/builder/classes/MigrationModel.php diff --git a/server/plugins/rainlab/builder/classes/ModelFileParser.php b/cms/plugins/rainlab/builder/classes/ModelFileParser.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ModelFileParser.php rename to cms/plugins/rainlab/builder/classes/ModelFileParser.php diff --git a/server/plugins/rainlab/builder/classes/ModelFormModel.php b/cms/plugins/rainlab/builder/classes/ModelFormModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ModelFormModel.php rename to cms/plugins/rainlab/builder/classes/ModelFormModel.php diff --git a/server/plugins/rainlab/builder/classes/ModelListModel.php b/cms/plugins/rainlab/builder/classes/ModelListModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ModelListModel.php rename to cms/plugins/rainlab/builder/classes/ModelListModel.php diff --git a/server/plugins/rainlab/builder/classes/ModelModel.php b/cms/plugins/rainlab/builder/classes/ModelModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ModelModel.php rename to cms/plugins/rainlab/builder/classes/ModelModel.php diff --git a/server/plugins/rainlab/builder/classes/ModelYamlModel.php b/cms/plugins/rainlab/builder/classes/ModelYamlModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/ModelYamlModel.php rename to cms/plugins/rainlab/builder/classes/ModelYamlModel.php diff --git a/server/plugins/rainlab/builder/classes/PermissionsModel.php b/cms/plugins/rainlab/builder/classes/PermissionsModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/PermissionsModel.php rename to cms/plugins/rainlab/builder/classes/PermissionsModel.php diff --git a/server/plugins/rainlab/builder/classes/PhpSourceStream.php b/cms/plugins/rainlab/builder/classes/PhpSourceStream.php similarity index 100% rename from server/plugins/rainlab/builder/classes/PhpSourceStream.php rename to cms/plugins/rainlab/builder/classes/PhpSourceStream.php diff --git a/server/plugins/rainlab/builder/classes/PluginBaseModel.php b/cms/plugins/rainlab/builder/classes/PluginBaseModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/PluginBaseModel.php rename to cms/plugins/rainlab/builder/classes/PluginBaseModel.php diff --git a/server/plugins/rainlab/builder/classes/PluginCode.php b/cms/plugins/rainlab/builder/classes/PluginCode.php similarity index 100% rename from server/plugins/rainlab/builder/classes/PluginCode.php rename to cms/plugins/rainlab/builder/classes/PluginCode.php diff --git a/server/plugins/rainlab/builder/classes/PluginVector.php b/cms/plugins/rainlab/builder/classes/PluginVector.php similarity index 100% rename from server/plugins/rainlab/builder/classes/PluginVector.php rename to cms/plugins/rainlab/builder/classes/PluginVector.php diff --git a/server/plugins/rainlab/builder/classes/PluginVersion.php b/cms/plugins/rainlab/builder/classes/PluginVersion.php similarity index 100% rename from server/plugins/rainlab/builder/classes/PluginVersion.php rename to cms/plugins/rainlab/builder/classes/PluginVersion.php diff --git a/server/plugins/rainlab/builder/classes/PluginYamlModel.php b/cms/plugins/rainlab/builder/classes/PluginYamlModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/PluginYamlModel.php rename to cms/plugins/rainlab/builder/classes/PluginYamlModel.php diff --git a/server/plugins/rainlab/builder/classes/StandardBehaviorsRegistry.php b/cms/plugins/rainlab/builder/classes/StandardBehaviorsRegistry.php similarity index 100% rename from server/plugins/rainlab/builder/classes/StandardBehaviorsRegistry.php rename to cms/plugins/rainlab/builder/classes/StandardBehaviorsRegistry.php diff --git a/server/plugins/rainlab/builder/classes/StandardControlsRegistry.php b/cms/plugins/rainlab/builder/classes/StandardControlsRegistry.php similarity index 100% rename from server/plugins/rainlab/builder/classes/StandardControlsRegistry.php rename to cms/plugins/rainlab/builder/classes/StandardControlsRegistry.php diff --git a/server/plugins/rainlab/builder/classes/TableMigrationCodeGenerator.php b/cms/plugins/rainlab/builder/classes/TableMigrationCodeGenerator.php similarity index 100% rename from server/plugins/rainlab/builder/classes/TableMigrationCodeGenerator.php rename to cms/plugins/rainlab/builder/classes/TableMigrationCodeGenerator.php diff --git a/server/plugins/rainlab/builder/classes/YamlModel.php b/cms/plugins/rainlab/builder/classes/YamlModel.php similarity index 100% rename from server/plugins/rainlab/builder/classes/YamlModel.php rename to cms/plugins/rainlab/builder/classes/YamlModel.php diff --git a/server/plugins/rainlab/builder/classes/controllergenerator/templates/controller-config-vars.php.tpl b/cms/plugins/rainlab/builder/classes/controllergenerator/templates/controller-config-vars.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/controllergenerator/templates/controller-config-vars.php.tpl rename to cms/plugins/rainlab/builder/classes/controllergenerator/templates/controller-config-vars.php.tpl diff --git a/server/plugins/rainlab/builder/classes/controllergenerator/templates/controller-permissions.php.tpl b/cms/plugins/rainlab/builder/classes/controllergenerator/templates/controller-permissions.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/controllergenerator/templates/controller-permissions.php.tpl rename to cms/plugins/rainlab/builder/classes/controllergenerator/templates/controller-permissions.php.tpl diff --git a/server/plugins/rainlab/builder/classes/controllergenerator/templates/controller.php.tpl b/cms/plugins/rainlab/builder/classes/controllergenerator/templates/controller.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/controllergenerator/templates/controller.php.tpl rename to cms/plugins/rainlab/builder/classes/controllergenerator/templates/controller.php.tpl diff --git a/server/plugins/rainlab/builder/classes/controllermodel/fields.yaml b/cms/plugins/rainlab/builder/classes/controllermodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/controllermodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/controllermodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/controllermodel/new-controller-fields.yaml b/cms/plugins/rainlab/builder/classes/controllermodel/new-controller-fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/controllermodel/new-controller-fields.yaml rename to cms/plugins/rainlab/builder/classes/controllermodel/new-controller-fields.yaml diff --git a/server/plugins/rainlab/builder/classes/databasetablemodel/fields.yaml b/cms/plugins/rainlab/builder/classes/databasetablemodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/databasetablemodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/databasetablemodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/databasetablemodel/templates/full-migration-code.php.tpl b/cms/plugins/rainlab/builder/classes/databasetablemodel/templates/full-migration-code.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/databasetablemodel/templates/full-migration-code.php.tpl rename to cms/plugins/rainlab/builder/classes/databasetablemodel/templates/full-migration-code.php.tpl diff --git a/server/plugins/rainlab/builder/classes/databasetablemodel/templates/migration-code.php.tpl b/cms/plugins/rainlab/builder/classes/databasetablemodel/templates/migration-code.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/databasetablemodel/templates/migration-code.php.tpl rename to cms/plugins/rainlab/builder/classes/databasetablemodel/templates/migration-code.php.tpl diff --git a/server/plugins/rainlab/builder/classes/localizationmodel/fields.yaml b/cms/plugins/rainlab/builder/classes/localizationmodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/localizationmodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/localizationmodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/localizationmodel/templates/lang.php b/cms/plugins/rainlab/builder/classes/localizationmodel/templates/lang.php similarity index 100% rename from server/plugins/rainlab/builder/classes/localizationmodel/templates/lang.php rename to cms/plugins/rainlab/builder/classes/localizationmodel/templates/lang.php diff --git a/server/plugins/rainlab/builder/classes/menusmodel/fields.yaml b/cms/plugins/rainlab/builder/classes/menusmodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/menusmodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/menusmodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/migrationmodel/fields.yaml b/cms/plugins/rainlab/builder/classes/migrationmodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/migrationmodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/migrationmodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/migrationmodel/management-fields.yaml b/cms/plugins/rainlab/builder/classes/migrationmodel/management-fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/migrationmodel/management-fields.yaml rename to cms/plugins/rainlab/builder/classes/migrationmodel/management-fields.yaml diff --git a/server/plugins/rainlab/builder/classes/migrationmodel/templates/migration.php.tpl b/cms/plugins/rainlab/builder/classes/migrationmodel/templates/migration.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/migrationmodel/templates/migration.php.tpl rename to cms/plugins/rainlab/builder/classes/migrationmodel/templates/migration.php.tpl diff --git a/server/plugins/rainlab/builder/classes/migrationmodel/templates/seeder.php.tpl b/cms/plugins/rainlab/builder/classes/migrationmodel/templates/seeder.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/migrationmodel/templates/seeder.php.tpl rename to cms/plugins/rainlab/builder/classes/migrationmodel/templates/seeder.php.tpl diff --git a/server/plugins/rainlab/builder/classes/modelformmodel/fields.yaml b/cms/plugins/rainlab/builder/classes/modelformmodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/modelformmodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/modelformmodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/modellistmodel/fields.yaml b/cms/plugins/rainlab/builder/classes/modellistmodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/modellistmodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/modellistmodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/modelmodel/fields.yaml b/cms/plugins/rainlab/builder/classes/modelmodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/modelmodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/modelmodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/modelmodel/templates/model.php.tpl b/cms/plugins/rainlab/builder/classes/modelmodel/templates/model.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/modelmodel/templates/model.php.tpl rename to cms/plugins/rainlab/builder/classes/modelmodel/templates/model.php.tpl diff --git a/server/plugins/rainlab/builder/classes/modelmodel/templates/no-timestamps.php.tpl b/cms/plugins/rainlab/builder/classes/modelmodel/templates/no-timestamps.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/modelmodel/templates/no-timestamps.php.tpl rename to cms/plugins/rainlab/builder/classes/modelmodel/templates/no-timestamps.php.tpl diff --git a/server/plugins/rainlab/builder/classes/modelmodel/templates/soft-delete.php.tpl b/cms/plugins/rainlab/builder/classes/modelmodel/templates/soft-delete.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/modelmodel/templates/soft-delete.php.tpl rename to cms/plugins/rainlab/builder/classes/modelmodel/templates/soft-delete.php.tpl diff --git a/server/plugins/rainlab/builder/classes/permissionsmodel/fields.yaml b/cms/plugins/rainlab/builder/classes/permissionsmodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/permissionsmodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/permissionsmodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/pluginbasemodel/fields.yaml b/cms/plugins/rainlab/builder/classes/pluginbasemodel/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/classes/pluginbasemodel/fields.yaml rename to cms/plugins/rainlab/builder/classes/pluginbasemodel/fields.yaml diff --git a/server/plugins/rainlab/builder/classes/pluginbasemodel/templates/lang.php.tpl b/cms/plugins/rainlab/builder/classes/pluginbasemodel/templates/lang.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/pluginbasemodel/templates/lang.php.tpl rename to cms/plugins/rainlab/builder/classes/pluginbasemodel/templates/lang.php.tpl diff --git a/server/plugins/rainlab/builder/classes/pluginbasemodel/templates/plugin.php.tpl b/cms/plugins/rainlab/builder/classes/pluginbasemodel/templates/plugin.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/pluginbasemodel/templates/plugin.php.tpl rename to cms/plugins/rainlab/builder/classes/pluginbasemodel/templates/plugin.php.tpl diff --git a/server/plugins/rainlab/builder/classes/pluginbasemodel/templates/version.yaml.tpl b/cms/plugins/rainlab/builder/classes/pluginbasemodel/templates/version.yaml.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/pluginbasemodel/templates/version.yaml.tpl rename to cms/plugins/rainlab/builder/classes/pluginbasemodel/templates/version.yaml.tpl diff --git a/server/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/create.htm.tpl b/cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/create.htm.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/create.htm.tpl rename to cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/create.htm.tpl diff --git a/server/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/preview.htm.tpl b/cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/preview.htm.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/preview.htm.tpl rename to cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/preview.htm.tpl diff --git a/server/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/update.htm.tpl b/cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/update.htm.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/update.htm.tpl rename to cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/formcontroller/templates/update.htm.tpl diff --git a/server/plugins/rainlab/builder/classes/standardbehaviorsregistry/listcontroller/templates/_list_toolbar.htm.tpl b/cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/listcontroller/templates/_list_toolbar.htm.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/standardbehaviorsregistry/listcontroller/templates/_list_toolbar.htm.tpl rename to cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/listcontroller/templates/_list_toolbar.htm.tpl diff --git a/server/plugins/rainlab/builder/classes/standardbehaviorsregistry/listcontroller/templates/index.htm.tpl b/cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/listcontroller/templates/index.htm.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/standardbehaviorsregistry/listcontroller/templates/index.htm.tpl rename to cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/listcontroller/templates/index.htm.tpl diff --git a/server/plugins/rainlab/builder/classes/standardbehaviorsregistry/reordercontroller/templates/_reorder_toolbar.htm.tpl b/cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/reordercontroller/templates/_reorder_toolbar.htm.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/standardbehaviorsregistry/reordercontroller/templates/_reorder_toolbar.htm.tpl rename to cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/reordercontroller/templates/_reorder_toolbar.htm.tpl diff --git a/server/plugins/rainlab/builder/classes/standardbehaviorsregistry/reordercontroller/templates/reorder.htm.tpl b/cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/reordercontroller/templates/reorder.htm.tpl similarity index 100% rename from server/plugins/rainlab/builder/classes/standardbehaviorsregistry/reordercontroller/templates/reorder.htm.tpl rename to cms/plugins/rainlab/builder/classes/standardbehaviorsregistry/reordercontroller/templates/reorder.htm.tpl diff --git a/server/plugins/rainlab/builder/components/RecordDetails.php b/cms/plugins/rainlab/builder/components/RecordDetails.php similarity index 100% rename from server/plugins/rainlab/builder/components/RecordDetails.php rename to cms/plugins/rainlab/builder/components/RecordDetails.php diff --git a/server/plugins/rainlab/builder/components/RecordList.php b/cms/plugins/rainlab/builder/components/RecordList.php similarity index 100% rename from server/plugins/rainlab/builder/components/RecordList.php rename to cms/plugins/rainlab/builder/components/RecordList.php diff --git a/server/plugins/rainlab/builder/components/recorddetails/default.htm b/cms/plugins/rainlab/builder/components/recorddetails/default.htm similarity index 100% rename from server/plugins/rainlab/builder/components/recorddetails/default.htm rename to cms/plugins/rainlab/builder/components/recorddetails/default.htm diff --git a/server/plugins/rainlab/builder/components/recordlist/default.htm b/cms/plugins/rainlab/builder/components/recordlist/default.htm similarity index 100% rename from server/plugins/rainlab/builder/components/recordlist/default.htm rename to cms/plugins/rainlab/builder/components/recordlist/default.htm diff --git a/server/plugins/rainlab/builder/controllers/Index.php b/cms/plugins/rainlab/builder/controllers/Index.php similarity index 100% rename from server/plugins/rainlab/builder/controllers/Index.php rename to cms/plugins/rainlab/builder/controllers/Index.php diff --git a/server/plugins/rainlab/builder/controllers/index/_plugin-selector.htm b/cms/plugins/rainlab/builder/controllers/index/_plugin-selector.htm similarity index 100% rename from server/plugins/rainlab/builder/controllers/index/_plugin-selector.htm rename to cms/plugins/rainlab/builder/controllers/index/_plugin-selector.htm diff --git a/server/plugins/rainlab/builder/controllers/index/_sidepanel.htm b/cms/plugins/rainlab/builder/controllers/index/_sidepanel.htm similarity index 100% rename from server/plugins/rainlab/builder/controllers/index/_sidepanel.htm rename to cms/plugins/rainlab/builder/controllers/index/_sidepanel.htm diff --git a/server/plugins/rainlab/builder/controllers/index/index.htm b/cms/plugins/rainlab/builder/controllers/index/index.htm similarity index 100% rename from server/plugins/rainlab/builder/controllers/index/index.htm rename to cms/plugins/rainlab/builder/controllers/index/index.htm diff --git a/server/plugins/rainlab/builder/formwidgets/ControllerBuilder.php b/cms/plugins/rainlab/builder/formwidgets/ControllerBuilder.php similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/ControllerBuilder.php rename to cms/plugins/rainlab/builder/formwidgets/ControllerBuilder.php diff --git a/server/plugins/rainlab/builder/formwidgets/FormBuilder.php b/cms/plugins/rainlab/builder/formwidgets/FormBuilder.php similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/FormBuilder.php rename to cms/plugins/rainlab/builder/formwidgets/FormBuilder.php diff --git a/server/plugins/rainlab/builder/formwidgets/MenuEditor.php b/cms/plugins/rainlab/builder/formwidgets/MenuEditor.php similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/MenuEditor.php rename to cms/plugins/rainlab/builder/formwidgets/MenuEditor.php diff --git a/server/plugins/rainlab/builder/formwidgets/controllerbuilder/assets/js/controllerbuilder.js b/cms/plugins/rainlab/builder/formwidgets/controllerbuilder/assets/js/controllerbuilder.js similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/controllerbuilder/assets/js/controllerbuilder.js rename to cms/plugins/rainlab/builder/formwidgets/controllerbuilder/assets/js/controllerbuilder.js diff --git a/server/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_behavior.htm b/cms/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_behavior.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_behavior.htm rename to cms/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_behavior.htm diff --git a/server/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_body.htm b/cms/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_body.htm rename to cms/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_body.htm diff --git a/server/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_buildingarea.htm b/cms/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_buildingarea.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_buildingarea.htm rename to cms/plugins/rainlab/builder/formwidgets/controllerbuilder/partials/_buildingarea.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.controlpalette.js b/cms/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.controlpalette.js similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.controlpalette.js rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.controlpalette.js diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.domtopropertyjson.js b/cms/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.domtopropertyjson.js similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.domtopropertyjson.js rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.domtopropertyjson.js diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.js b/cms/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.js similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.js rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.js diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.tabs.js b/cms/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.tabs.js similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.tabs.js rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/assets/js/formbuilder.tabs.js diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_body.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_body.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_body.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_buildingarea.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_buildingarea.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_buildingarea.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_buildingarea.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlbody.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlbody.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlbody.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlbody.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlcontainer.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlcontainer.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlcontainer.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlcontainer.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controllist.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controllist.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controllist.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controllist.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlpalette.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlpalette.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlpalette.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlpalette.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlwrapper.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlwrapper.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlwrapper.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_controlwrapper.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tab.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tab.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tab.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tab.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tabpanel.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tabpanel.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tabpanel.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tabpanel.htm diff --git a/server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tabs.htm b/cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tabs.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tabs.htm rename to cms/plugins/rainlab/builder/formwidgets/formbuilder/partials/_tabs.htm diff --git a/server/plugins/rainlab/builder/formwidgets/menueditor/assets/js/menubuilder.js b/cms/plugins/rainlab/builder/formwidgets/menueditor/assets/js/menubuilder.js similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/menueditor/assets/js/menubuilder.js rename to cms/plugins/rainlab/builder/formwidgets/menueditor/assets/js/menubuilder.js diff --git a/server/plugins/rainlab/builder/formwidgets/menueditor/partials/_body.htm b/cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/menueditor/partials/_body.htm rename to cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_body.htm diff --git a/server/plugins/rainlab/builder/formwidgets/menueditor/partials/_mainmenuitem.htm b/cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_mainmenuitem.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/menueditor/partials/_mainmenuitem.htm rename to cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_mainmenuitem.htm diff --git a/server/plugins/rainlab/builder/formwidgets/menueditor/partials/_mainmenuitems.htm b/cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_mainmenuitems.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/menueditor/partials/_mainmenuitems.htm rename to cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_mainmenuitems.htm diff --git a/server/plugins/rainlab/builder/formwidgets/menueditor/partials/_submenuitem.htm b/cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_submenuitem.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/menueditor/partials/_submenuitem.htm rename to cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_submenuitem.htm diff --git a/server/plugins/rainlab/builder/formwidgets/menueditor/partials/_submenuitems.htm b/cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_submenuitems.htm similarity index 100% rename from server/plugins/rainlab/builder/formwidgets/menueditor/partials/_submenuitems.htm rename to cms/plugins/rainlab/builder/formwidgets/menueditor/partials/_submenuitems.htm diff --git a/server/plugins/rainlab/builder/lang/cs/lang.php b/cms/plugins/rainlab/builder/lang/cs/lang.php similarity index 100% rename from server/plugins/rainlab/builder/lang/cs/lang.php rename to cms/plugins/rainlab/builder/lang/cs/lang.php diff --git a/server/plugins/rainlab/builder/lang/en/lang.php b/cms/plugins/rainlab/builder/lang/en/lang.php similarity index 100% rename from server/plugins/rainlab/builder/lang/en/lang.php rename to cms/plugins/rainlab/builder/lang/en/lang.php diff --git a/server/plugins/rainlab/builder/lang/es/lang.php b/cms/plugins/rainlab/builder/lang/es/lang.php similarity index 100% rename from server/plugins/rainlab/builder/lang/es/lang.php rename to cms/plugins/rainlab/builder/lang/es/lang.php diff --git a/server/plugins/rainlab/builder/lang/fa/lang.php b/cms/plugins/rainlab/builder/lang/fa/lang.php similarity index 100% rename from server/plugins/rainlab/builder/lang/fa/lang.php rename to cms/plugins/rainlab/builder/lang/fa/lang.php diff --git a/server/plugins/rainlab/builder/lang/nl/lang.php b/cms/plugins/rainlab/builder/lang/nl/lang.php similarity index 100% rename from server/plugins/rainlab/builder/lang/nl/lang.php rename to cms/plugins/rainlab/builder/lang/nl/lang.php diff --git a/server/plugins/rainlab/builder/lang/pt-br/lang.php b/cms/plugins/rainlab/builder/lang/pt-br/lang.php similarity index 100% rename from server/plugins/rainlab/builder/lang/pt-br/lang.php rename to cms/plugins/rainlab/builder/lang/pt-br/lang.php diff --git a/server/plugins/rainlab/builder/models/Settings.php b/cms/plugins/rainlab/builder/models/Settings.php similarity index 100% rename from server/plugins/rainlab/builder/models/Settings.php rename to cms/plugins/rainlab/builder/models/Settings.php diff --git a/server/plugins/rainlab/builder/models/settings/fields.yaml b/cms/plugins/rainlab/builder/models/settings/fields.yaml similarity index 100% rename from server/plugins/rainlab/builder/models/settings/fields.yaml rename to cms/plugins/rainlab/builder/models/settings/fields.yaml diff --git a/server/plugins/rainlab/builder/phpunit.xml b/cms/plugins/rainlab/builder/phpunit.xml similarity index 100% rename from server/plugins/rainlab/builder/phpunit.xml rename to cms/plugins/rainlab/builder/phpunit.xml diff --git a/server/plugins/rainlab/builder/tests/TestCase.php b/cms/plugins/rainlab/builder/tests/TestCase.php similarity index 100% rename from server/plugins/rainlab/builder/tests/TestCase.php rename to cms/plugins/rainlab/builder/tests/TestCase.php diff --git a/server/plugins/rainlab/builder/tests/fixtures/MyMock.php b/cms/plugins/rainlab/builder/tests/fixtures/MyMock.php similarity index 100% rename from server/plugins/rainlab/builder/tests/fixtures/MyMock.php rename to cms/plugins/rainlab/builder/tests/fixtures/MyMock.php diff --git a/server/plugins/rainlab/builder/tests/fixtures/filesystemgenerator/templates/plugin.php.tpl b/cms/plugins/rainlab/builder/tests/fixtures/filesystemgenerator/templates/plugin.php.tpl similarity index 100% rename from server/plugins/rainlab/builder/tests/fixtures/filesystemgenerator/templates/plugin.php.tpl rename to cms/plugins/rainlab/builder/tests/fixtures/filesystemgenerator/templates/plugin.php.tpl diff --git a/server/plugins/rainlab/builder/tests/unit/classes/FilesystemGeneratorTest.php b/cms/plugins/rainlab/builder/tests/unit/classes/FilesystemGeneratorTest.php similarity index 100% rename from server/plugins/rainlab/builder/tests/unit/classes/FilesystemGeneratorTest.php rename to cms/plugins/rainlab/builder/tests/unit/classes/FilesystemGeneratorTest.php diff --git a/server/plugins/rainlab/builder/tests/unit/classes/ModelModelTest.php b/cms/plugins/rainlab/builder/tests/unit/classes/ModelModelTest.php similarity index 100% rename from server/plugins/rainlab/builder/tests/unit/classes/ModelModelTest.php rename to cms/plugins/rainlab/builder/tests/unit/classes/ModelModelTest.php diff --git a/server/plugins/rainlab/builder/tests/unit/phpunit.xml b/cms/plugins/rainlab/builder/tests/unit/phpunit.xml similarity index 100% rename from server/plugins/rainlab/builder/tests/unit/phpunit.xml rename to cms/plugins/rainlab/builder/tests/unit/phpunit.xml diff --git a/server/plugins/rainlab/builder/updates/version.yaml b/cms/plugins/rainlab/builder/updates/version.yaml similarity index 100% rename from server/plugins/rainlab/builder/updates/version.yaml rename to cms/plugins/rainlab/builder/updates/version.yaml diff --git a/server/plugins/rainlab/builder/validation/ReservedValidator.php b/cms/plugins/rainlab/builder/validation/ReservedValidator.php similarity index 100% rename from server/plugins/rainlab/builder/validation/ReservedValidator.php rename to cms/plugins/rainlab/builder/validation/ReservedValidator.php diff --git a/server/plugins/rainlab/builder/vendor/autoload.php b/cms/plugins/rainlab/builder/vendor/autoload.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/autoload.php rename to cms/plugins/rainlab/builder/vendor/autoload.php diff --git a/server/plugins/rainlab/builder/vendor/composer/ClassLoader.php b/cms/plugins/rainlab/builder/vendor/composer/ClassLoader.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/ClassLoader.php rename to cms/plugins/rainlab/builder/vendor/composer/ClassLoader.php diff --git a/server/plugins/rainlab/builder/vendor/composer/LICENSE b/cms/plugins/rainlab/builder/vendor/composer/LICENSE similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/LICENSE rename to cms/plugins/rainlab/builder/vendor/composer/LICENSE diff --git a/server/plugins/rainlab/builder/vendor/composer/autoload_classmap.php b/cms/plugins/rainlab/builder/vendor/composer/autoload_classmap.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/autoload_classmap.php rename to cms/plugins/rainlab/builder/vendor/composer/autoload_classmap.php diff --git a/server/plugins/rainlab/builder/vendor/composer/autoload_namespaces.php b/cms/plugins/rainlab/builder/vendor/composer/autoload_namespaces.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/autoload_namespaces.php rename to cms/plugins/rainlab/builder/vendor/composer/autoload_namespaces.php diff --git a/server/plugins/rainlab/builder/vendor/composer/autoload_psr4.php b/cms/plugins/rainlab/builder/vendor/composer/autoload_psr4.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/autoload_psr4.php rename to cms/plugins/rainlab/builder/vendor/composer/autoload_psr4.php diff --git a/server/plugins/rainlab/builder/vendor/composer/autoload_real.php b/cms/plugins/rainlab/builder/vendor/composer/autoload_real.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/autoload_real.php rename to cms/plugins/rainlab/builder/vendor/composer/autoload_real.php diff --git a/server/plugins/rainlab/builder/vendor/composer/autoload_static.php b/cms/plugins/rainlab/builder/vendor/composer/autoload_static.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/autoload_static.php rename to cms/plugins/rainlab/builder/vendor/composer/autoload_static.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installed.json b/cms/plugins/rainlab/builder/vendor/composer/installed.json similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installed.json rename to cms/plugins/rainlab/builder/vendor/composer/installed.json diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/LICENSE b/cms/plugins/rainlab/builder/vendor/composer/installers/LICENSE similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/LICENSE rename to cms/plugins/rainlab/builder/vendor/composer/installers/LICENSE diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/composer.json b/cms/plugins/rainlab/builder/vendor/composer/installers/composer.json similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/composer.json rename to cms/plugins/rainlab/builder/vendor/composer/installers/composer.json diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AglInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AglInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AglInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AglInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/GravInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/GravInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/GravInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/GravInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Installer.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Installer.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Installer.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Installer.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Plugin.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Plugin.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Plugin.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Plugin.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php diff --git a/server/plugins/rainlab/builder/vendor/composer/installers/src/bootstrap.php b/cms/plugins/rainlab/builder/vendor/composer/installers/src/bootstrap.php similarity index 100% rename from server/plugins/rainlab/builder/vendor/composer/installers/src/bootstrap.php rename to cms/plugins/rainlab/builder/vendor/composer/installers/src/bootstrap.php diff --git a/server/plugins/rainlab/builder/widgets/ControllerList.php b/cms/plugins/rainlab/builder/widgets/ControllerList.php similarity index 100% rename from server/plugins/rainlab/builder/widgets/ControllerList.php rename to cms/plugins/rainlab/builder/widgets/ControllerList.php diff --git a/server/plugins/rainlab/builder/widgets/DatabaseTableList.php b/cms/plugins/rainlab/builder/widgets/DatabaseTableList.php similarity index 100% rename from server/plugins/rainlab/builder/widgets/DatabaseTableList.php rename to cms/plugins/rainlab/builder/widgets/DatabaseTableList.php diff --git a/server/plugins/rainlab/builder/widgets/DefaultBehaviorDesignTimeProvider.php b/cms/plugins/rainlab/builder/widgets/DefaultBehaviorDesignTimeProvider.php similarity index 100% rename from server/plugins/rainlab/builder/widgets/DefaultBehaviorDesignTimeProvider.php rename to cms/plugins/rainlab/builder/widgets/DefaultBehaviorDesignTimeProvider.php diff --git a/server/plugins/rainlab/builder/widgets/DefaultControlDesignTimeProvider.php b/cms/plugins/rainlab/builder/widgets/DefaultControlDesignTimeProvider.php similarity index 100% rename from server/plugins/rainlab/builder/widgets/DefaultControlDesignTimeProvider.php rename to cms/plugins/rainlab/builder/widgets/DefaultControlDesignTimeProvider.php diff --git a/server/plugins/rainlab/builder/widgets/LanguageList.php b/cms/plugins/rainlab/builder/widgets/LanguageList.php similarity index 100% rename from server/plugins/rainlab/builder/widgets/LanguageList.php rename to cms/plugins/rainlab/builder/widgets/LanguageList.php diff --git a/server/plugins/rainlab/builder/widgets/ModelList.php b/cms/plugins/rainlab/builder/widgets/ModelList.php similarity index 100% rename from server/plugins/rainlab/builder/widgets/ModelList.php rename to cms/plugins/rainlab/builder/widgets/ModelList.php diff --git a/server/plugins/rainlab/builder/widgets/PluginList.php b/cms/plugins/rainlab/builder/widgets/PluginList.php similarity index 100% rename from server/plugins/rainlab/builder/widgets/PluginList.php rename to cms/plugins/rainlab/builder/widgets/PluginList.php diff --git a/server/plugins/rainlab/builder/widgets/VersionList.php b/cms/plugins/rainlab/builder/widgets/VersionList.php similarity index 100% rename from server/plugins/rainlab/builder/widgets/VersionList.php rename to cms/plugins/rainlab/builder/widgets/VersionList.php diff --git a/server/plugins/rainlab/builder/widgets/controllerlist/partials/_body.htm b/cms/plugins/rainlab/builder/widgets/controllerlist/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/controllerlist/partials/_body.htm rename to cms/plugins/rainlab/builder/widgets/controllerlist/partials/_body.htm diff --git a/server/plugins/rainlab/builder/widgets/controllerlist/partials/_controller-list.htm b/cms/plugins/rainlab/builder/widgets/controllerlist/partials/_controller-list.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/controllerlist/partials/_controller-list.htm rename to cms/plugins/rainlab/builder/widgets/controllerlist/partials/_controller-list.htm diff --git a/server/plugins/rainlab/builder/widgets/controllerlist/partials/_items.htm b/cms/plugins/rainlab/builder/widgets/controllerlist/partials/_items.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/controllerlist/partials/_items.htm rename to cms/plugins/rainlab/builder/widgets/controllerlist/partials/_items.htm diff --git a/server/plugins/rainlab/builder/widgets/controllerlist/partials/_toolbar.htm b/cms/plugins/rainlab/builder/widgets/controllerlist/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/controllerlist/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/widgets/controllerlist/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/widgets/controllerlist/partials/_widget-contents.htm b/cms/plugins/rainlab/builder/widgets/controllerlist/partials/_widget-contents.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/controllerlist/partials/_widget-contents.htm rename to cms/plugins/rainlab/builder/widgets/controllerlist/partials/_widget-contents.htm diff --git a/server/plugins/rainlab/builder/widgets/databasetablelist/partials/_body.htm b/cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/databasetablelist/partials/_body.htm rename to cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_body.htm diff --git a/server/plugins/rainlab/builder/widgets/databasetablelist/partials/_items.htm b/cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_items.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/databasetablelist/partials/_items.htm rename to cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_items.htm diff --git a/server/plugins/rainlab/builder/widgets/databasetablelist/partials/_table-list.htm b/cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_table-list.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/databasetablelist/partials/_table-list.htm rename to cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_table-list.htm diff --git a/server/plugins/rainlab/builder/widgets/databasetablelist/partials/_toolbar.htm b/cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/databasetablelist/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/widgets/databasetablelist/partials/_widget-contents.htm b/cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_widget-contents.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/databasetablelist/partials/_widget-contents.htm rename to cms/plugins/rainlab/builder/widgets/databasetablelist/partials/_widget-contents.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-form-controller.htm b/cms/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-form-controller.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-form-controller.htm rename to cms/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-form-controller.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-list-controller.htm b/cms/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-list-controller.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-list-controller.htm rename to cms/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-list-controller.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-reorder-controller.htm b/cms/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-reorder-controller.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-reorder-controller.htm rename to cms/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-reorder-controller.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-unknown.htm b/cms/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-unknown.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-unknown.htm rename to cms/plugins/rainlab/builder/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-unknown.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-balloon-selector.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-balloon-selector.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-balloon-selector.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-balloon-selector.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-checkbox.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-checkbox.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-checkbox.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-checkbox.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-checkboxlist.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-checkboxlist.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-checkboxlist.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-checkboxlist.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-codeeditor.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-codeeditor.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-codeeditor.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-codeeditor.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-colorpicker.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-colorpicker.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-colorpicker.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-colorpicker.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-datepicker.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-datepicker.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-datepicker.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-datepicker.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-dropdown.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-dropdown.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-dropdown.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-dropdown.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-fileupload.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-fileupload.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-fileupload.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-fileupload.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-hint.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-hint.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-hint.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-hint.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-markdown.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-markdown.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-markdown.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-markdown.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-mediafinder.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-mediafinder.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-mediafinder.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-mediafinder.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-number.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-number.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-number.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-number.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-partial.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-partial.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-partial.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-partial.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-password.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-password.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-password.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-password.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-radio.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-radio.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-radio.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-radio.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-recordfinder.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-recordfinder.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-recordfinder.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-recordfinder.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-relation.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-relation.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-relation.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-relation.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-repeater.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-repeater.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-repeater.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-repeater.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-richeditor.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-richeditor.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-richeditor.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-richeditor.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-section.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-section.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-section.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-section.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-static-repeater.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-static-repeater.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-static-repeater.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-static-repeater.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-switch.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-switch.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-switch.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-switch.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-text.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-text.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-text.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-text.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-textarea.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-textarea.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-textarea.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-textarea.htm diff --git a/server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-unknowncontrol.htm b/cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-unknowncontrol.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-unknowncontrol.htm rename to cms/plugins/rainlab/builder/widgets/defaultcontroldesigntimeprovider/partials/_control-unknowncontrol.htm diff --git a/server/plugins/rainlab/builder/widgets/languagelist/partials/_body.htm b/cms/plugins/rainlab/builder/widgets/languagelist/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/languagelist/partials/_body.htm rename to cms/plugins/rainlab/builder/widgets/languagelist/partials/_body.htm diff --git a/server/plugins/rainlab/builder/widgets/languagelist/partials/_items.htm b/cms/plugins/rainlab/builder/widgets/languagelist/partials/_items.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/languagelist/partials/_items.htm rename to cms/plugins/rainlab/builder/widgets/languagelist/partials/_items.htm diff --git a/server/plugins/rainlab/builder/widgets/languagelist/partials/_language-list.htm b/cms/plugins/rainlab/builder/widgets/languagelist/partials/_language-list.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/languagelist/partials/_language-list.htm rename to cms/plugins/rainlab/builder/widgets/languagelist/partials/_language-list.htm diff --git a/server/plugins/rainlab/builder/widgets/languagelist/partials/_toolbar.htm b/cms/plugins/rainlab/builder/widgets/languagelist/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/languagelist/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/widgets/languagelist/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/widgets/languagelist/partials/_widget-contents.htm b/cms/plugins/rainlab/builder/widgets/languagelist/partials/_widget-contents.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/languagelist/partials/_widget-contents.htm rename to cms/plugins/rainlab/builder/widgets/languagelist/partials/_widget-contents.htm diff --git a/server/plugins/rainlab/builder/widgets/modellist/partials/_body.htm b/cms/plugins/rainlab/builder/widgets/modellist/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/modellist/partials/_body.htm rename to cms/plugins/rainlab/builder/widgets/modellist/partials/_body.htm diff --git a/server/plugins/rainlab/builder/widgets/modellist/partials/_items.htm b/cms/plugins/rainlab/builder/widgets/modellist/partials/_items.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/modellist/partials/_items.htm rename to cms/plugins/rainlab/builder/widgets/modellist/partials/_items.htm diff --git a/server/plugins/rainlab/builder/widgets/modellist/partials/_model-list.htm b/cms/plugins/rainlab/builder/widgets/modellist/partials/_model-list.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/modellist/partials/_model-list.htm rename to cms/plugins/rainlab/builder/widgets/modellist/partials/_model-list.htm diff --git a/server/plugins/rainlab/builder/widgets/modellist/partials/_toolbar.htm b/cms/plugins/rainlab/builder/widgets/modellist/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/modellist/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/widgets/modellist/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/widgets/modellist/partials/_widget-contents.htm b/cms/plugins/rainlab/builder/widgets/modellist/partials/_widget-contents.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/modellist/partials/_widget-contents.htm rename to cms/plugins/rainlab/builder/widgets/modellist/partials/_widget-contents.htm diff --git a/server/plugins/rainlab/builder/widgets/pluginlist/partials/_body.htm b/cms/plugins/rainlab/builder/widgets/pluginlist/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/pluginlist/partials/_body.htm rename to cms/plugins/rainlab/builder/widgets/pluginlist/partials/_body.htm diff --git a/server/plugins/rainlab/builder/widgets/pluginlist/partials/_items.htm b/cms/plugins/rainlab/builder/widgets/pluginlist/partials/_items.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/pluginlist/partials/_items.htm rename to cms/plugins/rainlab/builder/widgets/pluginlist/partials/_items.htm diff --git a/server/plugins/rainlab/builder/widgets/pluginlist/partials/_plugin-list.htm b/cms/plugins/rainlab/builder/widgets/pluginlist/partials/_plugin-list.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/pluginlist/partials/_plugin-list.htm rename to cms/plugins/rainlab/builder/widgets/pluginlist/partials/_plugin-list.htm diff --git a/server/plugins/rainlab/builder/widgets/pluginlist/partials/_toolbar-buttons.htm b/cms/plugins/rainlab/builder/widgets/pluginlist/partials/_toolbar-buttons.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/pluginlist/partials/_toolbar-buttons.htm rename to cms/plugins/rainlab/builder/widgets/pluginlist/partials/_toolbar-buttons.htm diff --git a/server/plugins/rainlab/builder/widgets/pluginlist/partials/_toolbar.htm b/cms/plugins/rainlab/builder/widgets/pluginlist/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/pluginlist/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/widgets/pluginlist/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/widgets/versionlist/partials/_body.htm b/cms/plugins/rainlab/builder/widgets/versionlist/partials/_body.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/versionlist/partials/_body.htm rename to cms/plugins/rainlab/builder/widgets/versionlist/partials/_body.htm diff --git a/server/plugins/rainlab/builder/widgets/versionlist/partials/_items.htm b/cms/plugins/rainlab/builder/widgets/versionlist/partials/_items.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/versionlist/partials/_items.htm rename to cms/plugins/rainlab/builder/widgets/versionlist/partials/_items.htm diff --git a/server/plugins/rainlab/builder/widgets/versionlist/partials/_toolbar.htm b/cms/plugins/rainlab/builder/widgets/versionlist/partials/_toolbar.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/versionlist/partials/_toolbar.htm rename to cms/plugins/rainlab/builder/widgets/versionlist/partials/_toolbar.htm diff --git a/server/plugins/rainlab/builder/widgets/versionlist/partials/_version-list.htm b/cms/plugins/rainlab/builder/widgets/versionlist/partials/_version-list.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/versionlist/partials/_version-list.htm rename to cms/plugins/rainlab/builder/widgets/versionlist/partials/_version-list.htm diff --git a/server/plugins/rainlab/builder/widgets/versionlist/partials/_widget-contents.htm b/cms/plugins/rainlab/builder/widgets/versionlist/partials/_widget-contents.htm similarity index 100% rename from server/plugins/rainlab/builder/widgets/versionlist/partials/_widget-contents.htm rename to cms/plugins/rainlab/builder/widgets/versionlist/partials/_widget-contents.htm diff --git a/server/plugins/studiovx/marcleopold/Plugin.php b/cms/plugins/studiovx/marcleopold/Plugin.php similarity index 100% rename from server/plugins/studiovx/marcleopold/Plugin.php rename to cms/plugins/studiovx/marcleopold/Plugin.php diff --git a/server/plugins/studiovx/marcleopold/controllers/IndexImage.php b/cms/plugins/studiovx/marcleopold/controllers/IndexImage.php similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/IndexImage.php rename to cms/plugins/studiovx/marcleopold/controllers/IndexImage.php diff --git a/server/plugins/studiovx/marcleopold/controllers/IndexTagline.php b/cms/plugins/studiovx/marcleopold/controllers/IndexTagline.php similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/IndexTagline.php rename to cms/plugins/studiovx/marcleopold/controllers/IndexTagline.php diff --git a/server/plugins/studiovx/marcleopold/controllers/Pages.php b/cms/plugins/studiovx/marcleopold/controllers/Pages.php similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/Pages.php rename to cms/plugins/studiovx/marcleopold/controllers/Pages.php diff --git a/server/plugins/studiovx/marcleopold/controllers/Services.php b/cms/plugins/studiovx/marcleopold/controllers/Services.php similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/Services.php rename to cms/plugins/studiovx/marcleopold/controllers/Services.php diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/_list_toolbar.htm b/cms/plugins/studiovx/marcleopold/controllers/indeximage/_list_toolbar.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/_list_toolbar.htm rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/_list_toolbar.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/_reorder_toolbar.htm b/cms/plugins/studiovx/marcleopold/controllers/indeximage/_reorder_toolbar.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/_reorder_toolbar.htm rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/_reorder_toolbar.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/config_form.yaml b/cms/plugins/studiovx/marcleopold/controllers/indeximage/config_form.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/config_form.yaml rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/config_form.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/config_list.yaml b/cms/plugins/studiovx/marcleopold/controllers/indeximage/config_list.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/config_list.yaml rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/config_list.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/config_reorder.yaml b/cms/plugins/studiovx/marcleopold/controllers/indeximage/config_reorder.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/config_reorder.yaml rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/config_reorder.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/create.htm b/cms/plugins/studiovx/marcleopold/controllers/indeximage/create.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/create.htm rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/create.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/index.htm b/cms/plugins/studiovx/marcleopold/controllers/indeximage/index.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/index.htm rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/index.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/preview.htm b/cms/plugins/studiovx/marcleopold/controllers/indeximage/preview.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/preview.htm rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/preview.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/reorder.htm b/cms/plugins/studiovx/marcleopold/controllers/indeximage/reorder.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/reorder.htm rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/reorder.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indeximage/update.htm b/cms/plugins/studiovx/marcleopold/controllers/indeximage/update.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indeximage/update.htm rename to cms/plugins/studiovx/marcleopold/controllers/indeximage/update.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/_list_toolbar.htm b/cms/plugins/studiovx/marcleopold/controllers/indextagline/_list_toolbar.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/_list_toolbar.htm rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/_list_toolbar.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/_reorder_toolbar.htm b/cms/plugins/studiovx/marcleopold/controllers/indextagline/_reorder_toolbar.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/_reorder_toolbar.htm rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/_reorder_toolbar.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/config_form.yaml b/cms/plugins/studiovx/marcleopold/controllers/indextagline/config_form.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/config_form.yaml rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/config_form.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/config_list.yaml b/cms/plugins/studiovx/marcleopold/controllers/indextagline/config_list.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/config_list.yaml rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/config_list.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/config_reorder.yaml b/cms/plugins/studiovx/marcleopold/controllers/indextagline/config_reorder.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/config_reorder.yaml rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/config_reorder.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/create.htm b/cms/plugins/studiovx/marcleopold/controllers/indextagline/create.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/create.htm rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/create.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/index.htm b/cms/plugins/studiovx/marcleopold/controllers/indextagline/index.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/index.htm rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/index.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/preview.htm b/cms/plugins/studiovx/marcleopold/controllers/indextagline/preview.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/preview.htm rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/preview.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/reorder.htm b/cms/plugins/studiovx/marcleopold/controllers/indextagline/reorder.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/reorder.htm rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/reorder.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/indextagline/update.htm b/cms/plugins/studiovx/marcleopold/controllers/indextagline/update.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/indextagline/update.htm rename to cms/plugins/studiovx/marcleopold/controllers/indextagline/update.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/pages/_list_toolbar.htm b/cms/plugins/studiovx/marcleopold/controllers/pages/_list_toolbar.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/pages/_list_toolbar.htm rename to cms/plugins/studiovx/marcleopold/controllers/pages/_list_toolbar.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/pages/config_form.yaml b/cms/plugins/studiovx/marcleopold/controllers/pages/config_form.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/pages/config_form.yaml rename to cms/plugins/studiovx/marcleopold/controllers/pages/config_form.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/pages/config_list.yaml b/cms/plugins/studiovx/marcleopold/controllers/pages/config_list.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/pages/config_list.yaml rename to cms/plugins/studiovx/marcleopold/controllers/pages/config_list.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/pages/create.htm b/cms/plugins/studiovx/marcleopold/controllers/pages/create.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/pages/create.htm rename to cms/plugins/studiovx/marcleopold/controllers/pages/create.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/pages/index.htm b/cms/plugins/studiovx/marcleopold/controllers/pages/index.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/pages/index.htm rename to cms/plugins/studiovx/marcleopold/controllers/pages/index.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/pages/preview.htm b/cms/plugins/studiovx/marcleopold/controllers/pages/preview.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/pages/preview.htm rename to cms/plugins/studiovx/marcleopold/controllers/pages/preview.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/pages/update.htm b/cms/plugins/studiovx/marcleopold/controllers/pages/update.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/pages/update.htm rename to cms/plugins/studiovx/marcleopold/controllers/pages/update.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/services/_list_toolbar.htm b/cms/plugins/studiovx/marcleopold/controllers/services/_list_toolbar.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/_list_toolbar.htm rename to cms/plugins/studiovx/marcleopold/controllers/services/_list_toolbar.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/services/_reorder_toolbar.htm b/cms/plugins/studiovx/marcleopold/controllers/services/_reorder_toolbar.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/_reorder_toolbar.htm rename to cms/plugins/studiovx/marcleopold/controllers/services/_reorder_toolbar.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/services/config_form.yaml b/cms/plugins/studiovx/marcleopold/controllers/services/config_form.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/config_form.yaml rename to cms/plugins/studiovx/marcleopold/controllers/services/config_form.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/services/config_list.yaml b/cms/plugins/studiovx/marcleopold/controllers/services/config_list.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/config_list.yaml rename to cms/plugins/studiovx/marcleopold/controllers/services/config_list.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/services/config_reorder.yaml b/cms/plugins/studiovx/marcleopold/controllers/services/config_reorder.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/config_reorder.yaml rename to cms/plugins/studiovx/marcleopold/controllers/services/config_reorder.yaml diff --git a/server/plugins/studiovx/marcleopold/controllers/services/create.htm b/cms/plugins/studiovx/marcleopold/controllers/services/create.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/create.htm rename to cms/plugins/studiovx/marcleopold/controllers/services/create.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/services/index.htm b/cms/plugins/studiovx/marcleopold/controllers/services/index.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/index.htm rename to cms/plugins/studiovx/marcleopold/controllers/services/index.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/services/preview.htm b/cms/plugins/studiovx/marcleopold/controllers/services/preview.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/preview.htm rename to cms/plugins/studiovx/marcleopold/controllers/services/preview.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/services/reorder.htm b/cms/plugins/studiovx/marcleopold/controllers/services/reorder.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/reorder.htm rename to cms/plugins/studiovx/marcleopold/controllers/services/reorder.htm diff --git a/server/plugins/studiovx/marcleopold/controllers/services/update.htm b/cms/plugins/studiovx/marcleopold/controllers/services/update.htm similarity index 100% rename from server/plugins/studiovx/marcleopold/controllers/services/update.htm rename to cms/plugins/studiovx/marcleopold/controllers/services/update.htm diff --git a/server/plugins/studiovx/marcleopold/lang/en/lang.php b/cms/plugins/studiovx/marcleopold/lang/en/lang.php similarity index 100% rename from server/plugins/studiovx/marcleopold/lang/en/lang.php rename to cms/plugins/studiovx/marcleopold/lang/en/lang.php diff --git a/server/plugins/studiovx/marcleopold/models/IndexImage.php b/cms/plugins/studiovx/marcleopold/models/IndexImage.php similarity index 100% rename from server/plugins/studiovx/marcleopold/models/IndexImage.php rename to cms/plugins/studiovx/marcleopold/models/IndexImage.php diff --git a/server/plugins/studiovx/marcleopold/models/IndexTagline.php b/cms/plugins/studiovx/marcleopold/models/IndexTagline.php similarity index 100% rename from server/plugins/studiovx/marcleopold/models/IndexTagline.php rename to cms/plugins/studiovx/marcleopold/models/IndexTagline.php diff --git a/server/plugins/studiovx/marcleopold/models/Pages.php b/cms/plugins/studiovx/marcleopold/models/Pages.php similarity index 100% rename from server/plugins/studiovx/marcleopold/models/Pages.php rename to cms/plugins/studiovx/marcleopold/models/Pages.php diff --git a/server/plugins/studiovx/marcleopold/models/Services.php b/cms/plugins/studiovx/marcleopold/models/Services.php similarity index 100% rename from server/plugins/studiovx/marcleopold/models/Services.php rename to cms/plugins/studiovx/marcleopold/models/Services.php diff --git a/server/plugins/studiovx/marcleopold/models/Settings.php b/cms/plugins/studiovx/marcleopold/models/Settings.php similarity index 100% rename from server/plugins/studiovx/marcleopold/models/Settings.php rename to cms/plugins/studiovx/marcleopold/models/Settings.php diff --git a/server/plugins/studiovx/marcleopold/models/indeximage/columns.yaml b/cms/plugins/studiovx/marcleopold/models/indeximage/columns.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/indeximage/columns.yaml rename to cms/plugins/studiovx/marcleopold/models/indeximage/columns.yaml diff --git a/server/plugins/studiovx/marcleopold/models/indeximage/fields.yaml b/cms/plugins/studiovx/marcleopold/models/indeximage/fields.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/indeximage/fields.yaml rename to cms/plugins/studiovx/marcleopold/models/indeximage/fields.yaml diff --git a/server/plugins/studiovx/marcleopold/models/indextagline/columns.yaml b/cms/plugins/studiovx/marcleopold/models/indextagline/columns.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/indextagline/columns.yaml rename to cms/plugins/studiovx/marcleopold/models/indextagline/columns.yaml diff --git a/server/plugins/studiovx/marcleopold/models/indextagline/fields.yaml b/cms/plugins/studiovx/marcleopold/models/indextagline/fields.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/indextagline/fields.yaml rename to cms/plugins/studiovx/marcleopold/models/indextagline/fields.yaml diff --git a/server/plugins/studiovx/marcleopold/models/pages/columns.yaml b/cms/plugins/studiovx/marcleopold/models/pages/columns.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/pages/columns.yaml rename to cms/plugins/studiovx/marcleopold/models/pages/columns.yaml diff --git a/server/plugins/studiovx/marcleopold/models/pages/fields.yaml b/cms/plugins/studiovx/marcleopold/models/pages/fields.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/pages/fields.yaml rename to cms/plugins/studiovx/marcleopold/models/pages/fields.yaml diff --git a/server/plugins/studiovx/marcleopold/models/services/columns.yaml b/cms/plugins/studiovx/marcleopold/models/services/columns.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/services/columns.yaml rename to cms/plugins/studiovx/marcleopold/models/services/columns.yaml diff --git a/server/plugins/studiovx/marcleopold/models/services/fields.yaml b/cms/plugins/studiovx/marcleopold/models/services/fields.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/services/fields.yaml rename to cms/plugins/studiovx/marcleopold/models/services/fields.yaml diff --git a/server/plugins/studiovx/marcleopold/models/settings/fields.yaml b/cms/plugins/studiovx/marcleopold/models/settings/fields.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/models/settings/fields.yaml rename to cms/plugins/studiovx/marcleopold/models/settings/fields.yaml diff --git a/server/plugins/studiovx/marcleopold/plugin.yaml b/cms/plugins/studiovx/marcleopold/plugin.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/plugin.yaml rename to cms/plugins/studiovx/marcleopold/plugin.yaml diff --git a/server/plugins/studiovx/marcleopold/updates/add_fields_to_albums_table.php b/cms/plugins/studiovx/marcleopold/updates/add_fields_to_albums_table.php similarity index 100% rename from server/plugins/studiovx/marcleopold/updates/add_fields_to_albums_table.php rename to cms/plugins/studiovx/marcleopold/updates/add_fields_to_albums_table.php diff --git a/server/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_index_images.php b/cms/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_index_images.php similarity index 100% rename from server/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_index_images.php rename to cms/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_index_images.php diff --git a/server/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_index_taglines.php b/cms/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_index_taglines.php similarity index 100% rename from server/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_index_taglines.php rename to cms/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_index_taglines.php diff --git a/server/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_pages.php b/cms/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_pages.php similarity index 100% rename from server/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_pages.php rename to cms/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_pages.php diff --git a/server/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_services.php b/cms/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_services.php similarity index 100% rename from server/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_services.php rename to cms/plugins/studiovx/marcleopold/updates/builder_table_create_studiovx_marcleopold_services.php diff --git a/server/plugins/studiovx/marcleopold/updates/version.yaml b/cms/plugins/studiovx/marcleopold/updates/version.yaml similarity index 100% rename from server/plugins/studiovx/marcleopold/updates/version.yaml rename to cms/plugins/studiovx/marcleopold/updates/version.yaml diff --git a/server/plugins/xeor/contenttype/LICENSE.md b/cms/plugins/xeor/contenttype/LICENSE.md similarity index 100% rename from server/plugins/xeor/contenttype/LICENSE.md rename to cms/plugins/xeor/contenttype/LICENSE.md diff --git a/server/plugins/xeor/contenttype/Plugin.php b/cms/plugins/xeor/contenttype/Plugin.php similarity index 100% rename from server/plugins/xeor/contenttype/Plugin.php rename to cms/plugins/xeor/contenttype/Plugin.php diff --git a/server/plugins/xeor/contenttype/README.md b/cms/plugins/xeor/contenttype/README.md similarity index 100% rename from server/plugins/xeor/contenttype/README.md rename to cms/plugins/xeor/contenttype/README.md diff --git a/server/plugins/xeor/contenttype/lang/en/lang.php b/cms/plugins/xeor/contenttype/lang/en/lang.php similarity index 100% rename from server/plugins/xeor/contenttype/lang/en/lang.php rename to cms/plugins/xeor/contenttype/lang/en/lang.php diff --git a/server/plugins/xeor/contenttype/updates/version.yaml b/cms/plugins/xeor/contenttype/updates/version.yaml similarity index 100% rename from server/plugins/xeor/contenttype/updates/version.yaml rename to cms/plugins/xeor/contenttype/updates/version.yaml diff --git a/server/storage/README.md b/cms/storage/README.md similarity index 100% rename from server/storage/README.md rename to cms/storage/README.md diff --git a/server/storage/app/media/.gitkeep b/cms/storage/app/media/.gitkeep similarity index 100% rename from server/storage/app/media/.gitkeep rename to cms/storage/app/media/.gitkeep diff --git a/server/themes/marc-leopold-api/pages/about.htm b/cms/themes/marc-leopold-api/pages/about.htm similarity index 100% rename from server/themes/marc-leopold-api/pages/about.htm rename to cms/themes/marc-leopold-api/pages/about.htm diff --git a/server/themes/marc-leopold-api/pages/albums.htm b/cms/themes/marc-leopold-api/pages/albums.htm similarity index 100% rename from server/themes/marc-leopold-api/pages/albums.htm rename to cms/themes/marc-leopold-api/pages/albums.htm diff --git a/server/themes/marc-leopold-api/pages/api-home.htm b/cms/themes/marc-leopold-api/pages/api-home.htm similarity index 100% rename from server/themes/marc-leopold-api/pages/api-home.htm rename to cms/themes/marc-leopold-api/pages/api-home.htm diff --git a/server/themes/marc-leopold-api/pages/navigation.htm b/cms/themes/marc-leopold-api/pages/navigation.htm similarity index 100% rename from server/themes/marc-leopold-api/pages/navigation.htm rename to cms/themes/marc-leopold-api/pages/navigation.htm diff --git a/server/themes/marc-leopold-api/pages/page.htm b/cms/themes/marc-leopold-api/pages/page.htm similarity index 100% rename from server/themes/marc-leopold-api/pages/page.htm rename to cms/themes/marc-leopold-api/pages/page.htm diff --git a/server/themes/marc-leopold-api/pages/services.htm b/cms/themes/marc-leopold-api/pages/services.htm similarity index 100% rename from server/themes/marc-leopold-api/pages/services.htm rename to cms/themes/marc-leopold-api/pages/services.htm diff --git a/server/themes/marc-leopold-api/theme.yaml b/cms/themes/marc-leopold-api/theme.yaml similarity index 100% rename from server/themes/marc-leopold-api/theme.yaml rename to cms/themes/marc-leopold-api/theme.yaml diff --git a/server/yarn.lock b/cms/yarn.lock similarity index 100% rename from server/yarn.lock rename to cms/yarn.lock diff --git a/docker-compose.yml b/docker-compose.yml index 2b9618b..149b7b0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,15 +9,15 @@ services: - ${URL_INTERNAL}:3003:3003 environment: - URL_INTERNAL=${URL_INTERNAL} - - URL_EXTERNAL=${URL_EXTERNAL} + - URL_CMS=${URL_CMS} - PORT_APP=${PORT_APP} - - PORT_SERVER=${PORT_SERVER} + - PORT_CMS=${PORT_CMS} command: "npm run start" octobercms: image: aspendigital/octobercms:latest - build: ./server/ + build: ./cms/ restart: always ports: - ${URL_INTERNAL}:3004:80 @@ -25,11 +25,11 @@ services: - ENABLE_CRON=true - APP_DEBUG=false - INIT_PLUGINS=true - - APP_URL=${URL_EXTERNAL} + - APP_URL=${URL_CMS} - CMS_LINK_POLICY=force volumes: - - ./server/plugins:/var/www/html/plugins - - ./server/storage/app:/var/www/html/storage/app - - ./server/storage/logs:/var/www/html/storage/logs - - ./server/storage/database.sqlite:/var/www/html/storage/database.sqlite - - ./server/themes:/var/www/html/themes + - ./cms/plugins:/var/www/html/plugins + - ./cms/storage/app:/var/www/html/storage/app + - ./cms/storage/logs:/var/www/html/storage/logs + - ./cms/storage/database.sqlite:/var/www/html/storage/database.sqlite + - ./cms/themes:/var/www/html/themes