├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── AdobeStockAdminUi ├── Block │ └── Adminhtml │ │ └── System │ │ └── Config │ │ ├── HideAdminAdobeImsStatus.php │ │ └── TestConnection.php ├── Controller │ └── Adminhtml │ │ └── System │ │ └── Config │ │ └── TestConnection.php ├── LICENSE.txt ├── LICENSE_AFL.txt ├── README.md ├── Test │ ├── Mftf │ │ ├── ActionGroup │ │ │ ├── AdminAdobeStockSetConfigActionGroup.xml │ │ │ ├── AdminOpenAdobeStockConfigActionGroup.xml │ │ │ ├── AssertAdminAdobeStockConfigFieldsActionGroup.xml │ │ │ ├── AssertAdminAdobeStockConnectionTestActionGroup.xml │ │ │ └── AssertAdminFailedAuthenticationMessageActionGroup.xml │ │ ├── Page │ │ │ └── AdminConfigSystemPage.xml │ │ ├── Section │ │ │ └── AdminConfigSystemSection.xml │ │ ├── Test │ │ │ ├── AdminAdobeStockConfigTest.xml │ │ │ └── AdminCannotAccessStockImagesWithWrongCredentialsTest.xml │ │ ├── test-dependency-allowlist │ │ └── test-dependency-errors-detailed │ └── Unit │ │ └── Controller │ │ └── Adminhtml │ │ └── System │ │ └── Config │ │ └── TestConnectionTest.php ├── composer.json ├── etc │ ├── adminhtml │ │ ├── routes.xml │ │ └── system.xml │ └── module.xml ├── i18n │ └── en_US.csv ├── modman ├── registration.php └── view │ └── adminhtml │ ├── templates │ └── system │ │ └── config │ │ └── connection.phtml │ └── web │ ├── js │ └── connection.js │ └── template │ └── connection.html ├── AdobeStockAsset ├── LICENSE.txt ├── LICENSE_AFL.txt ├── Model │ ├── AppendAttributes.php │ ├── Asset.php │ ├── AssetRepository.php │ ├── Category.php │ ├── CategoryRepository.php │ ├── CategorySearchResults.php │ ├── Creator.php │ ├── CreatorRepository.php │ ├── CreatorSearchResults.php │ ├── GetAssetById.php │ ├── GetAssetList.php │ ├── ResourceModel │ │ ├── Asset.php │ │ ├── Asset │ │ │ ├── Collection.php │ │ │ └── Command │ │ │ │ ├── DeleteById.php │ │ │ │ ├── LoadById.php │ │ │ │ ├── LoadByIds.php │ │ │ │ └── Save.php │ │ ├── Category.php │ │ ├── Category │ │ │ ├── Collection.php │ │ │ └── Command │ │ │ │ ├── DeleteById.php │ │ │ │ ├── LoadById.php │ │ │ │ └── Save.php │ │ ├── Command │ │ │ └── InsertIgnore.php │ │ ├── Creator.php │ │ └── Creator │ │ │ ├── Collection.php │ │ │ └── Command │ │ │ ├── DeleteById.php │ │ │ ├── LoadById.php │ │ │ └── Save.php │ ├── SaveAsset.php │ └── SearchResults.php ├── README.md ├── Test │ ├── Api │ │ ├── AssetRepository │ │ │ ├── DeleteByIdTest.php │ │ │ ├── GetByIdTest.php │ │ │ └── GetListTest.php │ │ └── SearchAdobeStockTest.php │ ├── Integration │ │ └── Model │ │ │ ├── AssetRepositoryTest.php │ │ │ ├── CategoryRepositoryTest.php │ │ │ ├── ClientMock.php │ │ │ ├── CreatorRepositoryTest.php │ │ │ ├── GetAssetByIdTest.php │ │ │ ├── GetAssetListTest.php │ │ │ └── SaveAssetTest.php │ ├── Unit │ │ └── Model │ │ │ ├── CategoryRepositoryTest.php │ │ │ ├── CreatorRepositoryTest.php │ │ │ ├── GetAssetByIdTest.php │ │ │ ├── GetAssetListTest.php │ │ │ └── SaveAssetTest.php │ └── _files │ │ ├── asset.php │ │ ├── asset_rollback.php │ │ ├── category.php │ │ ├── category_rollback.php │ │ ├── creator.php │ │ ├── creator_rollback.php │ │ ├── media_asset.php │ │ └── media_asset_rollback.php ├── composer.json ├── etc │ ├── acl.xml │ ├── db_schema.xml │ ├── db_schema_whitelist.json │ ├── di.xml │ ├── module.xml │ └── webapi.xml ├── i18n │ └── en_US.csv ├── modman └── registration.php ├── AdobeStockAssetApi ├── Api │ ├── AssetRepositoryInterface.php │ ├── CategoryRepositoryInterface.php │ ├── CreatorRepositoryInterface.php │ ├── Data │ │ ├── AssetInterface.php │ │ ├── AssetSearchResultsInterface.php │ │ ├── CategoryInterface.php │ │ ├── CategorySearchResultsInterface.php │ │ ├── CreatorInterface.php │ │ └── CreatorSearchResultsInterface.php │ ├── GetAssetByIdInterface.php │ ├── GetAssetListInterface.php │ └── SaveAssetInterface.php ├── LICENSE.txt ├── LICENSE_AFL.txt ├── Model │ ├── Asset │ │ └── Command │ │ │ ├── DeleteByIdInterface.php │ │ │ ├── LoadByIdInterface.php │ │ │ ├── LoadByIdsInterface.php │ │ │ └── SaveInterface.php │ ├── Category │ │ └── Command │ │ │ ├── DeleteByIdInterface.php │ │ │ ├── LoadByIdInterface.php │ │ │ └── SaveInterface.php │ └── Creator │ │ └── Command │ │ ├── DeleteByIdInterface.php │ │ ├── LoadByIdInterface.php │ │ └── SaveInterface.php ├── README.md ├── composer.json ├── etc │ └── module.xml ├── modman └── registration.php ├── AdobeStockClient ├── LICENSE.txt ├── LICENSE_AFL.txt ├── Model │ ├── Client.php │ ├── Client │ │ └── Files.php │ ├── Config.php │ ├── ConnectionFactory.php │ ├── ConnectionWrapper.php │ ├── FilesRequestFactory.php │ ├── LicenseConfirmation.php │ ├── SearchParameterProviderInterface.php │ ├── SearchParametersProvider │ │ ├── ContentType.php │ │ ├── Isolated.php │ │ ├── MediaId.php │ │ ├── Offensive.php │ │ ├── Orientation.php │ │ ├── Pagination.php │ │ ├── Premium.php │ │ ├── Similar.php │ │ ├── SimpleFilters.php │ │ ├── Sorting.php │ │ └── Words.php │ ├── SearchParametersProviderComposite.php │ ├── StockFileToDocument.php │ └── UserQuota.php ├── README.md ├── Test │ ├── Integration │ │ └── Model │ │ │ ├── Client │ │ │ └── FilesTest.php │ │ │ └── ClientTest.php │ └── Unit │ │ └── Model │ │ ├── Client │ │ └── Files │ │ │ └── FilesTest.php │ │ ├── ClientTest.php │ │ ├── ConfigTest.php │ │ ├── ConnectionFactoryTest.php │ │ ├── ConnectionWrapperTest.php │ │ ├── SearchParametersProvider │ │ ├── ContentTypeTest.php │ │ ├── IsolatedTest.php │ │ ├── MediaIdTest.php │ │ ├── OffensiveTest.php │ │ ├── OrientationTest.php │ │ ├── PaginationTest.php │ │ ├── PremiumTest.php │ │ ├── SimilarTest.php │ │ ├── SimpleFiltersTest.php │ │ ├── SortingTest.php │ │ └── WordsTest.php │ │ ├── SearchParametersProviderCompositeTest.php │ │ └── StockFileToDocumentTest.php ├── composer.json ├── etc │ ├── config.xml │ ├── di.xml │ └── module.xml ├── i18n │ └── en_US.csv ├── modman └── registration.php ├── AdobeStockClientApi ├── Api │ ├── Client │ │ └── FilesInterface.php │ ├── ClientInterface.php │ ├── ConfigInterface.php │ └── Data │ │ ├── LicenseConfirmationInterface.php │ │ └── UserQuotaInterface.php ├── LICENSE.txt ├── LICENSE_AFL.txt ├── README.md ├── composer.json ├── etc │ └── module.xml ├── modman └── registration.php ├── AdobeStockImage ├── LICENSE.txt ├── LICENSE_AFL.txt ├── Model │ ├── Config.php │ ├── Extract │ │ ├── AdobeStockAsset.php │ │ ├── Keywords.php │ │ └── MediaGalleryAsset.php │ ├── GetImageList.php │ ├── GetRelatedImages.php │ ├── SaveImage.php │ ├── SaveImageFile.php │ ├── SaveKeywords.php │ ├── SaveLicensedImage.php │ ├── SaveMediaGalleryAsset.php │ ├── SerializeImage.php │ └── Storage │ │ └── Save.php ├── README.md ├── Test │ ├── Api │ │ └── SearchExecuteTest.php │ ├── Integration │ │ ├── Model │ │ │ ├── Extract │ │ │ │ └── DocumentToAssetTest.php │ │ │ ├── HttpsDriverMock.php │ │ │ └── SaveImageTest.php │ │ └── _files │ │ │ └── magento-logo.png │ ├── Mftf │ │ ├── Test │ │ │ └── StorefrontAdobeStockIntegrationApiSwaggerActionsExistTest.xml │ │ ├── test-dependency-allowlist │ │ └── test-dependency-errors-detailed │ └── Unit │ │ └── Model │ │ ├── GetImageListTest.php │ │ ├── GetRelatedImagesTest.php │ │ ├── SaveImageFileTest.php │ │ ├── SaveImageTest.php │ │ ├── SaveLicensedImageTest.php │ │ ├── SaveMediaGalleryAssetTest.php │ │ ├── SerializeImageTest.php │ │ └── Storage │ │ └── SaveTest.php ├── composer.json ├── etc │ ├── config.xml │ ├── di.xml │ ├── module.xml │ └── webapi.xml ├── i18n │ └── en_US.csv ├── modman └── registration.php ├── AdobeStockImageAdminUi ├── Controller │ └── Adminhtml │ │ ├── Asset │ │ └── GetMediaGalleryAsset.php │ │ ├── License │ │ ├── Confirmation.php │ │ ├── GetList.php │ │ ├── License.php │ │ ├── Quota.php │ │ └── SaveLicensed.php │ │ └── Preview │ │ ├── Download.php │ │ └── RelatedImages.php ├── LICENSE.txt ├── LICENSE_AFL.txt ├── Model │ ├── Asset │ │ └── GetMediaGalleryAssetByAdobeId.php │ ├── IsAdobeStockIntegrationEnabled.php │ ├── Listing │ │ └── DataProvider.php │ ├── SearchCriteria │ │ └── CollectionProcessor │ │ │ └── JoinProcessor │ │ │ └── IsLicensed.php │ └── SignInConfigProvider.php ├── Plugin │ ├── AddAdobeStockImageDetailsPlugin.php │ ├── AddAdobeStockSourceOptionPlugin.php │ └── AddSearchButton.php ├── README.md ├── Test │ ├── Mftf │ │ ├── ActionGroup │ │ │ ├── AdminAdobeStockApplyIsolatedFilterActionGroup.xml │ │ │ ├── AdminAdobeStockAssertFolderSelectedActionGroup.xml │ │ │ ├── AdminAdobeStockAssertUserLoggedActionGroup.xml │ │ │ ├── AdminAdobeStockAssertUserNotLoggedActionGroup.xml │ │ │ ├── AdminAdobeStockClickLicenseActionGroup.xml │ │ │ ├── AdminAdobeStockClickSignInActionGroup.xml │ │ │ ├── AdminAdobeStockClickSortActionGroup.xml │ │ │ ├── AdminAdobeStockCloseSearchModalActionGroup.xml │ │ │ ├── AdminAdobeStockExpandFiltersActionGroup.xml │ │ │ ├── AdminAdobeStockExpandImagePreviewActionGroup.xml │ │ │ ├── AdminAdobeStockExpandSpecifiedImagePreviewActionGroup.xml │ │ │ ├── AdminAdobeStockImageAssertLicenseButtonNotAvailableInMediaGalleryActionGroup.xml │ │ │ ├── AdminAdobeStockImagePreviewLocateActionGroup.xml │ │ │ ├── AdminAdobeStockImsConditionLogoutActionGroup.xml │ │ │ ├── AdminAdobeStockImsPopupClickSignInActionGroup.xml │ │ │ ├── AdminAdobeStockImsPopupSignInFillUserDataActionGroup.xml │ │ │ ├── AdminAdobeStockMediaGalleryClearFiltersActionGroup.xml │ │ │ ├── AdminAdobeStockMediaGallerySearchByKeywordActionGroup.xml │ │ │ ├── AdminAdobeStockModalClearAllFiltersActionGroup.xml │ │ │ ├── AdminAdobeStockOpenFromEnhancedMediaGalleryActionGroup.xml │ │ │ ├── AdminAdobeStockOpenNextPageActionGroup.xml │ │ │ ├── AdminAdobeStockOpenPanelFromMediaGalleryActionGroup.xml │ │ │ ├── AdminAdobeStockSaveLicensedActionGroup.xml │ │ │ ├── AdminAdobeStockSavePreviewActionGroup.xml │ │ │ ├── AdminAdobeStockSaveViewActionGroup.xml │ │ │ ├── AdminAdobeStockSignedInViewCreditsActionGroup.xml │ │ │ ├── AdminAdobeStockUserSignOutActionGroup.xml │ │ │ ├── AdminAdobeStockVerifyImageDetailsActionGroup.xml │ │ │ ├── AdminApplyColorFilterValueActionGroup.xml │ │ │ ├── AdminApplyNonValidColorValueToFilterActionGroup.xml │ │ │ ├── AdminDeleteSelectedAdobeStockImagePreviewActionGroup.xml │ │ │ ├── AdminEnhancedMediaGallerySearchAdobeStockActionGroup.xml │ │ │ ├── AdminFilterResultsActionGroup.xml │ │ │ ├── AdminImagePreviewKeywordSearchActionGroup.xml │ │ │ ├── AdminMediaGalleryDeleteImageActionGroup.xml │ │ │ ├── AdminNavigateToCreatedUserRoleActionGroup.xml │ │ │ ├── AdminSaveAdobeStockImagePreviewActionGroup.xml │ │ │ ├── AdminSaveAdobeStockImagePreviewAndDontCheckForErrorActionGroup.xml │ │ │ ├── AdminSaveAdobeStockLicensedImageActionGroup.xml │ │ │ ├── AdminSearchImagesOnModalActionGroup.xml │ │ │ ├── AdminUserApplySafeSearchFilterActionGroup.xml │ │ │ ├── AssertAdminAdobeStockCurrentPageNumberActionGroup.xml │ │ │ ├── AssertAdminAdobeStockFilterResultsActionGroup.xml │ │ │ ├── AssertAdminAdobeStockImageAssertLicenseButtonMediaGalleryActionGroup.xml │ │ │ ├── AssertAdminAdobeStockImageKeywordActionGroup.xml │ │ │ ├── AssertAdminAdobeStockImageNotFoundAfterSearchActionGroup.xml │ │ │ ├── AssertAdminAdobeStockImagePreviewAttributeVisibleActionGroup.xml │ │ │ ├── AssertAdminAdobeStockImageSavedActionGroup.xml │ │ │ ├── AssertAdminAdobeStockImageUnlicensedLabelActionGroup.xml │ │ │ ├── AssertAdminAdobeStockImagesNumberMoreForThisModelActionGroup.xml │ │ │ ├── AssertAdminAdobeStockImagesNumberMoreForThisSeriesActionGroup.xml │ │ │ ├── AssertAdminAdobeStockKeywordLocalizedActionGroup.xml │ │ │ ├── AssertAdminAdobeStockThumbnailsNumberActionGroup.xml │ │ │ ├── AssertAdminImageIsVisibleInMediaGalleryActionGroup.xml │ │ │ ├── AssertAdminIsVisibleAdobeStockFilterElementActionGroup.xml │ │ │ └── AssertAdminNumberOfKeywordsInAdobeStockImagePreviewActionGroup.xml │ │ ├── Data │ │ │ ├── AdobeStockConfigData.xml │ │ │ ├── AdobeStockCountPerPageData.xml │ │ │ ├── AdobeStockImageData.xml │ │ │ ├── AdobeStockLoginData.xml │ │ │ └── AdobeStockModalData.xml │ │ ├── LICENSE.txt │ │ ├── LICENSE_AFL.txt │ │ ├── README.md │ │ ├── Section │ │ │ ├── AdminAdobeStockFilterSection.xml │ │ │ ├── AdminAdobeStockImagePreviewSection.xml │ │ │ ├── AdminAdobeStockSaveImagePreviewSection.xml │ │ │ ├── AdminAdobeStockSection.xml │ │ │ ├── AdminEnhancedMediaGalleryActionsSection.xml │ │ │ ├── AdminEnhancedMediaGalleryImageActionsSection.xml │ │ │ ├── AdminEnhancedMediaGalleryImageSection.xml │ │ │ └── AdminEnhancedMediaGalleryViewDetailsSection.xml │ │ ├── Suite │ │ │ ├── AdobeStockIntegrationConfigurationSuite.xml │ │ │ ├── AdobeStockIntegrationImsMixedSuite.xml │ │ │ ├── AdobeStockIntegrationImsSignedSuite.xml │ │ │ ├── AdobeStockIntegrationSuite.xml │ │ │ ├── AdobeStockMediaGalleryImsSignedSuite.xml │ │ │ └── AdobeStockMediaGallerySuite.xml │ │ ├── Test │ │ │ ├── AdminAdobeStockACLTest.xml │ │ │ ├── AdminAdobeStockCheckAddSelectedButtonIsNotAvailableInMassDeleteModeTest.xml │ │ │ ├── AdminAdobeStockColorFilterTest.xml │ │ │ ├── AdminAdobeStockEnablesDisablesEnhancedMediaGalleryTest.xml │ │ │ ├── AdminAdobeStockGridBookmarksTest.xml │ │ │ ├── AdminAdobeStockGridFiltersTest.xml │ │ │ ├── AdminAdobeStockGridSortTest.xml │ │ │ ├── AdminAdobeStockGridTest.xml │ │ │ ├── AdminAdobeStockImagePreviewAttributesTest.xml │ │ │ ├── AdminAdobeStockImagePreviewKeywordsSearchTest.xml │ │ │ ├── AdminAdobeStockImagePreviewKeywordsTest.xml │ │ │ ├── AdminAdobeStockImagePreviewLocateTest.xml │ │ │ ├── AdminAdobeStockImagePreviewSameModelSeeMoreTest.xml │ │ │ ├── AdminAdobeStockImagePreviewSameModelTest.xml │ │ │ ├── AdminAdobeStockImagePreviewSameSeriesSeeMoreTest.xml │ │ │ ├── AdminAdobeStockImagePreviewSameSeriesTest.xml │ │ │ ├── AdminAdobeStockImageVerifyLicenseActionOnMediaGalleryTest.xml │ │ │ ├── AdminAdobeStockImagesPreviewNavigationTest.xml │ │ │ ├── AdminAdobeStockIncorrectSecretSignInTest.xml │ │ │ ├── AdminAdobeStockInsertRenditionImageFromGalleryFileSizeTest.xml │ │ │ ├── AdminAdobeStockIsolatedFilterTest.xml │ │ │ ├── AdminAdobeStockLicensedImageViewLabelTest.xml │ │ │ ├── AdminAdobeStockListingStateTest.xml │ │ │ ├── AdminAdobeStockLocalizationTest.xml │ │ │ ├── AdminAdobeStockMediaGalleryPaginationTest.xml │ │ │ ├── AdminAdobeStockNotLicensedImageLicenseTest.xml │ │ │ ├── AdminAdobeStockOrientationFilterTest.xml │ │ │ ├── AdminAdobeStockPageNumberTest.xml │ │ │ ├── AdminAdobeStockPanelTest.xml │ │ │ ├── AdminAdobeStockPriceFilterTest.xml │ │ │ ├── AdminAdobeStockSafeContentFilterTest.xml │ │ │ ├── AdminAdobeStockSaveLicenseWithSavedPreviewTest.xml │ │ │ ├── AdminAdobeStockSaveLicensedTest.xml │ │ │ ├── AdminAdobeStockSavePreviewTest.xml │ │ │ ├── AdminAdobeStockSavedLicensedImageLocateTest.xml │ │ │ ├── AdminAdobeStockSearchTest.xml │ │ │ ├── AdminAdobeStockSignInACLTest.xml │ │ │ ├── AdminAdobeStockSignInSignOutTest.xml │ │ │ ├── AdminAdobeStockSignedInCreditsVisibleTest.xml │ │ │ ├── AdminAdobeStockStandaloneMediaGalleryPaginationTest.xml │ │ │ ├── AdminAdobeStockStandaloneMediaGallerySavePreviewTest.xml │ │ │ ├── AdminAdobeStockTryLicenseAlreadyLicensedImageTest.xml │ │ │ ├── AdminAdobeStockTypeFilterTest.xml │ │ │ ├── AdminAdobeStockVerifyLicensedLabelTest.xml │ │ │ ├── AdminAdobeStockVerifyUnlicensedLabelTest.xml │ │ │ ├── AdminCanOpenOnlyOneAdobeSignInWindowTest.xml │ │ │ ├── AdminMediaGalleryCategorySavedPreviewAddSelectedTest.xml │ │ │ ├── AdminMediaGalleryPageSavedPreviewAddSelectedTest.xml │ │ │ ├── AdminMediaGalleryViewAdobeStockDetailsTest.xml │ │ │ ├── AdminSavesTheImagePreviewWithNewNameTest.xml │ │ │ ├── AdminSeeMoreFromSeriesTest.xml │ │ │ ├── AdminStandaloneMediaGallerySearchByKeywordTest.xml │ │ │ ├── AdminStandaloneMediaGalleryUnsuccessfulLicensingTest.xml │ │ │ ├── AdminStandaloneMediaGalleryViewAdobeStockDetailsTest.xml │ │ │ └── AdminViewsStockLicenseStatusTest.xml │ │ ├── class-file-naming-allowlist │ │ ├── test-dependency-allowlist │ │ └── test-dependency-errors-detailed │ └── Unit │ │ ├── Controller │ │ └── Adminhtml │ │ │ ├── License │ │ │ ├── ConfirmationTest.php │ │ │ ├── LicenseTest.php │ │ │ ├── QuotaTest.php │ │ │ └── SaveLicensedTest.php │ │ │ └── Preview │ │ │ ├── DownloadTest.php │ │ │ └── RelatedImagesTest.php │ │ ├── Model │ │ ├── Block │ │ │ └── Wysiwyg │ │ │ │ └── Images │ │ │ │ └── Content │ │ │ │ └── Plugin │ │ │ │ └── AddSearchButtonTest.php │ │ ├── IsAdobeStockIntegrationEnabledTest.php │ │ ├── Listing │ │ │ └── DataProviderTest.php │ │ └── SignInConfigProviderTest.php │ │ └── Ui │ │ └── Component │ │ └── Listing │ │ └── Filter │ │ └── ColorTest.php ├── Ui │ └── Component │ │ └── Listing │ │ ├── Columns │ │ ├── ContentType │ │ │ └── Options.php │ │ ├── Image.php │ │ ├── ImagePreview.php │ │ ├── Isolated │ │ │ └── Options.php │ │ ├── Licensed │ │ │ └── Options.php │ │ ├── LicensedOverlay.php │ │ ├── Offensive │ │ │ └── Options.php │ │ ├── Orientation │ │ │ └── Options.php │ │ ├── PremiumPrice │ │ │ └── Options.php │ │ └── UnlicensedOverlay.php │ │ ├── Filter │ │ ├── Checkbox.php │ │ ├── Color.php │ │ └── RelatedImages.php │ │ └── SearchAdobeStockButton.php ├── composer.json ├── etc │ ├── acl.xml │ ├── adminhtml │ │ ├── di.xml │ │ └── routes.xml │ ├── csp_whitelist.xml │ └── module.xml ├── i18n │ └── en_US.csv ├── modman ├── registration.php └── view │ └── adminhtml │ ├── layout │ ├── cms_wysiwyg_images_index.xml │ ├── media_gallery_index_index.xml │ └── media_gallery_media_index.xml │ ├── templates │ ├── image_details │ │ └── adobe_stock.phtml │ └── panel.phtml │ ├── ui_component │ ├── adobe_stock_images_listing.xml │ ├── media_gallery_listing.xml │ ├── standalone_adobe_stock_images_listing.xml │ └── standalone_media_gallery_listing.xml │ └── web │ ├── css │ └── source │ │ └── _module.less │ ├── js │ ├── action │ │ ├── confirmQuota.js │ │ ├── getLicenseStatus.js │ │ ├── licenseAndSave.js │ │ ├── save.js │ │ ├── saveLicensed.js │ │ └── savePreview.js │ ├── components │ │ ├── grid │ │ │ └── column │ │ │ │ ├── image-preview.js │ │ │ │ ├── overlay.js │ │ │ │ └── preview │ │ │ │ ├── actions.js │ │ │ │ ├── keywords.js │ │ │ │ └── related.js │ │ └── images-grid-sizes.js │ ├── confirmation │ │ ├── buyCredits.js │ │ ├── license.js │ │ ├── save.js │ │ └── saveLicensed.js │ ├── media-gallery.js │ ├── mediaGallery │ │ └── grid │ │ │ └── columns │ │ │ ├── image │ │ │ └── licenseActions.js │ │ │ └── licenseImage.js │ ├── panel.js │ ├── path-utility.js │ ├── signIn.js │ └── validation │ │ └── validate-image-name.js │ └── template │ ├── grid │ ├── column │ │ ├── image-preview.html │ │ ├── overlay.html │ │ └── preview │ │ │ ├── actions.html │ │ │ ├── keywords.html │ │ │ └── related.html │ ├── filter │ │ ├── checkbox.html │ │ ├── chips.html │ │ └── color.html │ └── toolbar.html │ ├── image │ └── adobe-stock-image-details.html │ ├── mediaGallery │ └── grid │ │ └── columns │ │ └── image │ │ └── licenseActions.html │ ├── modal │ └── adobe-modal-prompt-content.html │ ├── signIn.html │ └── sorting.html ├── AdobeStockImageApi ├── Api │ ├── ConfigInterface.php │ ├── GetImageListInterface.php │ ├── GetRelatedImagesInterface.php │ ├── SaveImageInterface.php │ └── SaveLicensedImageInterface.php ├── LICENSE.txt ├── LICENSE_AFL.txt ├── README.md ├── composer.json ├── etc │ └── module.xml ├── modman └── registration.php ├── CODE_OF_CONDUCT.md ├── COPYING.txt ├── LICENSE.txt ├── LICENSE_AFL.txt ├── README.md ├── _metapackage ├── LICENSE.txt ├── LICENSE_AFL.txt ├── README.md └── composer.json ├── dev └── tests │ ├── acceptance │ ├── .credentials │ └── .env │ └── js │ └── jasmine │ └── tests │ └── app │ └── code │ └── Magento │ └── AdobeStockImageAdminUi │ └── view │ └── adminhtml │ └── web │ └── js │ └── components │ └── grid │ └── column │ └── overlay.test.js └── modman /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS Generated Files 2 | .DS_Store 3 | .vscode 4 | thumbs.db 5 | .idea/ 6 | -------------------------------------------------------------------------------- /AdobeStockAdminUi/Block/Adminhtml/System/Config/HideAdminAdobeImsStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Block/Adminhtml/System/Config/HideAdminAdobeImsStatus.php -------------------------------------------------------------------------------- /AdobeStockAdminUi/Block/Adminhtml/System/Config/TestConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Block/Adminhtml/System/Config/TestConnection.php -------------------------------------------------------------------------------- /AdobeStockAdminUi/Controller/Adminhtml/System/Config/TestConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Controller/Adminhtml/System/Config/TestConnection.php -------------------------------------------------------------------------------- /AdobeStockAdminUi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockAdminUi/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockAdminUi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/README.md -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSetConfigActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSetConfigActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/ActionGroup/AdminOpenAdobeStockConfigActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/ActionGroup/AdminOpenAdobeStockConfigActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockConfigFieldsActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockConfigFieldsActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockConnectionTestActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockConnectionTestActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/ActionGroup/AssertAdminFailedAuthenticationMessageActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/ActionGroup/AssertAdminFailedAuthenticationMessageActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/Page/AdminConfigSystemPage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/Page/AdminConfigSystemPage.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/Section/AdminConfigSystemSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/Section/AdminConfigSystemSection.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/Test/AdminAdobeStockConfigTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/Test/AdminAdobeStockConfigTest.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/Test/AdminCannotAccessStockImagesWithWrongCredentialsTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/Test/AdminCannotAccessStockImagesWithWrongCredentialsTest.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/test-dependency-allowlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/test-dependency-allowlist -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Mftf/test-dependency-errors-detailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Mftf/test-dependency-errors-detailed -------------------------------------------------------------------------------- /AdobeStockAdminUi/Test/Unit/Controller/Adminhtml/System/Config/TestConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/Test/Unit/Controller/Adminhtml/System/Config/TestConnectionTest.php -------------------------------------------------------------------------------- /AdobeStockAdminUi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/composer.json -------------------------------------------------------------------------------- /AdobeStockAdminUi/etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/etc/module.xml -------------------------------------------------------------------------------- /AdobeStockAdminUi/i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/i18n/en_US.csv -------------------------------------------------------------------------------- /AdobeStockAdminUi/modman: -------------------------------------------------------------------------------- 1 | ./ app/code/Magento/AdobeStockAdminUi -------------------------------------------------------------------------------- /AdobeStockAdminUi/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/registration.php -------------------------------------------------------------------------------- /AdobeStockAdminUi/view/adminhtml/templates/system/config/connection.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/view/adminhtml/templates/system/config/connection.phtml -------------------------------------------------------------------------------- /AdobeStockAdminUi/view/adminhtml/web/js/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/view/adminhtml/web/js/connection.js -------------------------------------------------------------------------------- /AdobeStockAdminUi/view/adminhtml/web/template/connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAdminUi/view/adminhtml/web/template/connection.html -------------------------------------------------------------------------------- /AdobeStockAsset/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockAsset/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockAsset/Model/AppendAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/AppendAttributes.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/Asset.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/AssetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/AssetRepository.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/Category.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/CategoryRepository.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/CategorySearchResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/CategorySearchResults.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/Creator.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/CreatorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/CreatorRepository.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/CreatorSearchResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/CreatorSearchResults.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/GetAssetById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/GetAssetById.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/GetAssetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/GetAssetList.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Asset.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Asset/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Asset/Collection.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Asset/Command/DeleteById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Asset/Command/DeleteById.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Asset/Command/LoadById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Asset/Command/LoadById.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Asset/Command/LoadByIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Asset/Command/LoadByIds.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Asset/Command/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Asset/Command/Save.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Category.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Category/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Category/Collection.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Category/Command/DeleteById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Category/Command/DeleteById.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Category/Command/LoadById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Category/Command/LoadById.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Category/Command/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Category/Command/Save.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Command/InsertIgnore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Command/InsertIgnore.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Creator.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Creator/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Creator/Collection.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Creator/Command/DeleteById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Creator/Command/DeleteById.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Creator/Command/LoadById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Creator/Command/LoadById.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/ResourceModel/Creator/Command/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/ResourceModel/Creator/Command/Save.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/SaveAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/SaveAsset.php -------------------------------------------------------------------------------- /AdobeStockAsset/Model/SearchResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Model/SearchResults.php -------------------------------------------------------------------------------- /AdobeStockAsset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/README.md -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Api/AssetRepository/DeleteByIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Api/AssetRepository/DeleteByIdTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Api/AssetRepository/GetByIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Api/AssetRepository/GetByIdTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Api/AssetRepository/GetListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Api/AssetRepository/GetListTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Api/SearchAdobeStockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Api/SearchAdobeStockTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Integration/Model/AssetRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Integration/Model/AssetRepositoryTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Integration/Model/CategoryRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Integration/Model/CategoryRepositoryTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Integration/Model/ClientMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Integration/Model/ClientMock.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Integration/Model/CreatorRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Integration/Model/CreatorRepositoryTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Integration/Model/GetAssetByIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Integration/Model/GetAssetByIdTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Integration/Model/GetAssetListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Integration/Model/GetAssetListTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Integration/Model/SaveAssetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Integration/Model/SaveAssetTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Unit/Model/CategoryRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Unit/Model/CategoryRepositoryTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Unit/Model/CreatorRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Unit/Model/CreatorRepositoryTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Unit/Model/GetAssetByIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Unit/Model/GetAssetByIdTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Unit/Model/GetAssetListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Unit/Model/GetAssetListTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/Unit/Model/SaveAssetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/Unit/Model/SaveAssetTest.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/_files/asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/_files/asset.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/_files/asset_rollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/_files/asset_rollback.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/_files/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/_files/category.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/_files/category_rollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/_files/category_rollback.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/_files/creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/_files/creator.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/_files/creator_rollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/_files/creator_rollback.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/_files/media_asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/_files/media_asset.php -------------------------------------------------------------------------------- /AdobeStockAsset/Test/_files/media_asset_rollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/Test/_files/media_asset_rollback.php -------------------------------------------------------------------------------- /AdobeStockAsset/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/composer.json -------------------------------------------------------------------------------- /AdobeStockAsset/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/etc/acl.xml -------------------------------------------------------------------------------- /AdobeStockAsset/etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/etc/db_schema.xml -------------------------------------------------------------------------------- /AdobeStockAsset/etc/db_schema_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/etc/db_schema_whitelist.json -------------------------------------------------------------------------------- /AdobeStockAsset/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/etc/di.xml -------------------------------------------------------------------------------- /AdobeStockAsset/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/etc/module.xml -------------------------------------------------------------------------------- /AdobeStockAsset/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/etc/webapi.xml -------------------------------------------------------------------------------- /AdobeStockAsset/i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/i18n/en_US.csv -------------------------------------------------------------------------------- /AdobeStockAsset/modman: -------------------------------------------------------------------------------- 1 | ./ app/code/Magento/AdobeStockAsset -------------------------------------------------------------------------------- /AdobeStockAsset/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAsset/registration.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/AssetRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/AssetRepositoryInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/CategoryRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/CategoryRepositoryInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/CreatorRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/CreatorRepositoryInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/Data/AssetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/Data/AssetInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/Data/AssetSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/Data/AssetSearchResultsInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/Data/CategoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/Data/CategoryInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/Data/CategorySearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/Data/CategorySearchResultsInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/Data/CreatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/Data/CreatorInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/Data/CreatorSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/Data/CreatorSearchResultsInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/GetAssetByIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/GetAssetByIdInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/GetAssetListInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/GetAssetListInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Api/SaveAssetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Api/SaveAssetInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockAssetApi/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Asset/Command/DeleteByIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Asset/Command/DeleteByIdInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Asset/Command/LoadByIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Asset/Command/LoadByIdInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Asset/Command/LoadByIdsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Asset/Command/LoadByIdsInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Asset/Command/SaveInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Asset/Command/SaveInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Category/Command/DeleteByIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Category/Command/DeleteByIdInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Category/Command/LoadByIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Category/Command/LoadByIdInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Category/Command/SaveInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Category/Command/SaveInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Creator/Command/DeleteByIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Creator/Command/DeleteByIdInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Creator/Command/LoadByIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Creator/Command/LoadByIdInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/Model/Creator/Command/SaveInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/Model/Creator/Command/SaveInterface.php -------------------------------------------------------------------------------- /AdobeStockAssetApi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/README.md -------------------------------------------------------------------------------- /AdobeStockAssetApi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/composer.json -------------------------------------------------------------------------------- /AdobeStockAssetApi/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/etc/module.xml -------------------------------------------------------------------------------- /AdobeStockAssetApi/modman: -------------------------------------------------------------------------------- 1 | ./ app/code/Magento/AdobeStockAssetApi -------------------------------------------------------------------------------- /AdobeStockAssetApi/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockAssetApi/registration.php -------------------------------------------------------------------------------- /AdobeStockClient/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockClient/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockClient/Model/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/Client.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/Client/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/Client/Files.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/Config.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/ConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/ConnectionFactory.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/ConnectionWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/ConnectionWrapper.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/FilesRequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/FilesRequestFactory.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/LicenseConfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/LicenseConfirmation.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParameterProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParameterProviderInterface.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/ContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/ContentType.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/Isolated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/Isolated.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/MediaId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/MediaId.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/Offensive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/Offensive.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/Orientation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/Orientation.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/Pagination.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/Premium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/Premium.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/Similar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/Similar.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/SimpleFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/SimpleFilters.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/Sorting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/Sorting.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProvider/Words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProvider/Words.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/SearchParametersProviderComposite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/SearchParametersProviderComposite.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/StockFileToDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/StockFileToDocument.php -------------------------------------------------------------------------------- /AdobeStockClient/Model/UserQuota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Model/UserQuota.php -------------------------------------------------------------------------------- /AdobeStockClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/README.md -------------------------------------------------------------------------------- /AdobeStockClient/Test/Integration/Model/Client/FilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Integration/Model/Client/FilesTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Integration/Model/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Integration/Model/ClientTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/Client/Files/FilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/Client/Files/FilesTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/ClientTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/ConfigTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/ConnectionFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/ConnectionFactoryTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/ConnectionWrapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/ConnectionWrapperTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/ContentTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/ContentTypeTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/IsolatedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/IsolatedTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/MediaIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/MediaIdTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/OffensiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/OffensiveTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/OrientationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/OrientationTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/PaginationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/PaginationTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/PremiumTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/PremiumTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/SimilarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/SimilarTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/SimpleFiltersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/SimpleFiltersTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/SortingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/SortingTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProvider/WordsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProvider/WordsTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/SearchParametersProviderCompositeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/SearchParametersProviderCompositeTest.php -------------------------------------------------------------------------------- /AdobeStockClient/Test/Unit/Model/StockFileToDocumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/Test/Unit/Model/StockFileToDocumentTest.php -------------------------------------------------------------------------------- /AdobeStockClient/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/composer.json -------------------------------------------------------------------------------- /AdobeStockClient/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/etc/config.xml -------------------------------------------------------------------------------- /AdobeStockClient/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/etc/di.xml -------------------------------------------------------------------------------- /AdobeStockClient/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/etc/module.xml -------------------------------------------------------------------------------- /AdobeStockClient/i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/i18n/en_US.csv -------------------------------------------------------------------------------- /AdobeStockClient/modman: -------------------------------------------------------------------------------- 1 | ./ app/code/Magento/AdobeStockClient -------------------------------------------------------------------------------- /AdobeStockClient/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClient/registration.php -------------------------------------------------------------------------------- /AdobeStockClientApi/Api/Client/FilesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/Api/Client/FilesInterface.php -------------------------------------------------------------------------------- /AdobeStockClientApi/Api/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/Api/ClientInterface.php -------------------------------------------------------------------------------- /AdobeStockClientApi/Api/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/Api/ConfigInterface.php -------------------------------------------------------------------------------- /AdobeStockClientApi/Api/Data/LicenseConfirmationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/Api/Data/LicenseConfirmationInterface.php -------------------------------------------------------------------------------- /AdobeStockClientApi/Api/Data/UserQuotaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/Api/Data/UserQuotaInterface.php -------------------------------------------------------------------------------- /AdobeStockClientApi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockClientApi/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockClientApi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/README.md -------------------------------------------------------------------------------- /AdobeStockClientApi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/composer.json -------------------------------------------------------------------------------- /AdobeStockClientApi/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/etc/module.xml -------------------------------------------------------------------------------- /AdobeStockClientApi/modman: -------------------------------------------------------------------------------- 1 | ./ app/code/Magento/AdobeStockClientApi -------------------------------------------------------------------------------- /AdobeStockClientApi/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockClientApi/registration.php -------------------------------------------------------------------------------- /AdobeStockImage/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockImage/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockImage/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/Config.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/Extract/AdobeStockAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/Extract/AdobeStockAsset.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/Extract/Keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/Extract/Keywords.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/Extract/MediaGalleryAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/Extract/MediaGalleryAsset.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/GetImageList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/GetImageList.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/GetRelatedImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/GetRelatedImages.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/SaveImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/SaveImage.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/SaveImageFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/SaveImageFile.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/SaveKeywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/SaveKeywords.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/SaveLicensedImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/SaveLicensedImage.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/SaveMediaGalleryAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/SaveMediaGalleryAsset.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/SerializeImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/SerializeImage.php -------------------------------------------------------------------------------- /AdobeStockImage/Model/Storage/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Model/Storage/Save.php -------------------------------------------------------------------------------- /AdobeStockImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/README.md -------------------------------------------------------------------------------- /AdobeStockImage/Test/Api/SearchExecuteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Api/SearchExecuteTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Integration/Model/Extract/DocumentToAssetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Integration/Model/Extract/DocumentToAssetTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Integration/Model/HttpsDriverMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Integration/Model/HttpsDriverMock.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Integration/Model/SaveImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Integration/Model/SaveImageTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Integration/_files/magento-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Integration/_files/magento-logo.png -------------------------------------------------------------------------------- /AdobeStockImage/Test/Mftf/Test/StorefrontAdobeStockIntegrationApiSwaggerActionsExistTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Mftf/Test/StorefrontAdobeStockIntegrationApiSwaggerActionsExistTest.xml -------------------------------------------------------------------------------- /AdobeStockImage/Test/Mftf/test-dependency-allowlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Mftf/test-dependency-allowlist -------------------------------------------------------------------------------- /AdobeStockImage/Test/Mftf/test-dependency-errors-detailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Mftf/test-dependency-errors-detailed -------------------------------------------------------------------------------- /AdobeStockImage/Test/Unit/Model/GetImageListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Unit/Model/GetImageListTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Unit/Model/GetRelatedImagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Unit/Model/GetRelatedImagesTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Unit/Model/SaveImageFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Unit/Model/SaveImageFileTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Unit/Model/SaveImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Unit/Model/SaveImageTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Unit/Model/SaveLicensedImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Unit/Model/SaveLicensedImageTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Unit/Model/SaveMediaGalleryAssetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Unit/Model/SaveMediaGalleryAssetTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Unit/Model/SerializeImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Unit/Model/SerializeImageTest.php -------------------------------------------------------------------------------- /AdobeStockImage/Test/Unit/Model/Storage/SaveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/Test/Unit/Model/Storage/SaveTest.php -------------------------------------------------------------------------------- /AdobeStockImage/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/composer.json -------------------------------------------------------------------------------- /AdobeStockImage/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/etc/config.xml -------------------------------------------------------------------------------- /AdobeStockImage/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/etc/di.xml -------------------------------------------------------------------------------- /AdobeStockImage/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/etc/module.xml -------------------------------------------------------------------------------- /AdobeStockImage/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/etc/webapi.xml -------------------------------------------------------------------------------- /AdobeStockImage/i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/i18n/en_US.csv -------------------------------------------------------------------------------- /AdobeStockImage/modman: -------------------------------------------------------------------------------- 1 | ./ app/code/Magento/AdobeStockImage -------------------------------------------------------------------------------- /AdobeStockImage/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImage/registration.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Controller/Adminhtml/Asset/GetMediaGalleryAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Controller/Adminhtml/Asset/GetMediaGalleryAsset.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Controller/Adminhtml/License/Confirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Controller/Adminhtml/License/Confirmation.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Controller/Adminhtml/License/GetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Controller/Adminhtml/License/GetList.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Controller/Adminhtml/License/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Controller/Adminhtml/License/License.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Controller/Adminhtml/License/Quota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Controller/Adminhtml/License/Quota.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Controller/Adminhtml/License/SaveLicensed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Controller/Adminhtml/License/SaveLicensed.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Controller/Adminhtml/Preview/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Controller/Adminhtml/Preview/Download.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Controller/Adminhtml/Preview/RelatedImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Controller/Adminhtml/Preview/RelatedImages.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Model/Asset/GetMediaGalleryAssetByAdobeId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Model/Asset/GetMediaGalleryAssetByAdobeId.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Model/IsAdobeStockIntegrationEnabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Model/IsAdobeStockIntegrationEnabled.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Model/Listing/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Model/Listing/DataProvider.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Model/SearchCriteria/CollectionProcessor/JoinProcessor/IsLicensed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Model/SearchCriteria/CollectionProcessor/JoinProcessor/IsLicensed.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Model/SignInConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Model/SignInConfigProvider.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Plugin/AddAdobeStockImageDetailsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Plugin/AddAdobeStockImageDetailsPlugin.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Plugin/AddAdobeStockSourceOptionPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Plugin/AddAdobeStockSourceOptionPlugin.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Plugin/AddSearchButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Plugin/AddSearchButton.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/README.md -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockApplyIsolatedFilterActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockApplyIsolatedFilterActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockAssertFolderSelectedActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockAssertFolderSelectedActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockAssertUserLoggedActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockAssertUserLoggedActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockAssertUserNotLoggedActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockAssertUserNotLoggedActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockClickLicenseActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockClickLicenseActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockClickSignInActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockClickSignInActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockClickSortActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockClickSortActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockCloseSearchModalActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockCloseSearchModalActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockExpandFiltersActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockExpandFiltersActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockExpandImagePreviewActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockExpandImagePreviewActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockExpandSpecifiedImagePreviewActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockExpandSpecifiedImagePreviewActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImageAssertLicenseButtonNotAvailableInMediaGalleryActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImageAssertLicenseButtonNotAvailableInMediaGalleryActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImagePreviewLocateActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImagePreviewLocateActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImsConditionLogoutActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImsConditionLogoutActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImsPopupClickSignInActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImsPopupClickSignInActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImsPopupSignInFillUserDataActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockImsPopupSignInFillUserDataActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockMediaGalleryClearFiltersActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockMediaGalleryClearFiltersActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockMediaGallerySearchByKeywordActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockMediaGallerySearchByKeywordActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockModalClearAllFiltersActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockModalClearAllFiltersActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockOpenFromEnhancedMediaGalleryActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockOpenFromEnhancedMediaGalleryActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockOpenNextPageActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockOpenNextPageActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockOpenPanelFromMediaGalleryActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockOpenPanelFromMediaGalleryActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSaveLicensedActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSaveLicensedActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSavePreviewActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSavePreviewActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSaveViewActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSaveViewActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSignedInViewCreditsActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockSignedInViewCreditsActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockUserSignOutActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockUserSignOutActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockVerifyImageDetailsActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminAdobeStockVerifyImageDetailsActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminApplyColorFilterValueActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminApplyColorFilterValueActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminApplyNonValidColorValueToFilterActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminApplyNonValidColorValueToFilterActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminDeleteSelectedAdobeStockImagePreviewActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminDeleteSelectedAdobeStockImagePreviewActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminEnhancedMediaGallerySearchAdobeStockActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminEnhancedMediaGallerySearchAdobeStockActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminFilterResultsActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminFilterResultsActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminImagePreviewKeywordSearchActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminImagePreviewKeywordSearchActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminMediaGalleryDeleteImageActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminMediaGalleryDeleteImageActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminNavigateToCreatedUserRoleActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminNavigateToCreatedUserRoleActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminSaveAdobeStockImagePreviewActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminSaveAdobeStockImagePreviewActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminSaveAdobeStockImagePreviewAndDontCheckForErrorActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminSaveAdobeStockImagePreviewAndDontCheckForErrorActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminSaveAdobeStockLicensedImageActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminSaveAdobeStockLicensedImageActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminSearchImagesOnModalActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminSearchImagesOnModalActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminUserApplySafeSearchFilterActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AdminUserApplySafeSearchFilterActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockCurrentPageNumberActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockCurrentPageNumberActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockFilterResultsActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockFilterResultsActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageAssertLicenseButtonMediaGalleryActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageAssertLicenseButtonMediaGalleryActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageKeywordActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageKeywordActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageNotFoundAfterSearchActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageNotFoundAfterSearchActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImagePreviewAttributeVisibleActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImagePreviewAttributeVisibleActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageSavedActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageSavedActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageUnlicensedLabelActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImageUnlicensedLabelActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImagesNumberMoreForThisModelActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImagesNumberMoreForThisModelActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImagesNumberMoreForThisSeriesActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockImagesNumberMoreForThisSeriesActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockKeywordLocalizedActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockKeywordLocalizedActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockThumbnailsNumberActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminAdobeStockThumbnailsNumberActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminImageIsVisibleInMediaGalleryActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminImageIsVisibleInMediaGalleryActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminIsVisibleAdobeStockFilterElementActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminIsVisibleAdobeStockFilterElementActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminNumberOfKeywordsInAdobeStockImagePreviewActionGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/ActionGroup/AssertAdminNumberOfKeywordsInAdobeStockImagePreviewActionGroup.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockConfigData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockConfigData.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockCountPerPageData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockCountPerPageData.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockImageData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockImageData.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockLoginData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockLoginData.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockModalData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Data/AdobeStockModalData.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/README.md -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Section/AdminAdobeStockFilterSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Section/AdminAdobeStockFilterSection.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Section/AdminAdobeStockImagePreviewSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Section/AdminAdobeStockImagePreviewSection.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Section/AdminAdobeStockSaveImagePreviewSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Section/AdminAdobeStockSaveImagePreviewSection.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Section/AdminAdobeStockSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Section/AdminAdobeStockSection.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Section/AdminEnhancedMediaGalleryActionsSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Section/AdminEnhancedMediaGalleryActionsSection.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Section/AdminEnhancedMediaGalleryImageActionsSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Section/AdminEnhancedMediaGalleryImageActionsSection.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Section/AdminEnhancedMediaGalleryImageSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Section/AdminEnhancedMediaGalleryImageSection.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Section/AdminEnhancedMediaGalleryViewDetailsSection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Section/AdminEnhancedMediaGalleryViewDetailsSection.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockIntegrationConfigurationSuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockIntegrationConfigurationSuite.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockIntegrationImsMixedSuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockIntegrationImsMixedSuite.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockIntegrationImsSignedSuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockIntegrationImsSignedSuite.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockIntegrationSuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockIntegrationSuite.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockMediaGalleryImsSignedSuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockMediaGalleryImsSignedSuite.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockMediaGallerySuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Suite/AdobeStockMediaGallerySuite.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockACLTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockACLTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockCheckAddSelectedButtonIsNotAvailableInMassDeleteModeTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockCheckAddSelectedButtonIsNotAvailableInMassDeleteModeTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockColorFilterTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockColorFilterTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockEnablesDisablesEnhancedMediaGalleryTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockEnablesDisablesEnhancedMediaGalleryTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockGridBookmarksTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockGridBookmarksTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockGridFiltersTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockGridFiltersTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockGridSortTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockGridSortTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockGridTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockGridTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewAttributesTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewAttributesTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewKeywordsSearchTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewKeywordsSearchTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewKeywordsTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewKeywordsTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewLocateTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewLocateTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewSameModelSeeMoreTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewSameModelSeeMoreTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewSameModelTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewSameModelTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewSameSeriesSeeMoreTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewSameSeriesSeeMoreTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewSameSeriesTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagePreviewSameSeriesTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImageVerifyLicenseActionOnMediaGalleryTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImageVerifyLicenseActionOnMediaGalleryTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagesPreviewNavigationTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockImagesPreviewNavigationTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockIncorrectSecretSignInTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockIncorrectSecretSignInTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockInsertRenditionImageFromGalleryFileSizeTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockInsertRenditionImageFromGalleryFileSizeTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockIsolatedFilterTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockIsolatedFilterTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockLicensedImageViewLabelTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockLicensedImageViewLabelTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockListingStateTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockListingStateTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockLocalizationTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockLocalizationTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockMediaGalleryPaginationTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockMediaGalleryPaginationTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockNotLicensedImageLicenseTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockNotLicensedImageLicenseTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockOrientationFilterTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockOrientationFilterTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockPageNumberTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockPageNumberTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockPanelTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockPanelTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockPriceFilterTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockPriceFilterTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSafeContentFilterTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSafeContentFilterTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSaveLicenseWithSavedPreviewTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSaveLicenseWithSavedPreviewTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSaveLicensedTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSaveLicensedTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSavePreviewTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSavePreviewTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSavedLicensedImageLocateTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSavedLicensedImageLocateTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSearchTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSearchTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSignInACLTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSignInACLTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSignInSignOutTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSignInSignOutTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSignedInCreditsVisibleTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockSignedInCreditsVisibleTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockStandaloneMediaGalleryPaginationTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockStandaloneMediaGalleryPaginationTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockStandaloneMediaGallerySavePreviewTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockStandaloneMediaGallerySavePreviewTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockTryLicenseAlreadyLicensedImageTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockTryLicenseAlreadyLicensedImageTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockTypeFilterTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockTypeFilterTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockVerifyLicensedLabelTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockVerifyLicensedLabelTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockVerifyUnlicensedLabelTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminAdobeStockVerifyUnlicensedLabelTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminCanOpenOnlyOneAdobeSignInWindowTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminCanOpenOnlyOneAdobeSignInWindowTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminMediaGalleryCategorySavedPreviewAddSelectedTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminMediaGalleryCategorySavedPreviewAddSelectedTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminMediaGalleryPageSavedPreviewAddSelectedTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminMediaGalleryPageSavedPreviewAddSelectedTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminMediaGalleryViewAdobeStockDetailsTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminMediaGalleryViewAdobeStockDetailsTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminSavesTheImagePreviewWithNewNameTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminSavesTheImagePreviewWithNewNameTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminSeeMoreFromSeriesTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminSeeMoreFromSeriesTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminStandaloneMediaGallerySearchByKeywordTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminStandaloneMediaGallerySearchByKeywordTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminStandaloneMediaGalleryUnsuccessfulLicensingTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminStandaloneMediaGalleryUnsuccessfulLicensingTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminStandaloneMediaGalleryViewAdobeStockDetailsTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminStandaloneMediaGalleryViewAdobeStockDetailsTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/Test/AdminViewsStockLicenseStatusTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/Test/AdminViewsStockLicenseStatusTest.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/class-file-naming-allowlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/class-file-naming-allowlist -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/test-dependency-allowlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/test-dependency-allowlist -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Mftf/test-dependency-errors-detailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Mftf/test-dependency-errors-detailed -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/License/ConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/License/ConfirmationTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/License/LicenseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/License/LicenseTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/License/QuotaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/License/QuotaTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/License/SaveLicensedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/License/SaveLicensedTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/Preview/DownloadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/Preview/DownloadTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/Preview/RelatedImagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Controller/Adminhtml/Preview/RelatedImagesTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Model/Block/Wysiwyg/Images/Content/Plugin/AddSearchButtonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Model/Block/Wysiwyg/Images/Content/Plugin/AddSearchButtonTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Model/IsAdobeStockIntegrationEnabledTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Model/IsAdobeStockIntegrationEnabledTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Model/Listing/DataProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Model/Listing/DataProviderTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Model/SignInConfigProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Model/SignInConfigProviderTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Test/Unit/Ui/Component/Listing/Filter/ColorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Test/Unit/Ui/Component/Listing/Filter/ColorTest.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/ContentType/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/ContentType/Options.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Image.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/ImagePreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/ImagePreview.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Isolated/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Isolated/Options.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Licensed/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Licensed/Options.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/LicensedOverlay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/LicensedOverlay.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Offensive/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Offensive/Options.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Orientation/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/Orientation/Options.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/PremiumPrice/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/PremiumPrice/Options.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Columns/UnlicensedOverlay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Columns/UnlicensedOverlay.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Filter/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Filter/Checkbox.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Filter/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Filter/Color.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/Filter/RelatedImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/Filter/RelatedImages.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/Ui/Component/Listing/SearchAdobeStockButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/Ui/Component/Listing/SearchAdobeStockButton.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/composer.json -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/etc/acl.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/etc/csp_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/etc/csp_whitelist.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/etc/module.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/i18n/en_US.csv -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/modman: -------------------------------------------------------------------------------- 1 | ./ app/code/Magento/AdobeStockImageAdminUi -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/registration.php -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/layout/cms_wysiwyg_images_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/layout/cms_wysiwyg_images_index.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/layout/media_gallery_index_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/layout/media_gallery_index_index.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/layout/media_gallery_media_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/layout/media_gallery_media_index.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/templates/image_details/adobe_stock.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/templates/image_details/adobe_stock.phtml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/templates/panel.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/templates/panel.phtml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/ui_component/adobe_stock_images_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/ui_component/adobe_stock_images_listing.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/ui_component/media_gallery_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/ui_component/media_gallery_listing.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/ui_component/standalone_adobe_stock_images_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/ui_component/standalone_adobe_stock_images_listing.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/ui_component/standalone_media_gallery_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/ui_component/standalone_media_gallery_listing.xml -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/css/source/_module.less -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/action/confirmQuota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/action/confirmQuota.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/action/getLicenseStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/action/getLicenseStatus.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/action/licenseAndSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/action/licenseAndSave.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/action/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/action/save.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/action/saveLicensed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/action/saveLicensed.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/action/savePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/action/savePreview.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/image-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/image-preview.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/overlay.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/preview/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/preview/actions.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/preview/keywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/preview/keywords.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/preview/related.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/preview/related.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/components/images-grid-sizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/components/images-grid-sizes.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/confirmation/buyCredits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/confirmation/buyCredits.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/confirmation/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/confirmation/license.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/confirmation/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/confirmation/save.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/confirmation/saveLicensed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/confirmation/saveLicensed.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/media-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/media-gallery.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/mediaGallery/grid/columns/image/licenseActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/mediaGallery/grid/columns/image/licenseActions.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/mediaGallery/grid/columns/licenseImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/mediaGallery/grid/columns/licenseImage.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/panel.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/path-utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/path-utility.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/signIn.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/js/validation/validate-image-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/js/validation/validate-image-name.js -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/image-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/image-preview.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/overlay.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/preview/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/preview/actions.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/preview/keywords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/preview/keywords.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/preview/related.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/column/preview/related.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/filter/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/filter/checkbox.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/filter/chips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/filter/chips.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/filter/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/filter/color.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/grid/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/grid/toolbar.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/image/adobe-stock-image-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/image/adobe-stock-image-details.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/mediaGallery/grid/columns/image/licenseActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/mediaGallery/grid/columns/image/licenseActions.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/modal/adobe-modal-prompt-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/modal/adobe-modal-prompt-content.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/signIn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/signIn.html -------------------------------------------------------------------------------- /AdobeStockImageAdminUi/view/adminhtml/web/template/sorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageAdminUi/view/adminhtml/web/template/sorting.html -------------------------------------------------------------------------------- /AdobeStockImageApi/Api/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/Api/ConfigInterface.php -------------------------------------------------------------------------------- /AdobeStockImageApi/Api/GetImageListInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/Api/GetImageListInterface.php -------------------------------------------------------------------------------- /AdobeStockImageApi/Api/GetRelatedImagesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/Api/GetRelatedImagesInterface.php -------------------------------------------------------------------------------- /AdobeStockImageApi/Api/SaveImageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/Api/SaveImageInterface.php -------------------------------------------------------------------------------- /AdobeStockImageApi/Api/SaveLicensedImageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/Api/SaveLicensedImageInterface.php -------------------------------------------------------------------------------- /AdobeStockImageApi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/LICENSE.txt -------------------------------------------------------------------------------- /AdobeStockImageApi/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/LICENSE_AFL.txt -------------------------------------------------------------------------------- /AdobeStockImageApi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/README.md -------------------------------------------------------------------------------- /AdobeStockImageApi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/composer.json -------------------------------------------------------------------------------- /AdobeStockImageApi/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/etc/module.xml -------------------------------------------------------------------------------- /AdobeStockImageApi/modman: -------------------------------------------------------------------------------- 1 | ./ app/code/Magento/AdobeStockImageApi -------------------------------------------------------------------------------- /AdobeStockImageApi/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/AdobeStockImageApi/registration.php -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/LICENSE_AFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/README.md -------------------------------------------------------------------------------- /_metapackage/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/_metapackage/LICENSE.txt -------------------------------------------------------------------------------- /_metapackage/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/_metapackage/LICENSE_AFL.txt -------------------------------------------------------------------------------- /_metapackage/README.md: -------------------------------------------------------------------------------- 1 | # Magento_AdobeStock 2 | -------------------------------------------------------------------------------- /_metapackage/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/_metapackage/composer.json -------------------------------------------------------------------------------- /dev/tests/acceptance/.credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/dev/tests/acceptance/.credentials -------------------------------------------------------------------------------- /dev/tests/acceptance/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/dev/tests/acceptance/.env -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/app/code/Magento/AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/overlay.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/dev/tests/js/jasmine/tests/app/code/Magento/AdobeStockImageAdminUi/view/adminhtml/web/js/components/grid/column/overlay.test.js -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/adobe-stock-integration/HEAD/modman --------------------------------------------------------------------------------