├── .circleci └── config.yml ├── .docker ├── Dockerfile ├── Dockerfile-node ├── Dockerfile-phpunit ├── mysql │ └── dump.sql.gz └── wp-cli │ └── wp-cli.sh ├── .editorconfig ├── .env.testing.circleci ├── .env.testing.sample ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .nvmrc ├── .parcelrc ├── .phpcs.xml.dist ├── .prettierignore ├── .prettierrc.json ├── .svnignore ├── .zipignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── assets └── wporg │ ├── banner-1544x500.jpg │ ├── banner-772x250.jpg │ ├── icon.svg │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ ├── screenshot-5.png │ ├── screenshot-6.png │ └── screenshot-7.png ├── atlas-content-modeler.php ├── babel.config.json ├── codeception.dist.yml ├── composer.json ├── composer.lock ├── docker-compose-phpunit.yml ├── docker-compose.yml ├── docs ├── DEVELOPMENT.md ├── adr │ ├── 0001-react-beautiful-dnd.md │ ├── 0002-taxonomy-definition-schema.md │ └── readme.md ├── blueprints │ └── index.md ├── bootstrap │ └── BOOTSTRAP.md ├── crud │ └── index.md ├── data │ └── index.md ├── end-of-life │ └── index.md ├── help │ └── model-id-conflicts.md ├── images │ ├── atlas-content-modeler.png │ ├── model-edit-option.png │ ├── model-id-conflict.png │ ├── model-id-field.png │ └── open-site-shell.png ├── mutations │ └── index.md └── wp-cli │ ├── demo-content.md │ └── index.md ├── includes ├── api │ ├── crud-functions.php │ ├── utility-functions.php │ └── validation-functions.php ├── blueprints │ ├── export.php │ ├── fetch.php │ └── import.php ├── class-plugin-updater.php ├── class-validation-exception.php ├── class-wp-error.php ├── components │ └── icons │ │ ├── AddIcon.jsx │ │ ├── AudioIcon.jsx │ │ ├── BooleanIcon.jsx │ │ ├── CloseIcon.jsx │ │ ├── DateIcon.jsx │ │ ├── DownArrow.jsx │ │ ├── EmailIcon.jsx │ │ ├── ErrorIcon.jsx │ │ ├── ExternalLink.jsx │ │ ├── FileIcon.jsx │ │ ├── ImgIcon.jsx │ │ ├── InfoIcon.jsx │ │ ├── LinkIcon.jsx │ │ ├── MediaIcon.jsx │ │ ├── MultipleChoiceIcon.jsx │ │ ├── NumberIcon.jsx │ │ ├── OptionsIcon.jsx │ │ ├── RelationshipIcon.jsx │ │ ├── ReorderIcon.jsx │ │ ├── RichTextIcon.jsx │ │ ├── SettingsIcon.jsx │ │ ├── TextIcon.jsx │ │ ├── TickIcon.jsx │ │ ├── TrashIcon.jsx │ │ ├── UpArrow.jsx │ │ └── index.js ├── content-connect │ ├── LICENSE │ ├── autoload.php │ ├── includes │ │ ├── API │ │ │ └── Search.php │ │ ├── Helpers.php │ │ ├── Plugin.php │ │ ├── QueryIntegration │ │ │ ├── RelationshipQuery.php │ │ │ └── WPQueryIntegration.php │ │ ├── Registry.php │ │ ├── Relationships │ │ │ ├── DeletedItems.php │ │ │ ├── PostToPost.php │ │ │ └── Relationship.php │ │ └── Tables │ │ │ ├── BaseTable.php │ │ │ └── PostToPost.php │ └── readme.md ├── content-registration │ ├── class-wpe-rest-posts-controller.php │ ├── custom-post-types-registration.php │ ├── graphql-mutations.php │ └── register-taxonomies.php ├── publisher │ ├── class-publisher-form-editing-experience.php │ ├── js │ │ └── src │ │ │ ├── App.jsx │ │ │ ├── components │ │ │ ├── Date │ │ │ │ ├── Date.jsx │ │ │ │ ├── DateField.jsx │ │ │ │ ├── RepeatingDate.jsx │ │ │ │ └── index.js │ │ │ ├── Email │ │ │ │ ├── Email.jsx │ │ │ │ ├── EmailHeader.jsx │ │ │ │ ├── RepeatingEmail.jsx │ │ │ │ ├── SoloEmail.jsx │ │ │ │ └── index.js │ │ │ ├── Field.jsx │ │ │ ├── Fields.jsx │ │ │ ├── MediaUploader.jsx │ │ │ ├── Number.jsx │ │ │ ├── RichText │ │ │ │ ├── RepeatingRichText.jsx │ │ │ │ ├── RichText.jsx │ │ │ │ ├── RichTextHeader.jsx │ │ │ │ ├── SoloRichText.jsx │ │ │ │ ├── index.js │ │ │ │ ├── tests │ │ │ │ │ ├── RepeatingRichText.test.js │ │ │ │ │ ├── RichText.test.js │ │ │ │ │ ├── RichTextHeader.test.js │ │ │ │ │ ├── SoloRichText.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── RepeatingRichText.test.js.snap │ │ │ │ │ │ ├── RichText.test.js.snap │ │ │ │ │ │ ├── RichTextHeader.test.js.snap │ │ │ │ │ │ └── SoloRichText.test.js.snap │ │ │ │ │ └── uuid.test.js │ │ │ │ ├── useWPEditor.js │ │ │ │ └── uuid.js │ │ │ ├── Text │ │ │ │ ├── AddRepeatableItemButton.jsx │ │ │ │ ├── Text.jsx │ │ │ │ └── index.js │ │ │ ├── TrashPostModal.jsx │ │ │ ├── relationship │ │ │ │ ├── Entries.jsx │ │ │ │ ├── LinkButton.jsx │ │ │ │ ├── Loader.jsx │ │ │ │ ├── Options.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── modal │ │ │ │ │ ├── Pagination.jsx │ │ │ │ │ ├── Table.jsx │ │ │ │ │ ├── Title.jsx │ │ │ │ │ └── index.jsx │ │ │ └── shared │ │ │ │ └── repeaters │ │ │ │ ├── AddItemButton.jsx │ │ │ │ ├── DeleteItemButton.jsx │ │ │ │ └── useFocusNewFields.js │ │ │ ├── index.jsx │ │ │ └── publisherFormActions.js │ ├── lib │ │ └── field-functions.php │ └── scss │ │ ├── _app-card-publisher.scss │ │ ├── _buttons.scss │ │ ├── _classic-form.scss │ │ ├── _email-field.scss │ │ ├── _loader.scss │ │ ├── _media-field.scss │ │ ├── _number-field.scss │ │ ├── _relationship-modal.scss │ │ ├── _table.scss │ │ ├── _text-field.scss │ │ ├── _tooltip.scss │ │ └── index.scss ├── rest-api │ ├── fields.php │ ├── graphql.php │ ├── init-rest-api.php │ ├── models.php │ ├── routes │ │ ├── content-model-field.php │ │ ├── content-model-fields.php │ │ ├── content-model.php │ │ ├── content-models.php │ │ ├── dismiss-feedback-banner.php │ │ ├── taxonomy.php │ │ └── validate-field.php │ └── taxonomies.php ├── settings │ ├── js │ │ └── src │ │ │ ├── App.jsx │ │ │ ├── ModelsContext.jsx │ │ │ ├── components │ │ │ ├── ContentModelDropdown.jsx │ │ │ ├── CreateContentModel.jsx │ │ │ ├── DeleteModelModal.jsx │ │ │ ├── EditContentModel.jsx │ │ │ ├── EditModelModal.jsx │ │ │ ├── ExportFileButton.jsx │ │ │ ├── FieldButtons.jsx │ │ │ ├── IconPicker.jsx │ │ │ ├── ImportFileButton.jsx │ │ │ ├── Settings.jsx │ │ │ ├── Taxonomies.jsx │ │ │ ├── TaxonomiesDropdown.jsx │ │ │ ├── TaxonomiesForm.jsx │ │ │ ├── TaxonomiesTable.jsx │ │ │ ├── Tools.jsx │ │ │ ├── ViewContentModelsList.jsx │ │ │ └── fields │ │ │ │ ├── AdvancedSettings.jsx │ │ │ │ ├── DateFields.jsx │ │ │ │ ├── EmailFields.jsx │ │ │ │ ├── EmailSettings.jsx │ │ │ │ ├── Field.jsx │ │ │ │ ├── FieldOptionsDropdown.jsx │ │ │ │ ├── Form.jsx │ │ │ │ ├── MediaFields.jsx │ │ │ │ ├── MultipleChoiceFields.jsx │ │ │ │ ├── NumberFields.jsx │ │ │ │ ├── RelationshipFields.jsx │ │ │ │ ├── RichTextFields.jsx │ │ │ │ ├── TextFields.jsx │ │ │ │ ├── eventHandlers.js │ │ │ │ └── supportedFields.js │ │ │ ├── formats │ │ │ ├── formats.test.js │ │ │ └── index.js │ │ │ ├── hooks │ │ │ ├── index.js │ │ │ └── useInputGenerator.js │ │ │ ├── index.jsx │ │ │ ├── queries.js │ │ │ ├── queries.test.js │ │ │ ├── reducer.js │ │ │ ├── taxonomiesReducer.js │ │ │ ├── toasts.js │ │ │ └── utils.js │ ├── reserved-taxonomy-terms.php │ ├── scss │ │ ├── _base.scss │ │ ├── _bootstrap-overrides.scss │ │ ├── _buttons.scss │ │ ├── _dashicons-picker.scss │ │ ├── _field-list.scss │ │ ├── _flex.scss │ │ ├── _forms.scss │ │ ├── _header.scss │ │ ├── _model-list.scss │ │ ├── _open-field.scss │ │ ├── _taxonomies.scss │ │ ├── _toast.scss │ │ └── index.scss │ ├── settings-callbacks.php │ └── views │ │ ├── admin-entry-icon.php │ │ ├── admin-menu-icon.php │ │ └── admin-menu-page.php ├── shared-assets │ ├── js │ │ ├── analytics.js │ │ ├── components │ │ │ ├── Buttons.jsx │ │ │ ├── Buttons.test.js │ │ │ ├── Dropdown.jsx │ │ │ ├── __snapshots__ │ │ │ │ └── Buttons.test.js.snap │ │ │ └── card.jsx │ │ ├── emotion.js │ │ ├── feedback-banner.js │ │ ├── hooks │ │ │ └── usePageVisibility.js │ │ └── validation │ │ │ └── emailValidation.js │ ├── scss │ │ ├── _modals.scss │ │ └── _variables.scss │ ├── views │ │ └── banners │ │ │ └── atlas-content-modeler-feedback-banner.php │ └── wp_scripts │ │ └── shared_assets.php ├── updates │ └── version-updates.php └── wp-cli │ ├── class-blueprint.php │ ├── class-model.php │ ├── class-reset.php │ ├── demo │ ├── acm.json │ └── index.md │ └── trait-acm-log.php ├── jest.config.js ├── package.json ├── phpunit.content-connect.xml ├── phpunit.xml.dist ├── readme.md ├── readme.txt ├── scripts └── buildReadme.js └── tests ├── _data └── .gitignore ├── _output └── .gitignore ├── _support ├── AcceptanceTester.php ├── Helper │ └── Acceptance.php └── _generated │ └── .gitignore ├── acceptance.suite.circleci.yml ├── acceptance.suite.yml ├── acceptance ├── AdminMenuUpdatesCest.php ├── AdvancedSettingsCest.php ├── ConflictingModelCest.php ├── CreateContentModelBooleanFieldCest.php ├── CreateContentModelCest.php ├── CreateContentModelEmailFieldCest.php ├── CreateContentModelMediaFieldCest.php ├── CreateContentModelMultipleChoiceFieldCest.php ├── CreateContentModelNumberFieldCest.php ├── CreateContentModelRelationFieldCest.php ├── CreateContentModelRepeatableTextFieldCest.php ├── CreateContentModelTextFieldCest.php ├── CreateFieldWithIsTitleCest.php ├── CreateFieldWithReservedSlugCest.php ├── CreateRelationshipFieldEntryCest.php ├── CreateRepeatableDateFieldCest.php ├── CreateRepeatableRichTextFieldCest.php ├── CreateTaxonomyCest.php ├── DeleteContentModelCest.php ├── DeleteFieldFromModelCest.php ├── DeleteTaxonomyCest.php ├── EditContentModelCest.php ├── EditFieldCest.php ├── EditTaxonomyCest.php ├── FilterEntryTitlesCest.php ├── OpenInGraphiQLCest.php ├── PageCest.php ├── PublishModelCest.php ├── PublishModelSanitizationCest.php ├── RequiredFieldsCest.php ├── SidebarUpdatesCest.php ├── TrashEntryCest.php ├── UnsavedChangesCest.php ├── UpdateExistingModelEntryCest.php └── UsageTrackingCest.php ├── bootstrap.php ├── content-connect └── integration │ ├── ContentConnectTestCase.php │ ├── Helpers │ ├── GetRegistryTest.php │ └── GetRelatedIdsByNameTest.php │ ├── QueryIntegration │ ├── RelationshipQueryTest.php │ └── WP_Query_IntegrationTest.php │ ├── RegistryTest.php │ ├── Relationships │ ├── DeletedItemsTest.php │ └── PostToPostTest.php │ ├── Tables │ └── PostToPostTest.php │ ├── bootstrap.php │ └── data │ └── posts.sql ├── install-wp-tests.sh ├── integration ├── api-validation │ ├── test-data │ │ ├── fields.php │ │ ├── models.php │ │ └── posts.php │ ├── test-graphql-endpoints.php │ ├── test-graphql-model-data.php │ ├── test-rest-field-endpoints.php │ ├── test-rest-model-data.php │ ├── test-rest-model-endpoints.php │ └── test-rest-models-endpoints.php ├── api │ ├── test-crud-functions.php │ ├── test-data │ │ └── content-models.php │ ├── test-utility-functions.php │ ├── test-validation-exception.php │ ├── test-validation-function.php │ └── test-wp-error-class.php ├── blueprints │ ├── test-blueprint-downloads.php │ ├── test-blueprint-export.php │ ├── test-blueprint-import.php │ ├── test-data │ │ ├── acm-rabbits-renamed.zip │ │ ├── acm-rabbits.zip │ │ ├── blueprint-bad-tags │ │ │ └── acm.json │ │ ├── blueprint-bad-terms │ │ │ └── acm.json │ │ ├── blueprint-good │ │ │ ├── acm.json │ │ │ └── media │ │ │ │ ├── jessica.jpg │ │ │ │ ├── post.jpg │ │ │ │ └── roger.jpg │ │ ├── blueprint-needs-newer-acm │ │ │ └── acm.json │ │ └── blueprint-needs-newer-wordpress │ │ │ └── acm.json │ └── test-reset.php ├── class-integration-test-case.php ├── content-registration │ ├── example-data │ │ └── expected-post-types.php │ ├── test-custom-post-type-registration.php │ ├── test-graphql-taxonomy.php │ ├── test-register-taxonomies.php │ ├── test-relationships-db.php │ ├── test-rest-taxonomy-endpoint.php │ ├── test-rest-wp-taxonomy.php │ └── test-settings-functions.php ├── end-of-life │ └── test-end-of-life.php ├── intelephense-alias.php ├── publisher │ ├── test-content-creation.php │ ├── test-field-functions.php │ ├── test-permalinks.php │ ├── test-post-type-archives.php │ ├── test-publisher-callbacks.php │ ├── test-script-dependencies.php │ └── test-title-filter.php ├── settings │ ├── test-admin-menu-page.php │ ├── test-script-dependencies.php │ ├── test-settings-callbacks.php │ └── test-settings-functions.php ├── updater │ └── test-version-updater.php └── wp-cli │ └── test-model-change-id.php └── jest ├── App.test.js ├── CreateContentModel.test.js ├── __mocks__ └── react-modal.js ├── __snapshots__ ├── App.test.js.snap ├── CreateContentModel.test.js.snap ├── generateAdminBarMenuItem.test.js.snap └── generateSidebarMenuItem.test.js.snap ├── components ├── ExportFileButton.test.js ├── Field.test.js ├── Fields.test.js ├── ImportFileButton.test.js ├── MediaSettings.test.js ├── MediaUploader.test.js ├── __snapshots__ │ ├── ExportFileButton.test.js.snap │ ├── Field.test.js.snap │ ├── Fields.test.js.snap │ ├── ImportFileButton.test.js.snap │ ├── MediaSettings.test.js.snap │ └── MediaUploader.test.js.snap └── analytics.test.js ├── generateAdminBarMenuItem.test.js └── generateSidebarMenuItem.test.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.docker/Dockerfile -------------------------------------------------------------------------------- /.docker/Dockerfile-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.docker/Dockerfile-node -------------------------------------------------------------------------------- /.docker/Dockerfile-phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.docker/Dockerfile-phpunit -------------------------------------------------------------------------------- /.docker/mysql/dump.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.docker/mysql/dump.sql.gz -------------------------------------------------------------------------------- /.docker/wp-cli/wp-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.docker/wp-cli/wp-cli.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.testing.circleci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.env.testing.circleci -------------------------------------------------------------------------------- /.env.testing.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.env.testing.sample -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @wpengine/headless-open-source 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.13.0 2 | -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.parcelrc -------------------------------------------------------------------------------- /.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.phpcs.xml.dist -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.svnignore -------------------------------------------------------------------------------- /.zipignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/.zipignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/Makefile -------------------------------------------------------------------------------- /assets/wporg/banner-1544x500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/banner-1544x500.jpg -------------------------------------------------------------------------------- /assets/wporg/banner-772x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/banner-772x250.jpg -------------------------------------------------------------------------------- /assets/wporg/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/icon.svg -------------------------------------------------------------------------------- /assets/wporg/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/screenshot-1.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/screenshot-2.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/screenshot-3.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/screenshot-4.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/screenshot-5.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/screenshot-6.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/assets/wporg/screenshot-7.png -------------------------------------------------------------------------------- /atlas-content-modeler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/atlas-content-modeler.php -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/babel.config.json -------------------------------------------------------------------------------- /codeception.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/codeception.dist.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose-phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docker-compose-phpunit.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/adr/0001-react-beautiful-dnd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/adr/0001-react-beautiful-dnd.md -------------------------------------------------------------------------------- /docs/adr/0002-taxonomy-definition-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/adr/0002-taxonomy-definition-schema.md -------------------------------------------------------------------------------- /docs/adr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/adr/readme.md -------------------------------------------------------------------------------- /docs/blueprints/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/blueprints/index.md -------------------------------------------------------------------------------- /docs/bootstrap/BOOTSTRAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/bootstrap/BOOTSTRAP.md -------------------------------------------------------------------------------- /docs/crud/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/crud/index.md -------------------------------------------------------------------------------- /docs/data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/data/index.md -------------------------------------------------------------------------------- /docs/end-of-life/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/end-of-life/index.md -------------------------------------------------------------------------------- /docs/help/model-id-conflicts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/help/model-id-conflicts.md -------------------------------------------------------------------------------- /docs/images/atlas-content-modeler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/images/atlas-content-modeler.png -------------------------------------------------------------------------------- /docs/images/model-edit-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/images/model-edit-option.png -------------------------------------------------------------------------------- /docs/images/model-id-conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/images/model-id-conflict.png -------------------------------------------------------------------------------- /docs/images/model-id-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/images/model-id-field.png -------------------------------------------------------------------------------- /docs/images/open-site-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/images/open-site-shell.png -------------------------------------------------------------------------------- /docs/mutations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/mutations/index.md -------------------------------------------------------------------------------- /docs/wp-cli/demo-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/wp-cli/demo-content.md -------------------------------------------------------------------------------- /docs/wp-cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/docs/wp-cli/index.md -------------------------------------------------------------------------------- /includes/api/crud-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/api/crud-functions.php -------------------------------------------------------------------------------- /includes/api/utility-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/api/utility-functions.php -------------------------------------------------------------------------------- /includes/api/validation-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/api/validation-functions.php -------------------------------------------------------------------------------- /includes/blueprints/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/blueprints/export.php -------------------------------------------------------------------------------- /includes/blueprints/fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/blueprints/fetch.php -------------------------------------------------------------------------------- /includes/blueprints/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/blueprints/import.php -------------------------------------------------------------------------------- /includes/class-plugin-updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/class-plugin-updater.php -------------------------------------------------------------------------------- /includes/class-validation-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/class-validation-exception.php -------------------------------------------------------------------------------- /includes/class-wp-error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/class-wp-error.php -------------------------------------------------------------------------------- /includes/components/icons/AddIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/AddIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/AudioIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/AudioIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/BooleanIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/BooleanIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/CloseIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/CloseIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/DateIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/DateIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/DownArrow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/DownArrow.jsx -------------------------------------------------------------------------------- /includes/components/icons/EmailIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/EmailIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/ErrorIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/ErrorIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/ExternalLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/ExternalLink.jsx -------------------------------------------------------------------------------- /includes/components/icons/FileIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/FileIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/ImgIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/ImgIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/InfoIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/InfoIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/LinkIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/LinkIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/MediaIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/MediaIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/MultipleChoiceIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/MultipleChoiceIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/NumberIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/NumberIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/OptionsIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/OptionsIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/RelationshipIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/RelationshipIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/ReorderIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/ReorderIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/RichTextIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/RichTextIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/SettingsIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/SettingsIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/TextIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/TextIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/TickIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/TickIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/TrashIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/TrashIcon.jsx -------------------------------------------------------------------------------- /includes/components/icons/UpArrow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/UpArrow.jsx -------------------------------------------------------------------------------- /includes/components/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/components/icons/index.js -------------------------------------------------------------------------------- /includes/content-connect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/LICENSE -------------------------------------------------------------------------------- /includes/content-connect/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/autoload.php -------------------------------------------------------------------------------- /includes/content-connect/includes/API/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/API/Search.php -------------------------------------------------------------------------------- /includes/content-connect/includes/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/Helpers.php -------------------------------------------------------------------------------- /includes/content-connect/includes/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/Plugin.php -------------------------------------------------------------------------------- /includes/content-connect/includes/QueryIntegration/RelationshipQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/QueryIntegration/RelationshipQuery.php -------------------------------------------------------------------------------- /includes/content-connect/includes/QueryIntegration/WPQueryIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/QueryIntegration/WPQueryIntegration.php -------------------------------------------------------------------------------- /includes/content-connect/includes/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/Registry.php -------------------------------------------------------------------------------- /includes/content-connect/includes/Relationships/DeletedItems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/Relationships/DeletedItems.php -------------------------------------------------------------------------------- /includes/content-connect/includes/Relationships/PostToPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/Relationships/PostToPost.php -------------------------------------------------------------------------------- /includes/content-connect/includes/Relationships/Relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/Relationships/Relationship.php -------------------------------------------------------------------------------- /includes/content-connect/includes/Tables/BaseTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/Tables/BaseTable.php -------------------------------------------------------------------------------- /includes/content-connect/includes/Tables/PostToPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/includes/Tables/PostToPost.php -------------------------------------------------------------------------------- /includes/content-connect/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-connect/readme.md -------------------------------------------------------------------------------- /includes/content-registration/class-wpe-rest-posts-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-registration/class-wpe-rest-posts-controller.php -------------------------------------------------------------------------------- /includes/content-registration/custom-post-types-registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-registration/custom-post-types-registration.php -------------------------------------------------------------------------------- /includes/content-registration/graphql-mutations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-registration/graphql-mutations.php -------------------------------------------------------------------------------- /includes/content-registration/register-taxonomies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/content-registration/register-taxonomies.php -------------------------------------------------------------------------------- /includes/publisher/class-publisher-form-editing-experience.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/class-publisher-form-editing-experience.php -------------------------------------------------------------------------------- /includes/publisher/js/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/App.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Date/Date.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Date/Date.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Date/DateField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Date/DateField.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Date/RepeatingDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Date/RepeatingDate.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Date/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Date"; 2 | -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Email/Email.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Email/Email.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Email/EmailHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Email/EmailHeader.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Email/RepeatingEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Email/RepeatingEmail.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Email/SoloEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Email/SoloEmail.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Email/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Email"; 2 | -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Field.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Fields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Fields.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/MediaUploader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/MediaUploader.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Number.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Number.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/RepeatingRichText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/RepeatingRichText.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/RichText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/RichText.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/RichTextHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/RichTextHeader.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/SoloRichText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/SoloRichText.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./RichText"; 2 | -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/RepeatingRichText.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/RepeatingRichText.test.js -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/RichText.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/RichText.test.js -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/RichTextHeader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/RichTextHeader.test.js -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/SoloRichText.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/SoloRichText.test.js -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/__snapshots__/RepeatingRichText.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/__snapshots__/RepeatingRichText.test.js.snap -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/__snapshots__/RichText.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/__snapshots__/RichText.test.js.snap -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/__snapshots__/RichTextHeader.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/__snapshots__/RichTextHeader.test.js.snap -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/__snapshots__/SoloRichText.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/__snapshots__/SoloRichText.test.js.snap -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/tests/uuid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/tests/uuid.test.js -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/useWPEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/useWPEditor.js -------------------------------------------------------------------------------- /includes/publisher/js/src/components/RichText/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/RichText/uuid.js -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Text/AddRepeatableItemButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Text/AddRepeatableItemButton.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Text/Text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/Text/Text.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/Text/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Text"; 2 | -------------------------------------------------------------------------------- /includes/publisher/js/src/components/TrashPostModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/TrashPostModal.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/Entries.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/Entries.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/LinkButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/LinkButton.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/Loader.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/Options.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/index.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/modal/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/modal/Pagination.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/modal/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/modal/Table.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/modal/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/modal/Title.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/relationship/modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/relationship/modal/index.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/shared/repeaters/AddItemButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/shared/repeaters/AddItemButton.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/shared/repeaters/DeleteItemButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/shared/repeaters/DeleteItemButton.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/components/shared/repeaters/useFocusNewFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/components/shared/repeaters/useFocusNewFields.js -------------------------------------------------------------------------------- /includes/publisher/js/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/index.jsx -------------------------------------------------------------------------------- /includes/publisher/js/src/publisherFormActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/js/src/publisherFormActions.js -------------------------------------------------------------------------------- /includes/publisher/lib/field-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/lib/field-functions.php -------------------------------------------------------------------------------- /includes/publisher/scss/_app-card-publisher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_app-card-publisher.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_buttons.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_classic-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_classic-form.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_email-field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_email-field.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_loader.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_media-field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_media-field.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_number-field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_number-field.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_relationship-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_relationship-modal.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_table.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_text-field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_text-field.scss -------------------------------------------------------------------------------- /includes/publisher/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/_tooltip.scss -------------------------------------------------------------------------------- /includes/publisher/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/publisher/scss/index.scss -------------------------------------------------------------------------------- /includes/rest-api/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/fields.php -------------------------------------------------------------------------------- /includes/rest-api/graphql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/graphql.php -------------------------------------------------------------------------------- /includes/rest-api/init-rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/init-rest-api.php -------------------------------------------------------------------------------- /includes/rest-api/models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/models.php -------------------------------------------------------------------------------- /includes/rest-api/routes/content-model-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/routes/content-model-field.php -------------------------------------------------------------------------------- /includes/rest-api/routes/content-model-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/routes/content-model-fields.php -------------------------------------------------------------------------------- /includes/rest-api/routes/content-model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/routes/content-model.php -------------------------------------------------------------------------------- /includes/rest-api/routes/content-models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/routes/content-models.php -------------------------------------------------------------------------------- /includes/rest-api/routes/dismiss-feedback-banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/routes/dismiss-feedback-banner.php -------------------------------------------------------------------------------- /includes/rest-api/routes/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/routes/taxonomy.php -------------------------------------------------------------------------------- /includes/rest-api/routes/validate-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/routes/validate-field.php -------------------------------------------------------------------------------- /includes/rest-api/taxonomies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/rest-api/taxonomies.php -------------------------------------------------------------------------------- /includes/settings/js/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/App.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/ModelsContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/ModelsContext.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/ContentModelDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/ContentModelDropdown.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/CreateContentModel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/CreateContentModel.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/DeleteModelModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/DeleteModelModal.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/EditContentModel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/EditContentModel.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/EditModelModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/EditModelModal.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/ExportFileButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/ExportFileButton.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/FieldButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/FieldButtons.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/IconPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/IconPicker.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/ImportFileButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/ImportFileButton.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/Settings.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/Taxonomies.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/Taxonomies.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/TaxonomiesDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/TaxonomiesDropdown.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/TaxonomiesForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/TaxonomiesForm.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/TaxonomiesTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/TaxonomiesTable.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/Tools.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/Tools.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/ViewContentModelsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/ViewContentModelsList.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/AdvancedSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/AdvancedSettings.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/DateFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/DateFields.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/EmailFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/EmailFields.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/EmailSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/EmailSettings.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/Field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/Field.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/FieldOptionsDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/FieldOptionsDropdown.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/Form.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/MediaFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/MediaFields.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/MultipleChoiceFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/MultipleChoiceFields.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/NumberFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/NumberFields.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/RelationshipFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/RelationshipFields.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/RichTextFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/RichTextFields.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/TextFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/TextFields.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/eventHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/eventHandlers.js -------------------------------------------------------------------------------- /includes/settings/js/src/components/fields/supportedFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/components/fields/supportedFields.js -------------------------------------------------------------------------------- /includes/settings/js/src/formats/formats.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/formats/formats.test.js -------------------------------------------------------------------------------- /includes/settings/js/src/formats/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/formats/index.js -------------------------------------------------------------------------------- /includes/settings/js/src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/hooks/index.js -------------------------------------------------------------------------------- /includes/settings/js/src/hooks/useInputGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/hooks/useInputGenerator.js -------------------------------------------------------------------------------- /includes/settings/js/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/index.jsx -------------------------------------------------------------------------------- /includes/settings/js/src/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/queries.js -------------------------------------------------------------------------------- /includes/settings/js/src/queries.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/queries.test.js -------------------------------------------------------------------------------- /includes/settings/js/src/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/reducer.js -------------------------------------------------------------------------------- /includes/settings/js/src/taxonomiesReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/taxonomiesReducer.js -------------------------------------------------------------------------------- /includes/settings/js/src/toasts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/toasts.js -------------------------------------------------------------------------------- /includes/settings/js/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/js/src/utils.js -------------------------------------------------------------------------------- /includes/settings/reserved-taxonomy-terms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/reserved-taxonomy-terms.php -------------------------------------------------------------------------------- /includes/settings/scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_base.scss -------------------------------------------------------------------------------- /includes/settings/scss/_bootstrap-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_bootstrap-overrides.scss -------------------------------------------------------------------------------- /includes/settings/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_buttons.scss -------------------------------------------------------------------------------- /includes/settings/scss/_dashicons-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_dashicons-picker.scss -------------------------------------------------------------------------------- /includes/settings/scss/_field-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_field-list.scss -------------------------------------------------------------------------------- /includes/settings/scss/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_flex.scss -------------------------------------------------------------------------------- /includes/settings/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_forms.scss -------------------------------------------------------------------------------- /includes/settings/scss/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_header.scss -------------------------------------------------------------------------------- /includes/settings/scss/_model-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_model-list.scss -------------------------------------------------------------------------------- /includes/settings/scss/_open-field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_open-field.scss -------------------------------------------------------------------------------- /includes/settings/scss/_taxonomies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_taxonomies.scss -------------------------------------------------------------------------------- /includes/settings/scss/_toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/_toast.scss -------------------------------------------------------------------------------- /includes/settings/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/scss/index.scss -------------------------------------------------------------------------------- /includes/settings/settings-callbacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/settings-callbacks.php -------------------------------------------------------------------------------- /includes/settings/views/admin-entry-icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/views/admin-entry-icon.php -------------------------------------------------------------------------------- /includes/settings/views/admin-menu-icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/views/admin-menu-icon.php -------------------------------------------------------------------------------- /includes/settings/views/admin-menu-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/settings/views/admin-menu-page.php -------------------------------------------------------------------------------- /includes/shared-assets/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/analytics.js -------------------------------------------------------------------------------- /includes/shared-assets/js/components/Buttons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/components/Buttons.jsx -------------------------------------------------------------------------------- /includes/shared-assets/js/components/Buttons.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/components/Buttons.test.js -------------------------------------------------------------------------------- /includes/shared-assets/js/components/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/components/Dropdown.jsx -------------------------------------------------------------------------------- /includes/shared-assets/js/components/__snapshots__/Buttons.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/components/__snapshots__/Buttons.test.js.snap -------------------------------------------------------------------------------- /includes/shared-assets/js/components/card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/components/card.jsx -------------------------------------------------------------------------------- /includes/shared-assets/js/emotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/emotion.js -------------------------------------------------------------------------------- /includes/shared-assets/js/feedback-banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/feedback-banner.js -------------------------------------------------------------------------------- /includes/shared-assets/js/hooks/usePageVisibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/hooks/usePageVisibility.js -------------------------------------------------------------------------------- /includes/shared-assets/js/validation/emailValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/js/validation/emailValidation.js -------------------------------------------------------------------------------- /includes/shared-assets/scss/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/scss/_modals.scss -------------------------------------------------------------------------------- /includes/shared-assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/scss/_variables.scss -------------------------------------------------------------------------------- /includes/shared-assets/views/banners/atlas-content-modeler-feedback-banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/views/banners/atlas-content-modeler-feedback-banner.php -------------------------------------------------------------------------------- /includes/shared-assets/wp_scripts/shared_assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/shared-assets/wp_scripts/shared_assets.php -------------------------------------------------------------------------------- /includes/updates/version-updates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/updates/version-updates.php -------------------------------------------------------------------------------- /includes/wp-cli/class-blueprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/wp-cli/class-blueprint.php -------------------------------------------------------------------------------- /includes/wp-cli/class-model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/wp-cli/class-model.php -------------------------------------------------------------------------------- /includes/wp-cli/class-reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/wp-cli/class-reset.php -------------------------------------------------------------------------------- /includes/wp-cli/demo/acm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/wp-cli/demo/acm.json -------------------------------------------------------------------------------- /includes/wp-cli/demo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/wp-cli/demo/index.md -------------------------------------------------------------------------------- /includes/wp-cli/trait-acm-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/includes/wp-cli/trait-acm-log.php -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.content-connect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/phpunit.content-connect.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/readme.txt -------------------------------------------------------------------------------- /scripts/buildReadme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/scripts/buildReadme.js -------------------------------------------------------------------------------- /tests/_data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/_support/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/_support/Helper/Acceptance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/_support/Helper/Acceptance.php -------------------------------------------------------------------------------- /tests/_support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/acceptance.suite.circleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance.suite.circleci.yml -------------------------------------------------------------------------------- /tests/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance.suite.yml -------------------------------------------------------------------------------- /tests/acceptance/AdminMenuUpdatesCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/AdminMenuUpdatesCest.php -------------------------------------------------------------------------------- /tests/acceptance/AdvancedSettingsCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/AdvancedSettingsCest.php -------------------------------------------------------------------------------- /tests/acceptance/ConflictingModelCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/ConflictingModelCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelBooleanFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelBooleanFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelEmailFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelEmailFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelMediaFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelMediaFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelMultipleChoiceFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelMultipleChoiceFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelNumberFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelNumberFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelRelationFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelRelationFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelRepeatableTextFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelRepeatableTextFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateContentModelTextFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateContentModelTextFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateFieldWithIsTitleCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateFieldWithIsTitleCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateFieldWithReservedSlugCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateFieldWithReservedSlugCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateRelationshipFieldEntryCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateRelationshipFieldEntryCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateRepeatableDateFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateRepeatableDateFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateRepeatableRichTextFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateRepeatableRichTextFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreateTaxonomyCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/CreateTaxonomyCest.php -------------------------------------------------------------------------------- /tests/acceptance/DeleteContentModelCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/DeleteContentModelCest.php -------------------------------------------------------------------------------- /tests/acceptance/DeleteFieldFromModelCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/DeleteFieldFromModelCest.php -------------------------------------------------------------------------------- /tests/acceptance/DeleteTaxonomyCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/DeleteTaxonomyCest.php -------------------------------------------------------------------------------- /tests/acceptance/EditContentModelCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/EditContentModelCest.php -------------------------------------------------------------------------------- /tests/acceptance/EditFieldCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/EditFieldCest.php -------------------------------------------------------------------------------- /tests/acceptance/EditTaxonomyCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/EditTaxonomyCest.php -------------------------------------------------------------------------------- /tests/acceptance/FilterEntryTitlesCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/FilterEntryTitlesCest.php -------------------------------------------------------------------------------- /tests/acceptance/OpenInGraphiQLCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/OpenInGraphiQLCest.php -------------------------------------------------------------------------------- /tests/acceptance/PageCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/PageCest.php -------------------------------------------------------------------------------- /tests/acceptance/PublishModelCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/PublishModelCest.php -------------------------------------------------------------------------------- /tests/acceptance/PublishModelSanitizationCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/PublishModelSanitizationCest.php -------------------------------------------------------------------------------- /tests/acceptance/RequiredFieldsCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/RequiredFieldsCest.php -------------------------------------------------------------------------------- /tests/acceptance/SidebarUpdatesCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/SidebarUpdatesCest.php -------------------------------------------------------------------------------- /tests/acceptance/TrashEntryCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/TrashEntryCest.php -------------------------------------------------------------------------------- /tests/acceptance/UnsavedChangesCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/UnsavedChangesCest.php -------------------------------------------------------------------------------- /tests/acceptance/UpdateExistingModelEntryCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/UpdateExistingModelEntryCest.php -------------------------------------------------------------------------------- /tests/acceptance/UsageTrackingCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/acceptance/UsageTrackingCest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/content-connect/integration/ContentConnectTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/ContentConnectTestCase.php -------------------------------------------------------------------------------- /tests/content-connect/integration/Helpers/GetRegistryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/Helpers/GetRegistryTest.php -------------------------------------------------------------------------------- /tests/content-connect/integration/Helpers/GetRelatedIdsByNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/Helpers/GetRelatedIdsByNameTest.php -------------------------------------------------------------------------------- /tests/content-connect/integration/QueryIntegration/RelationshipQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/QueryIntegration/RelationshipQueryTest.php -------------------------------------------------------------------------------- /tests/content-connect/integration/QueryIntegration/WP_Query_IntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/QueryIntegration/WP_Query_IntegrationTest.php -------------------------------------------------------------------------------- /tests/content-connect/integration/RegistryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/RegistryTest.php -------------------------------------------------------------------------------- /tests/content-connect/integration/Relationships/DeletedItemsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/Relationships/DeletedItemsTest.php -------------------------------------------------------------------------------- /tests/content-connect/integration/Relationships/PostToPostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/Relationships/PostToPostTest.php -------------------------------------------------------------------------------- /tests/content-connect/integration/Tables/PostToPostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/Tables/PostToPostTest.php -------------------------------------------------------------------------------- /tests/content-connect/integration/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/bootstrap.php -------------------------------------------------------------------------------- /tests/content-connect/integration/data/posts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/content-connect/integration/data/posts.sql -------------------------------------------------------------------------------- /tests/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/install-wp-tests.sh -------------------------------------------------------------------------------- /tests/integration/api-validation/test-data/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-data/fields.php -------------------------------------------------------------------------------- /tests/integration/api-validation/test-data/models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-data/models.php -------------------------------------------------------------------------------- /tests/integration/api-validation/test-data/posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-data/posts.php -------------------------------------------------------------------------------- /tests/integration/api-validation/test-graphql-endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-graphql-endpoints.php -------------------------------------------------------------------------------- /tests/integration/api-validation/test-graphql-model-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-graphql-model-data.php -------------------------------------------------------------------------------- /tests/integration/api-validation/test-rest-field-endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-rest-field-endpoints.php -------------------------------------------------------------------------------- /tests/integration/api-validation/test-rest-model-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-rest-model-data.php -------------------------------------------------------------------------------- /tests/integration/api-validation/test-rest-model-endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-rest-model-endpoints.php -------------------------------------------------------------------------------- /tests/integration/api-validation/test-rest-models-endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api-validation/test-rest-models-endpoints.php -------------------------------------------------------------------------------- /tests/integration/api/test-crud-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api/test-crud-functions.php -------------------------------------------------------------------------------- /tests/integration/api/test-data/content-models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api/test-data/content-models.php -------------------------------------------------------------------------------- /tests/integration/api/test-utility-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api/test-utility-functions.php -------------------------------------------------------------------------------- /tests/integration/api/test-validation-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api/test-validation-exception.php -------------------------------------------------------------------------------- /tests/integration/api/test-validation-function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api/test-validation-function.php -------------------------------------------------------------------------------- /tests/integration/api/test-wp-error-class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/api/test-wp-error-class.php -------------------------------------------------------------------------------- /tests/integration/blueprints/test-blueprint-downloads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-blueprint-downloads.php -------------------------------------------------------------------------------- /tests/integration/blueprints/test-blueprint-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-blueprint-export.php -------------------------------------------------------------------------------- /tests/integration/blueprints/test-blueprint-import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-blueprint-import.php -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/acm-rabbits-renamed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/acm-rabbits-renamed.zip -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/acm-rabbits.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/acm-rabbits.zip -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/blueprint-bad-tags/acm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/blueprint-bad-tags/acm.json -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/blueprint-bad-terms/acm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/blueprint-bad-terms/acm.json -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/blueprint-good/acm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/blueprint-good/acm.json -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/blueprint-good/media/jessica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/blueprint-good/media/jessica.jpg -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/blueprint-good/media/post.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/blueprint-good/media/post.jpg -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/blueprint-good/media/roger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/blueprint-good/media/roger.jpg -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/blueprint-needs-newer-acm/acm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/blueprint-needs-newer-acm/acm.json -------------------------------------------------------------------------------- /tests/integration/blueprints/test-data/blueprint-needs-newer-wordpress/acm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-data/blueprint-needs-newer-wordpress/acm.json -------------------------------------------------------------------------------- /tests/integration/blueprints/test-reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/blueprints/test-reset.php -------------------------------------------------------------------------------- /tests/integration/class-integration-test-case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/class-integration-test-case.php -------------------------------------------------------------------------------- /tests/integration/content-registration/example-data/expected-post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/content-registration/example-data/expected-post-types.php -------------------------------------------------------------------------------- /tests/integration/content-registration/test-custom-post-type-registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/content-registration/test-custom-post-type-registration.php -------------------------------------------------------------------------------- /tests/integration/content-registration/test-graphql-taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/content-registration/test-graphql-taxonomy.php -------------------------------------------------------------------------------- /tests/integration/content-registration/test-register-taxonomies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/content-registration/test-register-taxonomies.php -------------------------------------------------------------------------------- /tests/integration/content-registration/test-relationships-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/content-registration/test-relationships-db.php -------------------------------------------------------------------------------- /tests/integration/content-registration/test-rest-taxonomy-endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/content-registration/test-rest-taxonomy-endpoint.php -------------------------------------------------------------------------------- /tests/integration/content-registration/test-rest-wp-taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/content-registration/test-rest-wp-taxonomy.php -------------------------------------------------------------------------------- /tests/integration/content-registration/test-settings-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/content-registration/test-settings-functions.php -------------------------------------------------------------------------------- /tests/integration/end-of-life/test-end-of-life.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/end-of-life/test-end-of-life.php -------------------------------------------------------------------------------- /tests/integration/intelephense-alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/intelephense-alias.php -------------------------------------------------------------------------------- /tests/integration/publisher/test-content-creation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/publisher/test-content-creation.php -------------------------------------------------------------------------------- /tests/integration/publisher/test-field-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/publisher/test-field-functions.php -------------------------------------------------------------------------------- /tests/integration/publisher/test-permalinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/publisher/test-permalinks.php -------------------------------------------------------------------------------- /tests/integration/publisher/test-post-type-archives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/publisher/test-post-type-archives.php -------------------------------------------------------------------------------- /tests/integration/publisher/test-publisher-callbacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/publisher/test-publisher-callbacks.php -------------------------------------------------------------------------------- /tests/integration/publisher/test-script-dependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/publisher/test-script-dependencies.php -------------------------------------------------------------------------------- /tests/integration/publisher/test-title-filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/publisher/test-title-filter.php -------------------------------------------------------------------------------- /tests/integration/settings/test-admin-menu-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/settings/test-admin-menu-page.php -------------------------------------------------------------------------------- /tests/integration/settings/test-script-dependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/settings/test-script-dependencies.php -------------------------------------------------------------------------------- /tests/integration/settings/test-settings-callbacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/settings/test-settings-callbacks.php -------------------------------------------------------------------------------- /tests/integration/settings/test-settings-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/settings/test-settings-functions.php -------------------------------------------------------------------------------- /tests/integration/updater/test-version-updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/updater/test-version-updater.php -------------------------------------------------------------------------------- /tests/integration/wp-cli/test-model-change-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/integration/wp-cli/test-model-change-id.php -------------------------------------------------------------------------------- /tests/jest/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/App.test.js -------------------------------------------------------------------------------- /tests/jest/CreateContentModel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/CreateContentModel.test.js -------------------------------------------------------------------------------- /tests/jest/__mocks__/react-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/__mocks__/react-modal.js -------------------------------------------------------------------------------- /tests/jest/__snapshots__/App.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/__snapshots__/App.test.js.snap -------------------------------------------------------------------------------- /tests/jest/__snapshots__/CreateContentModel.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/__snapshots__/CreateContentModel.test.js.snap -------------------------------------------------------------------------------- /tests/jest/__snapshots__/generateAdminBarMenuItem.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/__snapshots__/generateAdminBarMenuItem.test.js.snap -------------------------------------------------------------------------------- /tests/jest/__snapshots__/generateSidebarMenuItem.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/__snapshots__/generateSidebarMenuItem.test.js.snap -------------------------------------------------------------------------------- /tests/jest/components/ExportFileButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/ExportFileButton.test.js -------------------------------------------------------------------------------- /tests/jest/components/Field.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/Field.test.js -------------------------------------------------------------------------------- /tests/jest/components/Fields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/Fields.test.js -------------------------------------------------------------------------------- /tests/jest/components/ImportFileButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/ImportFileButton.test.js -------------------------------------------------------------------------------- /tests/jest/components/MediaSettings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/MediaSettings.test.js -------------------------------------------------------------------------------- /tests/jest/components/MediaUploader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/MediaUploader.test.js -------------------------------------------------------------------------------- /tests/jest/components/__snapshots__/ExportFileButton.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/__snapshots__/ExportFileButton.test.js.snap -------------------------------------------------------------------------------- /tests/jest/components/__snapshots__/Field.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/__snapshots__/Field.test.js.snap -------------------------------------------------------------------------------- /tests/jest/components/__snapshots__/Fields.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/__snapshots__/Fields.test.js.snap -------------------------------------------------------------------------------- /tests/jest/components/__snapshots__/ImportFileButton.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/__snapshots__/ImportFileButton.test.js.snap -------------------------------------------------------------------------------- /tests/jest/components/__snapshots__/MediaSettings.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/__snapshots__/MediaSettings.test.js.snap -------------------------------------------------------------------------------- /tests/jest/components/__snapshots__/MediaUploader.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/__snapshots__/MediaUploader.test.js.snap -------------------------------------------------------------------------------- /tests/jest/components/analytics.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/components/analytics.test.js -------------------------------------------------------------------------------- /tests/jest/generateAdminBarMenuItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/generateAdminBarMenuItem.test.js -------------------------------------------------------------------------------- /tests/jest/generateSidebarMenuItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/atlas-content-modeler/HEAD/tests/jest/generateSidebarMenuItem.test.js --------------------------------------------------------------------------------