├── .babelrc ├── .github └── workflows │ ├── build-2x.yml │ └── build-3x.yml ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── _build ├── assets │ ├── images │ │ ├── edit.svg │ │ ├── eye-slash.svg │ │ ├── eye.svg │ │ ├── trash-restore.svg │ │ └── trash.svg │ ├── index.js │ ├── js │ │ ├── Sidebar │ │ │ ├── Actions.ts │ │ │ ├── Utils.ts │ │ │ └── index.ts │ │ └── index.ts │ └── sass │ │ └── collections.scss ├── gpm.json ├── gpm_resolvers │ ├── gpm.resolve.bootstrap.php │ └── gpm.resolve.element_property_set.php ├── gpm_scripts │ ├── gpm.script.customevents.php │ ├── gpm.script.defaulttemplate.php │ ├── gpm.script.fixoldcollections.php │ ├── gpm.script.fixselections.php │ ├── gpm.script.fixsystemsettings.php │ ├── gpm.script.fred_get_service.php │ ├── gpm.script.fred_link_element_option_set.php │ ├── gpm.script.migrator.php │ ├── gpm.script.reload_system_settings.php │ ├── gpm.script.switchback.php │ ├── gpm.script.sync_tables.php │ └── gpm.script.tables.php ├── migrations │ ├── 200pl.migration.php │ ├── 340pl.migration.php │ └── 370pl.migration.php └── scripts │ ├── customevents.gpm.php │ ├── defaulttemplate.gpm.php │ ├── fixoldcollections.gpm.php │ ├── fixselections.gpm.php │ ├── fixsystemsettings.gpm.php │ └── switchback.gpm.php ├── assets └── components │ └── collections │ ├── css │ ├── i │ │ └── collection.png │ ├── index.html │ └── mgr.css │ ├── index.html │ ├── js │ ├── index.html │ └── mgr │ │ ├── collections.js │ │ ├── extra │ │ ├── collections.combo.js │ │ ├── collections.renderers.js │ │ ├── griddraganddrop.js │ │ └── hijackclose.js │ │ ├── sections │ │ ├── category │ │ │ └── update.js │ │ └── template │ │ │ ├── home.js │ │ │ └── template.js │ │ └── widgets │ │ ├── category │ │ ├── collections.grid.resources.js │ │ ├── collections.grid.selection.js │ │ ├── collections.panel.category.js │ │ ├── collections.panel.selection.js │ │ └── collections.window.js │ │ └── template │ │ ├── column.grid.js │ │ ├── column.window.js │ │ ├── home.panel.js │ │ ├── template.grid.js │ │ ├── template.panel.js │ │ └── template.window.js │ └── web │ ├── ajax.php │ ├── bars-solid.svg │ ├── fred_integration.css │ ├── fred_integration.js │ └── index.html ├── core └── components │ └── collections │ ├── bootstrap.php │ ├── controllers │ ├── create.class.php │ ├── data.class.php │ ├── home.class.php │ ├── selection │ │ ├── create.class.php │ │ ├── data.class.php │ │ └── update.class.php │ ├── template │ │ ├── create.class.php │ │ ├── export.class.php │ │ └── update.class.php │ └── update.class.php │ ├── elements │ ├── plugins │ │ └── Collections.php │ ├── snippets │ │ └── getSelections.php │ └── widgets │ │ └── test.php │ ├── index.class.php │ ├── lexicon │ ├── cs │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── da │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── de │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── en │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── fr │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── it │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── nl │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── pt │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── ru │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ └── sv │ │ ├── custom.inc.php │ │ ├── default.inc.php │ │ ├── fred.inc.php │ │ ├── selections.inc.php │ │ └── templates.inc.php │ ├── schema │ └── collections.mysql.schema.xml │ ├── src │ ├── Collections.php │ ├── Endpoint │ │ ├── Ajax.php │ │ └── Ajax │ │ │ ├── Endpoint.php │ │ │ ├── GetAuthors.php │ │ │ ├── GetCollection.php │ │ │ ├── GetCollectionView.php │ │ │ └── GetCollections.php │ ├── Events │ │ ├── Event.php │ │ ├── FredBeforeRender.php │ │ ├── FredOnBeforeGetResourceTree.php │ │ ├── OnBeforeDocFormSave.php │ │ ├── OnBeforeEmptyTrash.php │ │ ├── OnDocFormPrerender.php │ │ ├── OnDocFormRender.php │ │ ├── OnManagerPageBeforeRender.php │ │ ├── OnManagerPageInit.php │ │ ├── OnResourceBeforeSort.php │ │ └── OnResourceDuplicate.php │ ├── Model │ │ ├── CollectionContainer.php │ │ ├── CollectionContainerCreateProcessor.php │ │ ├── CollectionContainerUpdateProcessor.php │ │ ├── CollectionResourceTemplate.php │ │ ├── CollectionSelection.php │ │ ├── CollectionSetting.php │ │ ├── CollectionTemplate.php │ │ ├── CollectionTemplateColumn.php │ │ ├── SelectionContainer.php │ │ ├── SelectionContainerCreateProcessor.php │ │ ├── SelectionContainerUpdateProcessor.php │ │ ├── metadata.mysql.php │ │ └── mysql │ │ │ ├── CollectionContainer.php │ │ │ ├── CollectionResourceTemplate.php │ │ │ ├── CollectionSelection.php │ │ │ ├── CollectionSetting.php │ │ │ ├── CollectionTemplate.php │ │ │ ├── CollectionTemplateColumn.php │ │ │ └── SelectionContainer.php │ ├── Processors │ │ ├── Extra │ │ │ ├── Breadcrumbs.php │ │ │ ├── FredGetBlueprints.php │ │ │ ├── GetContentTypes.php │ │ │ ├── GetDerivates.php │ │ │ ├── GetResources.php │ │ │ └── GetTemplates.php │ │ ├── Resource │ │ │ ├── ChangeChildParent.php │ │ │ ├── ChangeParent.php │ │ │ ├── DDReorder.php │ │ │ ├── Delete.php │ │ │ ├── DeleteMultiple.php │ │ │ ├── GetList.php │ │ │ ├── Publish.php │ │ │ ├── PublishMultiple.php │ │ │ ├── Remove.php │ │ │ ├── UnDelete.php │ │ │ ├── UnDeleteMultiple.php │ │ │ ├── UnPublish.php │ │ │ ├── UnPublishMultiple.php │ │ │ └── UpdateFromGrid.php │ │ ├── Selection │ │ │ ├── Create.php │ │ │ ├── DDReorder.php │ │ │ ├── GetList.php │ │ │ ├── Remove.php │ │ │ ├── RemoveMultiple.php │ │ │ └── UpdateFromGrid.php │ │ └── Template │ │ │ ├── Column │ │ │ ├── Create.php │ │ │ ├── DDReorder.php │ │ │ ├── GetList.php │ │ │ ├── Remove.php │ │ │ ├── Update.php │ │ │ └── UpdateFromGrid.php │ │ │ ├── Create.php │ │ │ ├── Duplicate.php │ │ │ ├── Get.php │ │ │ ├── GetList.php │ │ │ ├── Import.php │ │ │ ├── Remove.php │ │ │ ├── Update.php │ │ │ └── UpdateFromGrid.php │ └── Utils.php │ └── templates │ └── template │ ├── home.tpl │ └── template.tpl ├── crowdin.yml ├── package.json ├── postcss.config.js ├── tsconfig.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/build-2x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/.github/workflows/build-2x.yml -------------------------------------------------------------------------------- /.github/workflows/build-3x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/.github/workflows/build-3x.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/README.md -------------------------------------------------------------------------------- /_build/assets/images/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/images/edit.svg -------------------------------------------------------------------------------- /_build/assets/images/eye-slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/images/eye-slash.svg -------------------------------------------------------------------------------- /_build/assets/images/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/images/eye.svg -------------------------------------------------------------------------------- /_build/assets/images/trash-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/images/trash-restore.svg -------------------------------------------------------------------------------- /_build/assets/images/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/images/trash.svg -------------------------------------------------------------------------------- /_build/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/index.js -------------------------------------------------------------------------------- /_build/assets/js/Sidebar/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/js/Sidebar/Actions.ts -------------------------------------------------------------------------------- /_build/assets/js/Sidebar/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/js/Sidebar/Utils.ts -------------------------------------------------------------------------------- /_build/assets/js/Sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/js/Sidebar/index.ts -------------------------------------------------------------------------------- /_build/assets/js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/js/index.ts -------------------------------------------------------------------------------- /_build/assets/sass/collections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/assets/sass/collections.scss -------------------------------------------------------------------------------- /_build/gpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm.json -------------------------------------------------------------------------------- /_build/gpm_resolvers/gpm.resolve.bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_resolvers/gpm.resolve.bootstrap.php -------------------------------------------------------------------------------- /_build/gpm_resolvers/gpm.resolve.element_property_set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_resolvers/gpm.resolve.element_property_set.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.customevents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.customevents.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.defaulttemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.defaulttemplate.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.fixoldcollections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.fixoldcollections.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.fixselections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.fixselections.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.fixsystemsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.fixsystemsettings.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.fred_get_service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.fred_get_service.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.fred_link_element_option_set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.fred_link_element_option_set.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.migrator.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.reload_system_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.reload_system_settings.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.switchback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.switchback.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.sync_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.sync_tables.php -------------------------------------------------------------------------------- /_build/gpm_scripts/gpm.script.tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/gpm_scripts/gpm.script.tables.php -------------------------------------------------------------------------------- /_build/migrations/200pl.migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/migrations/200pl.migration.php -------------------------------------------------------------------------------- /_build/migrations/340pl.migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/migrations/340pl.migration.php -------------------------------------------------------------------------------- /_build/migrations/370pl.migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/migrations/370pl.migration.php -------------------------------------------------------------------------------- /_build/scripts/customevents.gpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/scripts/customevents.gpm.php -------------------------------------------------------------------------------- /_build/scripts/defaulttemplate.gpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/scripts/defaulttemplate.gpm.php -------------------------------------------------------------------------------- /_build/scripts/fixoldcollections.gpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/scripts/fixoldcollections.gpm.php -------------------------------------------------------------------------------- /_build/scripts/fixselections.gpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/scripts/fixselections.gpm.php -------------------------------------------------------------------------------- /_build/scripts/fixsystemsettings.gpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/scripts/fixsystemsettings.gpm.php -------------------------------------------------------------------------------- /_build/scripts/switchback.gpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/_build/scripts/switchback.gpm.php -------------------------------------------------------------------------------- /assets/components/collections/css/i/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/css/i/collection.png -------------------------------------------------------------------------------- /assets/components/collections/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/components/collections/css/mgr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/css/mgr.css -------------------------------------------------------------------------------- /assets/components/collections/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/components/collections/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/collections.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/extra/collections.combo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/extra/collections.combo.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/extra/collections.renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/extra/collections.renderers.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/extra/griddraganddrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/extra/griddraganddrop.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/extra/hijackclose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/extra/hijackclose.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/sections/category/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/sections/category/update.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/sections/template/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/sections/template/home.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/sections/template/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/sections/template/template.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/category/collections.grid.resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/category/collections.grid.resources.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/category/collections.grid.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/category/collections.grid.selection.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/category/collections.panel.category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/category/collections.panel.category.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/category/collections.panel.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/category/collections.panel.selection.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/category/collections.window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/category/collections.window.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/template/column.grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/template/column.grid.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/template/column.window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/template/column.window.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/template/home.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/template/home.panel.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/template/template.grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/template/template.grid.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/template/template.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/template/template.panel.js -------------------------------------------------------------------------------- /assets/components/collections/js/mgr/widgets/template/template.window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/js/mgr/widgets/template/template.window.js -------------------------------------------------------------------------------- /assets/components/collections/web/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/web/ajax.php -------------------------------------------------------------------------------- /assets/components/collections/web/bars-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/web/bars-solid.svg -------------------------------------------------------------------------------- /assets/components/collections/web/fred_integration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/web/fred_integration.css -------------------------------------------------------------------------------- /assets/components/collections/web/fred_integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/assets/components/collections/web/fred_integration.js -------------------------------------------------------------------------------- /assets/components/collections/web/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/components/collections/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/bootstrap.php -------------------------------------------------------------------------------- /core/components/collections/controllers/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/create.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/data.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/data.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/home.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/home.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/selection/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/selection/create.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/selection/data.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/selection/data.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/selection/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/selection/update.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/template/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/template/create.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/template/export.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/template/export.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/template/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/template/update.class.php -------------------------------------------------------------------------------- /core/components/collections/controllers/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/controllers/update.class.php -------------------------------------------------------------------------------- /core/components/collections/elements/plugins/Collections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/elements/plugins/Collections.php -------------------------------------------------------------------------------- /core/components/collections/elements/snippets/getSelections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/elements/snippets/getSelections.php -------------------------------------------------------------------------------- /core/components/collections/elements/widgets/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/elements/widgets/test.php -------------------------------------------------------------------------------- /core/components/collections/index.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/index.class.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/cs/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/cs/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/cs/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/cs/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/cs/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/cs/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/cs/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/cs/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/cs/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/cs/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/da/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/da/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/da/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/da/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/da/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/da/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/da/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/da/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/da/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/da/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/de/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/de/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/de/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/de/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/de/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/de/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/de/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/de/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/de/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/de/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/en/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/en/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/en/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/en/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/en/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/en/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/en/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/en/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/en/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/en/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/fr/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/fr/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/fr/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/fr/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/fr/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/fr/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/fr/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/fr/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/fr/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/fr/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/it/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/it/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/it/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/it/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/it/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/it/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/it/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/it/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/it/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/it/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/nl/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/nl/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/nl/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/nl/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/nl/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/nl/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/nl/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/nl/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/nl/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/nl/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/pt/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/pt/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/pt/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/pt/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/pt/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/pt/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/pt/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/pt/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/pt/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/pt/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/ru/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/ru/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/ru/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/ru/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/ru/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/ru/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/ru/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/ru/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/ru/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/ru/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/sv/custom.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/sv/custom.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/sv/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/sv/default.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/sv/fred.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/sv/fred.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/sv/selections.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/sv/selections.inc.php -------------------------------------------------------------------------------- /core/components/collections/lexicon/sv/templates.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/lexicon/sv/templates.inc.php -------------------------------------------------------------------------------- /core/components/collections/schema/collections.mysql.schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/schema/collections.mysql.schema.xml -------------------------------------------------------------------------------- /core/components/collections/src/Collections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Collections.php -------------------------------------------------------------------------------- /core/components/collections/src/Endpoint/Ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Endpoint/Ajax.php -------------------------------------------------------------------------------- /core/components/collections/src/Endpoint/Ajax/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Endpoint/Ajax/Endpoint.php -------------------------------------------------------------------------------- /core/components/collections/src/Endpoint/Ajax/GetAuthors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Endpoint/Ajax/GetAuthors.php -------------------------------------------------------------------------------- /core/components/collections/src/Endpoint/Ajax/GetCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Endpoint/Ajax/GetCollection.php -------------------------------------------------------------------------------- /core/components/collections/src/Endpoint/Ajax/GetCollectionView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Endpoint/Ajax/GetCollectionView.php -------------------------------------------------------------------------------- /core/components/collections/src/Endpoint/Ajax/GetCollections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Endpoint/Ajax/GetCollections.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/Event.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/FredBeforeRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/FredBeforeRender.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/FredOnBeforeGetResourceTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/FredOnBeforeGetResourceTree.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/OnBeforeDocFormSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/OnBeforeDocFormSave.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/OnBeforeEmptyTrash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/OnBeforeEmptyTrash.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/OnDocFormPrerender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/OnDocFormPrerender.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/OnDocFormRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/OnDocFormRender.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/OnManagerPageBeforeRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/OnManagerPageBeforeRender.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/OnManagerPageInit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/OnManagerPageInit.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/OnResourceBeforeSort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/OnResourceBeforeSort.php -------------------------------------------------------------------------------- /core/components/collections/src/Events/OnResourceDuplicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Events/OnResourceDuplicate.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/CollectionContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/CollectionContainer.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/CollectionContainerCreateProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/CollectionContainerCreateProcessor.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/CollectionContainerUpdateProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/CollectionContainerUpdateProcessor.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/CollectionResourceTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/CollectionResourceTemplate.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/CollectionSelection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/CollectionSelection.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/CollectionSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/CollectionSetting.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/CollectionTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/CollectionTemplate.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/CollectionTemplateColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/CollectionTemplateColumn.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/SelectionContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/SelectionContainer.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/SelectionContainerCreateProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/SelectionContainerCreateProcessor.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/SelectionContainerUpdateProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/SelectionContainerUpdateProcessor.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/metadata.mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/metadata.mysql.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/mysql/CollectionContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/mysql/CollectionContainer.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/mysql/CollectionResourceTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/mysql/CollectionResourceTemplate.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/mysql/CollectionSelection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/mysql/CollectionSelection.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/mysql/CollectionSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/mysql/CollectionSetting.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/mysql/CollectionTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/mysql/CollectionTemplate.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/mysql/CollectionTemplateColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/mysql/CollectionTemplateColumn.php -------------------------------------------------------------------------------- /core/components/collections/src/Model/mysql/SelectionContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Model/mysql/SelectionContainer.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Extra/Breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Extra/Breadcrumbs.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Extra/FredGetBlueprints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Extra/FredGetBlueprints.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Extra/GetContentTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Extra/GetContentTypes.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Extra/GetDerivates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Extra/GetDerivates.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Extra/GetResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Extra/GetResources.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Extra/GetTemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Extra/GetTemplates.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/ChangeChildParent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/ChangeChildParent.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/ChangeParent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/ChangeParent.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/DDReorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/DDReorder.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/Delete.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/DeleteMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/DeleteMultiple.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/GetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/GetList.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/Publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/Publish.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/PublishMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/PublishMultiple.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/Remove.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/UnDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/UnDelete.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/UnDeleteMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/UnDeleteMultiple.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/UnPublish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/UnPublish.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/UnPublishMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/UnPublishMultiple.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Resource/UpdateFromGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Resource/UpdateFromGrid.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Selection/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Selection/Create.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Selection/DDReorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Selection/DDReorder.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Selection/GetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Selection/GetList.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Selection/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Selection/Remove.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Selection/RemoveMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Selection/RemoveMultiple.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Selection/UpdateFromGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Selection/UpdateFromGrid.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Column/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Column/Create.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Column/DDReorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Column/DDReorder.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Column/GetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Column/GetList.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Column/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Column/Remove.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Column/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Column/Update.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Column/UpdateFromGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Column/UpdateFromGrid.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Create.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Duplicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Duplicate.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Get.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/GetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/GetList.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Import.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Remove.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/Update.php -------------------------------------------------------------------------------- /core/components/collections/src/Processors/Template/UpdateFromGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Processors/Template/UpdateFromGrid.php -------------------------------------------------------------------------------- /core/components/collections/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/src/Utils.php -------------------------------------------------------------------------------- /core/components/collections/templates/template/home.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/templates/template/home.tpl -------------------------------------------------------------------------------- /core/components/collections/templates/template/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/core/components/collections/templates/template/template.tpl -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/crowdin.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modxcms/Collections/HEAD/webpack.config.js --------------------------------------------------------------------------------