├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yaml │ └── upmerge_pr.yaml ├── .gitignore ├── LICENSE ├── LICENSE_OF_TRADEMARK_AND_LOGO ├── README.md ├── UPGRADE-1.1.md ├── assets ├── admin │ ├── controllers.json │ ├── controllers │ │ └── PreviewController.js │ ├── entrypoint.js │ ├── js │ │ └── trix │ │ │ └── trix-editor.js │ └── package.json └── shop │ ├── controllers.json │ ├── entrypoint.js │ ├── js │ └── index.js │ └── scss │ ├── _line-clamp.scss │ └── main.scss ├── behat.yaml.dist ├── composer.json ├── config ├── api_platform │ ├── properties │ │ ├── Block.xml │ │ ├── Collection.xml │ │ ├── Media.xml │ │ ├── Page.xml │ │ └── Template.xml │ └── resources │ │ └── shop │ │ ├── Block.xml │ │ ├── Collection.xml │ │ ├── Media.xml │ │ ├── Page.xml │ │ └── Tempalate.xml ├── config.yaml ├── doctrine │ ├── Block.orm.xml │ ├── Collection.orm.xml │ ├── ContentConfiguration.orm.xml │ ├── Media.orm.xml │ ├── MediaTranslation.orm.xml │ ├── Page.orm.xml │ ├── PageTranslation.orm.xml │ └── Template.orm.xml ├── fixtures │ ├── 1_collection.yaml │ ├── 1_glasses.yaml │ ├── 1_media.yaml │ ├── 1_template.yaml │ ├── 2_block.yaml │ ├── 2_page.yaml │ └── images │ │ ├── blog_banner.webp │ │ ├── blog_post_1_content_image_1.webp │ │ ├── blog_post_1_content_image_2.webp │ │ ├── blog_post_1_content_image_3.webp │ │ ├── blog_post_1_header_banner.webp │ │ ├── blog_post_1_teaser_image.webp │ │ ├── blog_post_2_content_image_1.webp │ │ ├── blog_post_2_content_image_2.webp │ │ ├── blog_post_2_content_image_3.webp │ │ ├── blog_post_2_content_image_4.webp │ │ ├── blog_post_2_header_banner.webp │ │ ├── blog_post_2_teaser_image.webp │ │ ├── blog_post_3_content_image_1.webp │ │ ├── blog_post_3_content_image_2.webp │ │ ├── blog_post_3_content_image_3.webp │ │ ├── blog_post_3_content_image_4.webp │ │ ├── blog_post_3_content_image_5.webp │ │ ├── blog_post_3_content_image_6.webp │ │ ├── blog_post_3_content_image_7.webp │ │ ├── blog_post_3_content_image_8.webp │ │ ├── blog_post_3_header_banner.webp │ │ ├── blog_post_3_teaser_image.webp │ │ ├── glasses_banner.webp │ │ ├── glasses_content_image_1.webp │ │ ├── glasses_content_image_2.webp │ │ ├── glasses_teaser.webp │ │ ├── mid_season_sale_banner.webp │ │ ├── mid_season_sale_homepage.webp │ │ └── products │ │ ├── crystal_gaze_glasses.webp │ │ ├── future_shield_glasses.webp │ │ ├── ocean_breeze_glasses.webp │ │ ├── starry_night_glasses.webp │ │ ├── sunshine_vision_glasses.webp │ │ └── urban_vision_glasses.webp ├── grids.yaml ├── grids │ ├── admin.yaml │ ├── admin │ │ ├── block.yaml │ │ ├── collection.yaml │ │ ├── media.yaml │ │ ├── page.yaml │ │ └── template.yaml │ ├── shop.yaml │ └── shop │ │ └── page.yaml ├── routes.yaml ├── routes │ ├── admin.yaml │ ├── admin │ │ ├── block.yaml │ │ ├── collection.yaml │ │ ├── media.yaml │ │ ├── page.yaml │ │ └── template.yaml │ ├── shop.yaml │ └── shop │ │ ├── collection.yaml │ │ ├── media.yaml │ │ └── page.yaml ├── serialization │ ├── Block.xml │ ├── Collection.xml │ ├── ContentConfiguration.xml │ ├── Media.xml │ ├── MediaTranslation.xml │ ├── Page.xml │ ├── PageTranslation.xml │ └── Template.xml ├── services.xml ├── services │ ├── controller.xml │ ├── event_listener.xml │ ├── fixture.xml │ ├── form.xml │ ├── media_provider.xml │ ├── renderer.xml │ ├── resolver.xml │ ├── twig.xml │ └── twig │ │ ├── component.xml │ │ ├── extension.xml │ │ └── runtime.xml ├── twig_hooks │ ├── admin │ │ ├── block │ │ │ ├── create.yaml │ │ │ └── update.yaml │ │ ├── collection │ │ │ ├── create.yaml │ │ │ └── update.yaml │ │ ├── media │ │ │ ├── create.yaml │ │ │ └── update.yaml │ │ ├── page │ │ │ ├── create.yaml │ │ │ └── update.yaml │ │ └── template │ │ │ ├── create.yaml │ │ │ └── update.yaml │ └── shop │ │ ├── collection │ │ └── page │ │ │ └── index.yaml │ │ └── page │ │ ├── index.yaml │ │ └── show.yaml └── validation │ ├── Block.xml │ ├── Collection.xml │ ├── Media.xml │ ├── MediaTranslation.xml │ ├── Page.xml │ ├── PageTranslation.xml │ └── Template.xml ├── ecs.php ├── etc └── build │ └── .gitkeep ├── features ├── admin │ ├── adding_collection.feature │ ├── adding_content_template.feature │ ├── adding_media.feature │ ├── block │ │ ├── adding_block.feature │ │ └── managing_blocks.feature │ ├── managing_collections.feature │ ├── managing_content_templates.feature │ ├── managing_media.feature │ ├── page │ │ ├── adding_page.feature │ │ └── managing_pages.feature │ └── wysiwyg │ │ └── trix │ │ ├── manging_blocks.feature │ │ ├── manging_media.feature │ │ └── manging_pages.feature ├── api │ ├── viewing_blocks.feature │ ├── viewing_collections.feature │ ├── viewing_media.feature │ └── viewing_pages.feature └── shop │ └── displaying_page.feature ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src ├── Context │ └── PreviewLocaleContext.php ├── Controller │ ├── Action │ │ └── Admin │ │ │ └── UploadEditorImageAction.php │ ├── BlockController.php │ ├── Helper │ │ ├── FormErrorsFlashHelper.php │ │ └── FormErrorsFlashHelperInterface.php │ ├── MediaController.php │ ├── MediaPageControllersCommonDependencyInjectionsTrait.php │ ├── PageController.php │ └── ResourceDataProcessingTrait.php ├── DependencyInjection │ ├── Compiler │ │ ├── ContentElementPass.php │ │ └── MediaProviderPass.php │ ├── Configuration.php │ └── SyliusCmsExtension.php ├── Doctrine │ └── ORM │ │ └── Extension │ │ └── EnabledAndAvailableExtension.php ├── Entity │ ├── Block.php │ ├── BlockInterface.php │ ├── BlockProductAwareInterface.php │ ├── BlockTaxonAwareInterface.php │ ├── BlockTranslationInterface.php │ ├── BlocksCollectionInterface.php │ ├── CollectibleInterface.php │ ├── Collection.php │ ├── CollectionInterface.php │ ├── ContentConfiguration.php │ ├── ContentConfigurationInterface.php │ ├── ContentElementsAwareInterface.php │ ├── ContentableInterface.php │ ├── LocaleAwareInterface.php │ ├── Media.php │ ├── MediaCollectionInterface.php │ ├── MediaInterface.php │ ├── MediaTranslation.php │ ├── MediaTranslationInterface.php │ ├── Page.php │ ├── PageInterface.php │ ├── PageTranslation.php │ ├── PageTranslationInterface.php │ ├── PagesCollectionInterface.php │ ├── ProductsAwareInterface.php │ ├── ProductsInTaxonsAwareInterface.php │ ├── StaticTemplateAwareInterface.php │ ├── TaxonAwareInterface.php │ ├── TeaserInterface.php │ ├── Template.php │ ├── TemplateInterface.php │ └── Trait │ │ ├── BlocksCollectionTrait.php │ │ ├── ChannelsAwareTrait.php │ │ ├── CollectibleTrait.php │ │ ├── ContentElementsAwareTrait.php │ │ ├── LocaleAwareTrait.php │ │ ├── MediaCollectionTrait.php │ │ ├── PagesCollectionTrait.php │ │ ├── ProductsAwareTrait.php │ │ ├── ProductsInTaxonsAwareTrait.php │ │ ├── StaticTemplateAwareTrait.php │ │ ├── TaxonAwareTrait.php │ │ └── TeaserTrait.php ├── EventListener │ └── MediaUploadListener.php ├── Fixture │ ├── Assigner │ │ ├── ChannelsAssigner.php │ │ ├── ChannelsAssignerInterface.php │ │ ├── CollectionsAssigner.php │ │ ├── CollectionsAssignerInterface.php │ │ ├── ProductsAssigner.php │ │ ├── ProductsAssignerInterface.php │ │ ├── ProductsInTaxonsAssigner.php │ │ ├── ProductsInTaxonsAssignerInterface.php │ │ ├── TaxonsAssigner.php │ │ └── TaxonsAssignerInterface.php │ ├── BlockFixture.php │ ├── CollectionFixture.php │ ├── Factory │ │ ├── BlockFixtureFactory.php │ │ ├── CollectionFixtureFactory.php │ │ ├── FixtureFactoryInterface.php │ │ ├── MediaFixtureFactory.php │ │ ├── PageFixtureFactory.php │ │ └── TemplateFixtureFactory.php │ ├── MediaFixture.php │ ├── PageFixture.php │ └── TemplateFixture.php ├── Form │ ├── DataTransformer │ │ ├── ContentElementDataTransformerChecker.php │ │ └── MultipleMediaToCodesTransformer.php │ ├── Normalizer │ │ └── TypedQueryBuilderNormalizer.php │ ├── Strategy │ │ └── Wysiwyg │ │ │ ├── AbstractWysiwygStrategy.php │ │ │ ├── TrixStrategy.php │ │ │ └── WysiwygStrategyInterface.php │ └── Type │ │ ├── BlockAutocompleteType.php │ │ ├── BlockType.php │ │ ├── CollectionAutocompleteType.php │ │ ├── CollectionType.php │ │ ├── ContentConfigurationType.php │ │ ├── ContentElementChoiceType.php │ │ ├── ContentElementType.php │ │ ├── ContentElements │ │ ├── ContentElementConfigurationType.php │ │ ├── HeadingContentElementType.php │ │ ├── MultipleMediaContentElementType.php │ │ ├── PagesCollectionContentElementType.php │ │ ├── ProductsCarouselByTaxonContentElementType.php │ │ ├── ProductsCarouselContentElementType.php │ │ ├── ProductsGridByTaxonContentElementType.php │ │ ├── ProductsGridContentElementType.php │ │ ├── SingleMediaContentElementType.php │ │ ├── SpacerContentElementType.php │ │ ├── TaxonsListContentElementType.php │ │ └── TextareaContentElementType.php │ │ ├── MediaAutocompleteType.php │ │ ├── MediaType.php │ │ ├── PageAutocompleteType.php │ │ ├── PageType.php │ │ ├── TemplateAutocompleteType.php │ │ ├── TemplateType.php │ │ ├── Translation │ │ ├── ContentConfigurationTranslationsType.php │ │ ├── MediaTranslationType.php │ │ └── PageTranslationType.php │ │ └── WysiwygType.php ├── MediaProvider │ ├── FilenameHelper.php │ ├── GenericProvider.php │ └── ProviderInterface.php ├── Menu │ ├── ContentManagementMenuBuilder.php │ ├── MenuReorder.php │ └── MenuReorderInterface.php ├── Migrations │ ├── Version20250418063555.php │ └── Version20250418065534.php ├── Provider │ ├── ResourceTemplateProvider.php │ └── ResourceTemplateProviderInterface.php ├── Renderer │ ├── Collection │ │ ├── CollectionBlocksRenderer.php │ │ ├── CollectionMediaRenderer.php │ │ ├── CollectionPagesRenderer.php │ │ └── CollectionRendererInterface.php │ ├── CollectionRendererStrategy.php │ ├── CollectionRendererStrategyInterface.php │ ├── ContentElement │ │ ├── AbstractContentElement.php │ │ ├── ContentElementRendererInterface.php │ │ ├── HeadingContentElementRenderer.php │ │ ├── MultipleMediaContentElementRenderer.php │ │ ├── PagesCollectionContentElementRenderer.php │ │ ├── ProductsCarouselByTaxonContentElementRenderer.php │ │ ├── ProductsCarouselContentElementRenderer.php │ │ ├── ProductsGridByTaxonContentElementRenderer.php │ │ ├── ProductsGridContentElementRenderer.php │ │ ├── SingleMediaContentElementRenderer.php │ │ ├── SpacerContentElementRenderer.php │ │ ├── TaxonsListContentElementRenderer.php │ │ └── TextareaContentElementRenderer.php │ ├── ContentElementRendererStrategy.php │ ├── ContentElementRendererStrategyInterface.php │ ├── PageLinkRenderer.php │ └── PageLinkRendererInterface.php ├── Repository │ ├── BlockRepository.php │ ├── BlockRepositoryInterface.php │ ├── CollectionRepository.php │ ├── CollectionRepositoryInterface.php │ ├── ContentConfigurationRepository.php │ ├── MediaRepository.php │ ├── MediaRepositoryInterface.php │ ├── PageRepository.php │ ├── PageRepositoryInterface.php │ ├── TemplateRepository.php │ ├── TemplateRepositoryInterface.php │ └── TranslationBasedAwareTrait.php ├── Resolver │ ├── BlockResourceResolver.php │ ├── BlockResourceResolverInterface.php │ ├── CollectionResourceResolver.php │ ├── CollectionResourceResolverInterface.php │ ├── MediaProviderResolver.php │ ├── MediaProviderResolverInterface.php │ ├── MediaResourceResolver.php │ ├── MediaResourceResolverInterface.php │ ├── PageResourceResolver.php │ ├── PageResourceResolverInterface.php │ ├── ResourceResolver.php │ ├── ResourceResolverInterface.php │ ├── WysiwygStrategyResolver.php │ └── WysiwygStrategyResolverInterface.php ├── Sorter │ ├── CollectionsSorter.php │ ├── CollectionsSorterInterface.php │ └── SorterById.php ├── SyliusCmsPlugin.php ├── Twig │ ├── Component │ │ ├── Block │ │ │ └── FormComponent.php │ │ ├── MediaPreviewComponent.php │ │ ├── Page │ │ │ └── FormComponent.php │ │ └── Trait │ │ │ ├── ContentElementsCollectionFormComponentTrait.php │ │ │ └── PreviewComponentTrait.php │ ├── Extension │ │ ├── RenderBlockExtension.php │ │ ├── RenderCollectionExtension.php │ │ ├── RenderContentElementsExtension.php │ │ ├── RenderContentExtension.php │ │ ├── RenderMediaExtension.php │ │ ├── RenderPageLinkExtension.php │ │ ├── ResolveMediaVideoPathExtension.php │ │ └── TemplateExistsExtension.php │ ├── Parser │ │ ├── ContentParser.php │ │ └── ContentParserInterface.php │ └── Runtime │ │ ├── RenderBlockRuntime.php │ │ ├── RenderBlockRuntimeInterface.php │ │ ├── RenderCollectionRuntime.php │ │ ├── RenderCollectionRuntimeInterface.php │ │ ├── RenderContentElementsRuntime.php │ │ ├── RenderContentElementsRuntimeInterface.php │ │ ├── RenderContentRuntime.php │ │ ├── RenderContentRuntimeInterface.php │ │ ├── RenderMediaRuntime.php │ │ ├── RenderMediaRuntimeInterface.php │ │ ├── RenderPageLinkRuntime.php │ │ ├── RenderPageLinkRuntimeInterface.php │ │ ├── ResolveMediaVideoPathRuntime.php │ │ ├── ResolveMediaVideoPathRuntimeInterface.php │ │ ├── TemplateExistsRuntime.php │ │ └── TemplateExistsRuntimeInterface.php ├── Uploader │ ├── MediaUploader.php │ └── MediaUploaderInterface.php └── Validator │ ├── Constraint │ └── FileMatchesType.php │ └── FileMatchesTypeValidator.php ├── symfony.lock ├── templates ├── admin │ ├── block │ │ ├── form.html.twig │ │ ├── form │ │ │ ├── sections.html.twig │ │ │ └── sections │ │ │ │ ├── collections.html.twig │ │ │ │ ├── content.html.twig │ │ │ │ ├── content │ │ │ │ ├── template.html.twig │ │ │ │ ├── translations.html.twig │ │ │ │ └── translations │ │ │ │ │ ├── elements.html.twig │ │ │ │ │ └── elements_template.html.twig │ │ │ │ ├── display_config.html.twig │ │ │ │ ├── display_config │ │ │ │ ├── products.html.twig │ │ │ │ ├── products_in_taxons.html.twig │ │ │ │ └── taxons.html.twig │ │ │ │ ├── general.html.twig │ │ │ │ └── general │ │ │ │ ├── channels.html.twig │ │ │ │ ├── code.html.twig │ │ │ │ ├── enabled.html.twig │ │ │ │ └── name.html.twig │ │ ├── form_theme.html.twig │ │ └── preview.html.twig │ ├── collection │ │ ├── form.html.twig │ │ └── form │ │ │ ├── sections.html.twig │ │ │ └── sections │ │ │ ├── elements.html.twig │ │ │ ├── elements │ │ │ └── collection_elements.html.twig │ │ │ ├── general.html.twig │ │ │ └── general │ │ │ ├── code.html.twig │ │ │ ├── name.html.twig │ │ │ └── type.html.twig │ ├── grid │ │ └── field │ │ │ ├── channels.html.twig │ │ │ ├── collections.html.twig │ │ │ ├── content.html.twig │ │ │ ├── image_preview.html.twig │ │ │ ├── name.html.twig │ │ │ └── page_image.html.twig │ ├── media │ │ ├── form.html.twig │ │ ├── form │ │ │ ├── sections.html.twig │ │ │ └── sections │ │ │ │ ├── collections.html.twig │ │ │ │ ├── general.html.twig │ │ │ │ ├── general │ │ │ │ ├── channels.html.twig │ │ │ │ ├── code.html.twig │ │ │ │ ├── enabled.html.twig │ │ │ │ ├── name.html.twig │ │ │ │ └── translations.html.twig │ │ │ │ ├── media.html.twig │ │ │ │ ├── media │ │ │ │ ├── file.html.twig │ │ │ │ ├── path.html.twig │ │ │ │ ├── preview.html.twig │ │ │ │ ├── save_with_original_filename.html.twig │ │ │ │ └── type.html.twig │ │ │ │ ├── translations.html.twig │ │ │ │ └── translations │ │ │ │ ├── alt.html.twig │ │ │ │ ├── content.html.twig │ │ │ │ └── link.html.twig │ │ └── preview │ │ │ ├── file.html.twig │ │ │ ├── image.html.twig │ │ │ └── video.html.twig │ ├── page │ │ ├── form.html.twig │ │ ├── form │ │ │ ├── sections.html.twig │ │ │ └── sections │ │ │ │ ├── collections.html.twig │ │ │ │ ├── content.html.twig │ │ │ │ ├── content │ │ │ │ ├── fields.html.twig │ │ │ │ ├── fields │ │ │ │ │ └── template.html.twig │ │ │ │ ├── translations.html.twig │ │ │ │ └── translations │ │ │ │ │ ├── elements.html.twig │ │ │ │ │ └── elements_template.html.twig │ │ │ │ ├── general.html.twig │ │ │ │ ├── general │ │ │ │ ├── buttons.html.twig │ │ │ │ ├── channels.html.twig │ │ │ │ ├── code.html.twig │ │ │ │ ├── enabled.html.twig │ │ │ │ ├── name.html.twig │ │ │ │ └── publish_at.html.twig │ │ │ │ ├── seo.html.twig │ │ │ │ ├── seo │ │ │ │ ├── translations.html.twig │ │ │ │ └── translations │ │ │ │ │ ├── meta_description.html.twig │ │ │ │ │ ├── meta_keywords.html.twig │ │ │ │ │ ├── meta_title.html.twig │ │ │ │ │ └── slug.html.twig │ │ │ │ ├── teaser.html.twig │ │ │ │ └── teaser │ │ │ │ ├── translations.html.twig │ │ │ │ └── translations │ │ │ │ ├── content.html.twig │ │ │ │ ├── image.html.twig │ │ │ │ └── title.html.twig │ │ ├── form_theme.html.twig │ │ ├── link.html.twig │ │ └── preview.html.twig │ ├── shared │ │ ├── component_elements │ │ │ └── form_theme.html.twig │ │ ├── editor │ │ │ └── trix.html.twig │ │ └── preview │ │ │ ├── missing_template.html.twig │ │ │ └── render.html.twig │ └── template │ │ ├── form.html.twig │ │ └── form │ │ ├── sections.html.twig │ │ └── sections │ │ ├── elements.html.twig │ │ ├── elements │ │ └── content_elements.html.twig │ │ ├── general.html.twig │ │ └── general │ │ ├── name.html.twig │ │ └── type.html.twig └── shop │ ├── block │ └── show.html.twig │ ├── collection │ ├── name.html.twig │ ├── page │ │ ├── index.html.twig │ │ └── index │ │ │ ├── content.html.twig │ │ │ └── content │ │ │ ├── body.html.twig │ │ │ ├── body │ │ │ ├── no_results.html.twig │ │ │ ├── pages.html.twig │ │ │ ├── pages │ │ │ │ ├── page.html.twig │ │ │ │ └── page │ │ │ │ │ └── header.html.twig │ │ │ └── pagination.html.twig │ │ │ └── header.html.twig │ └── show.html.twig │ ├── content_element │ ├── elements │ │ ├── heading.html.twig │ │ ├── multiple_media.html.twig │ │ ├── pages_collection.html.twig │ │ ├── products_carousel.html.twig │ │ ├── products_grid.html.twig │ │ ├── single_media.html.twig │ │ ├── spacer.html.twig │ │ ├── taxons_list.html.twig │ │ └── textarea.html.twig │ └── index.html.twig │ ├── media │ └── show │ │ ├── file.html.twig │ │ ├── image.html.twig │ │ └── video.html.twig │ ├── page │ ├── link.html.twig │ ├── metatags │ │ ├── description.html.twig │ │ └── keywords.html.twig │ ├── show.html.twig │ └── show │ │ ├── content.html.twig │ │ ├── content │ │ ├── body.html.twig │ │ ├── body │ │ │ ├── content_elements.html.twig │ │ │ └── header.html.twig │ │ ├── breadcrumbs.html.twig │ │ ├── collections.html.twig │ │ ├── collections │ │ │ ├── collection.html.twig │ │ │ └── collection │ │ │ │ └── name.html.twig │ │ └── not_published.html.twig │ │ └── link.html.twig │ └── shared │ └── components │ └── render │ ├── block.html.twig │ ├── collection.html.twig │ ├── content.html.twig │ ├── content_elements.html.twig │ ├── media.html.twig │ └── page_link.html.twig ├── tests ├── Behat │ ├── Behaviour │ │ ├── ChecksCodeImmutabilityInterface.php │ │ ├── ChecksCodeImmutabilityTrait.php │ │ ├── ContainsEmptyListInterface.php │ │ ├── ContainsEmptyListTrait.php │ │ ├── ContainsErrorInterface.php │ │ └── ContainsErrorTrait.php │ ├── Context │ │ ├── Api │ │ │ ├── BlockContext.php │ │ │ ├── CollectionContext.php │ │ │ ├── MediaContext.php │ │ │ └── PageContext.php │ │ ├── Setup │ │ │ ├── BlockContext.php │ │ │ ├── CollectionContext.php │ │ │ ├── ContentTemplateContext.php │ │ │ ├── MediaContext.php │ │ │ └── PageContext.php │ │ ├── Transform │ │ │ ├── BlockContext.php │ │ │ ├── CollectionContext.php │ │ │ ├── MediaContext.php │ │ │ └── PageContext.php │ │ └── Ui │ │ │ ├── Admin │ │ │ ├── BlockContext.php │ │ │ ├── CollectionContext.php │ │ │ ├── ContentCollectionContext.php │ │ │ ├── ContentTemplateContext.php │ │ │ ├── MediaContext.php │ │ │ ├── PageContext.php │ │ │ └── TrixWysiwygContext.php │ │ │ └── Shop │ │ │ ├── HomepageBlocksContext.php │ │ │ ├── MediaContext.php │ │ │ └── PageContext.php │ ├── Element │ │ └── Admin │ │ │ ├── ContentElementsCollectionElement.php │ │ │ └── ContentElementsCollectionElementInterface.php │ ├── Helpers │ │ └── ContentElementHelper.php │ ├── Page │ │ ├── Admin │ │ │ ├── Block │ │ │ │ ├── CreatePage.php │ │ │ │ ├── CreatePageInterface.php │ │ │ │ ├── IndexPage.php │ │ │ │ ├── IndexPageInterface.php │ │ │ │ ├── UpdatePage.php │ │ │ │ └── UpdatePageInterface.php │ │ │ ├── Collection │ │ │ │ ├── CreatePage.php │ │ │ │ ├── CreatePageInterface.php │ │ │ │ ├── IndexPage.php │ │ │ │ ├── IndexPageInterface.php │ │ │ │ ├── UpdatePage.php │ │ │ │ └── UpdatePageInterface.php │ │ │ ├── Media │ │ │ │ ├── CreatePage.php │ │ │ │ ├── CreatePageInterface.php │ │ │ │ ├── IndexPage.php │ │ │ │ ├── IndexPageInterface.php │ │ │ │ ├── UpdatePage.php │ │ │ │ └── UpdatePageInterface.php │ │ │ ├── Page │ │ │ │ ├── CreatePage.php │ │ │ │ ├── CreatePageInterface.php │ │ │ │ ├── IndexPage.php │ │ │ │ ├── IndexPageInterface.php │ │ │ │ ├── UpdatePage.php │ │ │ │ └── UpdatePageInterface.php │ │ │ └── Template │ │ │ │ ├── CreatePage.php │ │ │ │ ├── CreatePageInterface.php │ │ │ │ ├── IndexPage.php │ │ │ │ ├── IndexPageInterface.php │ │ │ │ ├── UpdatePage.php │ │ │ │ └── UpdatePageInterface.php │ │ └── Shop │ │ │ ├── HomePage.php │ │ │ ├── HomePageInterface.php │ │ │ └── Page │ │ │ ├── IndexPage.php │ │ │ ├── IndexPageInterface.php │ │ │ ├── ShowPage.php │ │ │ └── ShowPageInterface.php │ ├── Resources.php │ ├── Resources │ │ ├── images │ │ │ ├── aston_martin_db_11.jpg │ │ │ ├── homepage_main.jpeg │ │ │ ├── porsche_911_singer_1.jpg │ │ │ └── porsche_911_singer_2.jpg │ │ ├── services.xml │ │ ├── services │ │ │ ├── api.xml │ │ │ ├── contexts.xml │ │ │ ├── contexts │ │ │ │ ├── api.xml │ │ │ │ ├── setup.xml │ │ │ │ ├── transform.xml │ │ │ │ └── ui.xml │ │ │ ├── elements.xml │ │ │ ├── pages.xml │ │ │ └── pages │ │ │ │ ├── admin.xml │ │ │ │ ├── admin │ │ │ │ ├── block.xml │ │ │ │ ├── collection.xml │ │ │ │ ├── media.xml │ │ │ │ ├── page.xml │ │ │ │ └── template.xml │ │ │ │ └── shop.xml │ │ ├── suites.yml │ │ └── suites │ │ │ ├── api │ │ │ ├── shop_blocks.yml │ │ │ ├── shop_collections.yml │ │ │ ├── shop_media.yml │ │ │ └── shop_pages.yml │ │ │ └── ui │ │ │ ├── managing_blocks.yml │ │ │ ├── managing_collections.yml │ │ │ ├── managing_content_templates.yml │ │ │ ├── managing_media.yml │ │ │ ├── managing_pages.yml │ │ │ ├── shop_blocks.yml │ │ │ ├── shop_media.yml │ │ │ └── shop_pages.yml │ └── Service │ │ ├── FormHelper.php │ │ ├── RandomStringGenerator.php │ │ ├── RandomStringGeneratorInterface.php │ │ └── WysiwygHelper.php ├── Functional │ ├── Api │ │ ├── BlockTest.php │ │ ├── CollectionTest.php │ │ ├── MediaTest.php │ │ └── PageTest.php │ ├── DataFixtures │ │ └── ORM │ │ │ └── Api │ │ │ ├── BlockTest │ │ │ └── block.yml │ │ │ ├── CollectionTest │ │ │ └── collection.yml │ │ │ ├── MediaTest │ │ │ └── media.yml │ │ │ └── PageTest │ │ │ └── page.yml │ ├── FunctionalTestCase.php │ └── Responses │ │ └── Expected │ │ └── Api │ │ ├── BlockTest │ │ ├── test_it_get_block_by_id.json │ │ └── test_it_get_blocks.json │ │ ├── CollectionTest │ │ ├── test_it_get_collection_by_id.json │ │ └── test_it_get_collections.json │ │ ├── MediaTest │ │ ├── test_it_get_media.json │ │ └── test_it_get_media_by_id.json │ │ └── PageTest │ │ ├── test_it_get_page_by_id.json │ │ └── test_it_get_pages.json ├── Integration │ ├── DataFixtures │ │ └── ORM │ │ │ ├── BlockRepositoryTest │ │ │ ├── test_it_finds_block_by_code.yml │ │ │ ├── test_it_finds_block_by_collection_code.yml │ │ │ └── test_it_finds_block_by_product_code.yml │ │ │ ├── CollectionRepositoryTest │ │ │ ├── test_it_finds_collection_by_code.yml │ │ │ ├── test_it_finds_collection_by_codes_and_locale.yml │ │ │ └── test_it_finds_collection_by_name.yml │ │ │ ├── MediaRepositoryTest │ │ │ ├── test_it_finds_media_by_code.yml │ │ │ └── test_it_finds_media_by_name.yml │ │ │ ├── PageRepositoryTest │ │ │ ├── test_it_finds_page_by_code.yml │ │ │ ├── test_it_finds_page_by_collection_code.yml │ │ │ ├── test_it_finds_page_by_product.yml │ │ │ └── test_it_finds_page_by_product_and_collection_code.yml │ │ │ └── TemplateRepositoryTest │ │ │ └── test_it_finds_template_by_name.yml │ └── Repository │ │ ├── BlockRepositoryTest.php │ │ ├── CollectionRepositoryTest.php │ │ ├── MediaRepositoryTest.php │ │ ├── PageRepositoryTest.php │ │ └── TemplateRepositoryTest.php ├── TestApplication │ ├── .env │ ├── .env.test │ ├── bundles.php │ ├── config │ │ ├── config.yaml │ │ └── services_test.php │ ├── package.json │ └── templates │ │ └── shop │ │ ├── header │ │ └── navbar │ │ │ └── menu │ │ │ ├── blog_item.html.twig │ │ │ └── faq_item.html.twig │ │ ├── homepage │ │ └── index │ │ │ ├── container.html.twig │ │ │ └── sections.html.twig │ │ └── template │ │ └── custom_page.html.twig └── Unit │ ├── Context │ └── PreviewLocaleContextTest.php │ ├── Controller │ └── Action │ │ └── Admin │ │ └── UploadEditorImageActionTest.php │ ├── Entity │ ├── BlockTest.php │ ├── MediaTest.php │ ├── MediaTranslationTest.php │ ├── PageTest.php │ └── PageTranslationTest.php │ ├── EventListener │ └── MediaUploadListenerTest.php │ ├── Fixture │ └── Assigner │ │ ├── ChannelsAssignerTest.php │ │ ├── CollectionsAssignerTest.php │ │ ├── ProductsAssignerTest.php │ │ ├── ProductsInTaxonsAssignerTest.php │ │ └── TaxonsAssignerTest.php │ ├── Form │ └── DataTransformer │ │ └── MultipleMediaToCodesTransformerTest.php │ ├── MediaProvider │ ├── FilenameHelperTest.php │ └── GenericProviderTest.php │ ├── Menu │ ├── ContentManagementMenuBuilderTest.php │ └── MenuReorderTest.php │ ├── Provider │ └── ResourceTemplateProviderTest.php │ ├── Renderer │ ├── Collection │ │ ├── CollectionBlocksRendererTest.php │ │ ├── CollectionMediaRendererTest.php │ │ └── CollectionPagesRendererTest.php │ ├── CollectionRendererStrategyTest.php │ ├── ContentElement │ │ ├── HeadingContentElementRendererTest.php │ │ ├── MultipleMediaContentElementRendererTest.php │ │ ├── PagesCollectionContentElementRendererTest.php │ │ ├── ProductsCarouselByTaxonContentElementRendererTest.php │ │ ├── ProductsCarouselContentElementRendererTest.php │ │ ├── ProductsGridByTaxonContentElementRendererTest.php │ │ ├── ProductsGridContentElementRendererTest.php │ │ ├── SingleMediaContentElementRendererTest.php │ │ ├── SpacerContentElementRendererTest.php │ │ ├── TaxonsListContentElementRendererTest.php │ │ └── TextareaContentElementRendererTest.php │ ├── ContentElementRendererStrategyTest.php │ └── PageLinkRendererTest.php │ ├── Resolver │ ├── BlockResourceResolverTest.php │ ├── MediaProviderResolverTest.php │ ├── MediaResourceResolverTest.php │ ├── PageResourceResolverTest.php │ └── ResourceResolverTest.php │ ├── Sorter │ └── CollectionsSorterTest.php │ └── Twig │ ├── Parser │ └── ContentParserTest.php │ └── Runtime │ ├── RenderBlockRuntimeTest.php │ ├── RenderContentElementsRuntimeTest.php │ ├── RenderContentRuntimeTest.php │ ├── RenderMediaRuntimeTest.php │ ├── RenderPageLinkRuntimeTest.php │ ├── ResolveMediaVideoPathRuntimeTest.php │ └── TemplateExistsExtensionTest.php └── translations ├── messages.cs.yml ├── messages.cs_CZ.yml ├── messages.de.yml ├── messages.en.yml ├── messages.es.yml ├── messages.fr.yml ├── messages.hr.yml ├── messages.lt.yml ├── messages.nl.yml ├── messages.pl.yml ├── messages.ru.yml ├── messages.sk.yml ├── messages.uk.yml ├── validators.cs.yml ├── validators.de.yml ├── validators.en.yml ├── validators.es.yml ├── validators.fr.yml ├── validators.hr.yml ├── validators.lt.yml ├── validators.nl.yml ├── validators.pl.yml ├── validators.ru.yml ├── validators.sk.yml └── validators.uk.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Sylius/development-team 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/upmerge_pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/.github/workflows/upmerge_pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_OF_TRADEMARK_AND_LOGO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/LICENSE_OF_TRADEMARK_AND_LOGO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/UPGRADE-1.1.md -------------------------------------------------------------------------------- /assets/admin/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/admin/controllers.json -------------------------------------------------------------------------------- /assets/admin/controllers/PreviewController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/admin/controllers/PreviewController.js -------------------------------------------------------------------------------- /assets/admin/entrypoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/admin/entrypoint.js -------------------------------------------------------------------------------- /assets/admin/js/trix/trix-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/admin/js/trix/trix-editor.js -------------------------------------------------------------------------------- /assets/admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/admin/package.json -------------------------------------------------------------------------------- /assets/shop/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/shop/controllers.json -------------------------------------------------------------------------------- /assets/shop/entrypoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/shop/entrypoint.js -------------------------------------------------------------------------------- /assets/shop/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/shop/js/index.js -------------------------------------------------------------------------------- /assets/shop/scss/_line-clamp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/assets/shop/scss/_line-clamp.scss -------------------------------------------------------------------------------- /assets/shop/scss/main.scss: -------------------------------------------------------------------------------- 1 | @import "line-clamp"; 2 | -------------------------------------------------------------------------------- /behat.yaml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/behat.yaml.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/composer.json -------------------------------------------------------------------------------- /config/api_platform/properties/Block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/properties/Block.xml -------------------------------------------------------------------------------- /config/api_platform/properties/Collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/properties/Collection.xml -------------------------------------------------------------------------------- /config/api_platform/properties/Media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/properties/Media.xml -------------------------------------------------------------------------------- /config/api_platform/properties/Page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/properties/Page.xml -------------------------------------------------------------------------------- /config/api_platform/properties/Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/properties/Template.xml -------------------------------------------------------------------------------- /config/api_platform/resources/shop/Block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/resources/shop/Block.xml -------------------------------------------------------------------------------- /config/api_platform/resources/shop/Collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/resources/shop/Collection.xml -------------------------------------------------------------------------------- /config/api_platform/resources/shop/Media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/resources/shop/Media.xml -------------------------------------------------------------------------------- /config/api_platform/resources/shop/Page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/resources/shop/Page.xml -------------------------------------------------------------------------------- /config/api_platform/resources/shop/Tempalate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/api_platform/resources/shop/Tempalate.xml -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/doctrine/Block.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/doctrine/Block.orm.xml -------------------------------------------------------------------------------- /config/doctrine/Collection.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/doctrine/Collection.orm.xml -------------------------------------------------------------------------------- /config/doctrine/ContentConfiguration.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/doctrine/ContentConfiguration.orm.xml -------------------------------------------------------------------------------- /config/doctrine/Media.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/doctrine/Media.orm.xml -------------------------------------------------------------------------------- /config/doctrine/MediaTranslation.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/doctrine/MediaTranslation.orm.xml -------------------------------------------------------------------------------- /config/doctrine/Page.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/doctrine/Page.orm.xml -------------------------------------------------------------------------------- /config/doctrine/PageTranslation.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/doctrine/PageTranslation.orm.xml -------------------------------------------------------------------------------- /config/doctrine/Template.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/doctrine/Template.orm.xml -------------------------------------------------------------------------------- /config/fixtures/1_collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/1_collection.yaml -------------------------------------------------------------------------------- /config/fixtures/1_glasses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/1_glasses.yaml -------------------------------------------------------------------------------- /config/fixtures/1_media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/1_media.yaml -------------------------------------------------------------------------------- /config/fixtures/1_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/1_template.yaml -------------------------------------------------------------------------------- /config/fixtures/2_block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/2_block.yaml -------------------------------------------------------------------------------- /config/fixtures/2_page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/2_page.yaml -------------------------------------------------------------------------------- /config/fixtures/images/blog_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_banner.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_1_content_image_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_1_content_image_1.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_1_content_image_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_1_content_image_2.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_1_content_image_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_1_content_image_3.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_1_header_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_1_header_banner.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_1_teaser_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_1_teaser_image.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_2_content_image_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_2_content_image_1.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_2_content_image_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_2_content_image_2.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_2_content_image_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_2_content_image_3.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_2_content_image_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_2_content_image_4.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_2_header_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_2_header_banner.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_2_teaser_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_2_teaser_image.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_content_image_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_content_image_1.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_content_image_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_content_image_2.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_content_image_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_content_image_3.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_content_image_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_content_image_4.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_content_image_5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_content_image_5.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_content_image_6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_content_image_6.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_content_image_7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_content_image_7.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_content_image_8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_content_image_8.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_header_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_header_banner.webp -------------------------------------------------------------------------------- /config/fixtures/images/blog_post_3_teaser_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/blog_post_3_teaser_image.webp -------------------------------------------------------------------------------- /config/fixtures/images/glasses_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/glasses_banner.webp -------------------------------------------------------------------------------- /config/fixtures/images/glasses_content_image_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/glasses_content_image_1.webp -------------------------------------------------------------------------------- /config/fixtures/images/glasses_content_image_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/glasses_content_image_2.webp -------------------------------------------------------------------------------- /config/fixtures/images/glasses_teaser.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/glasses_teaser.webp -------------------------------------------------------------------------------- /config/fixtures/images/mid_season_sale_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/mid_season_sale_banner.webp -------------------------------------------------------------------------------- /config/fixtures/images/mid_season_sale_homepage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/mid_season_sale_homepage.webp -------------------------------------------------------------------------------- /config/fixtures/images/products/crystal_gaze_glasses.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/products/crystal_gaze_glasses.webp -------------------------------------------------------------------------------- /config/fixtures/images/products/future_shield_glasses.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/products/future_shield_glasses.webp -------------------------------------------------------------------------------- /config/fixtures/images/products/ocean_breeze_glasses.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/products/ocean_breeze_glasses.webp -------------------------------------------------------------------------------- /config/fixtures/images/products/starry_night_glasses.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/products/starry_night_glasses.webp -------------------------------------------------------------------------------- /config/fixtures/images/products/sunshine_vision_glasses.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/products/sunshine_vision_glasses.webp -------------------------------------------------------------------------------- /config/fixtures/images/products/urban_vision_glasses.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/fixtures/images/products/urban_vision_glasses.webp -------------------------------------------------------------------------------- /config/grids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/grids.yaml -------------------------------------------------------------------------------- /config/grids/admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/grids/admin.yaml -------------------------------------------------------------------------------- /config/grids/admin/block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/grids/admin/block.yaml -------------------------------------------------------------------------------- /config/grids/admin/collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/grids/admin/collection.yaml -------------------------------------------------------------------------------- /config/grids/admin/media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/grids/admin/media.yaml -------------------------------------------------------------------------------- /config/grids/admin/page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/grids/admin/page.yaml -------------------------------------------------------------------------------- /config/grids/admin/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/grids/admin/template.yaml -------------------------------------------------------------------------------- /config/grids/shop.yaml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: "@SyliusCmsPlugin/config/grids/shop/page.yaml" } 3 | -------------------------------------------------------------------------------- /config/grids/shop/page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/grids/shop/page.yaml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/admin.yaml -------------------------------------------------------------------------------- /config/routes/admin/block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/admin/block.yaml -------------------------------------------------------------------------------- /config/routes/admin/collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/admin/collection.yaml -------------------------------------------------------------------------------- /config/routes/admin/media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/admin/media.yaml -------------------------------------------------------------------------------- /config/routes/admin/page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/admin/page.yaml -------------------------------------------------------------------------------- /config/routes/admin/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/admin/template.yaml -------------------------------------------------------------------------------- /config/routes/shop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/shop.yaml -------------------------------------------------------------------------------- /config/routes/shop/collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/shop/collection.yaml -------------------------------------------------------------------------------- /config/routes/shop/media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/shop/media.yaml -------------------------------------------------------------------------------- /config/routes/shop/page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/routes/shop/page.yaml -------------------------------------------------------------------------------- /config/serialization/Block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/serialization/Block.xml -------------------------------------------------------------------------------- /config/serialization/Collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/serialization/Collection.xml -------------------------------------------------------------------------------- /config/serialization/ContentConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/serialization/ContentConfiguration.xml -------------------------------------------------------------------------------- /config/serialization/Media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/serialization/Media.xml -------------------------------------------------------------------------------- /config/serialization/MediaTranslation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/serialization/MediaTranslation.xml -------------------------------------------------------------------------------- /config/serialization/Page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/serialization/Page.xml -------------------------------------------------------------------------------- /config/serialization/PageTranslation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/serialization/PageTranslation.xml -------------------------------------------------------------------------------- /config/serialization/Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/serialization/Template.xml -------------------------------------------------------------------------------- /config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services.xml -------------------------------------------------------------------------------- /config/services/controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/controller.xml -------------------------------------------------------------------------------- /config/services/event_listener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/event_listener.xml -------------------------------------------------------------------------------- /config/services/fixture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/fixture.xml -------------------------------------------------------------------------------- /config/services/form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/form.xml -------------------------------------------------------------------------------- /config/services/media_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/media_provider.xml -------------------------------------------------------------------------------- /config/services/renderer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/renderer.xml -------------------------------------------------------------------------------- /config/services/resolver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/resolver.xml -------------------------------------------------------------------------------- /config/services/twig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/twig.xml -------------------------------------------------------------------------------- /config/services/twig/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/twig/component.xml -------------------------------------------------------------------------------- /config/services/twig/extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/twig/extension.xml -------------------------------------------------------------------------------- /config/services/twig/runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/services/twig/runtime.xml -------------------------------------------------------------------------------- /config/twig_hooks/admin/block/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/block/create.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/block/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/block/update.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/collection/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/collection/create.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/collection/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/collection/update.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/media/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/media/create.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/media/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/media/update.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/page/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/page/create.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/page/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/page/update.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/template/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/template/create.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/template/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/admin/template/update.yaml -------------------------------------------------------------------------------- /config/twig_hooks/shop/collection/page/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/shop/collection/page/index.yaml -------------------------------------------------------------------------------- /config/twig_hooks/shop/page/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/shop/page/index.yaml -------------------------------------------------------------------------------- /config/twig_hooks/shop/page/show.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/twig_hooks/shop/page/show.yaml -------------------------------------------------------------------------------- /config/validation/Block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/validation/Block.xml -------------------------------------------------------------------------------- /config/validation/Collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/validation/Collection.xml -------------------------------------------------------------------------------- /config/validation/Media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/validation/Media.xml -------------------------------------------------------------------------------- /config/validation/MediaTranslation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/validation/MediaTranslation.xml -------------------------------------------------------------------------------- /config/validation/Page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/validation/Page.xml -------------------------------------------------------------------------------- /config/validation/PageTranslation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/validation/PageTranslation.xml -------------------------------------------------------------------------------- /config/validation/Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/config/validation/Template.xml -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/ecs.php -------------------------------------------------------------------------------- /etc/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/admin/adding_collection.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/adding_collection.feature -------------------------------------------------------------------------------- /features/admin/adding_content_template.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/adding_content_template.feature -------------------------------------------------------------------------------- /features/admin/adding_media.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/adding_media.feature -------------------------------------------------------------------------------- /features/admin/block/adding_block.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/block/adding_block.feature -------------------------------------------------------------------------------- /features/admin/block/managing_blocks.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/block/managing_blocks.feature -------------------------------------------------------------------------------- /features/admin/managing_collections.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/managing_collections.feature -------------------------------------------------------------------------------- /features/admin/managing_content_templates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/managing_content_templates.feature -------------------------------------------------------------------------------- /features/admin/managing_media.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/managing_media.feature -------------------------------------------------------------------------------- /features/admin/page/adding_page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/page/adding_page.feature -------------------------------------------------------------------------------- /features/admin/page/managing_pages.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/page/managing_pages.feature -------------------------------------------------------------------------------- /features/admin/wysiwyg/trix/manging_blocks.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/wysiwyg/trix/manging_blocks.feature -------------------------------------------------------------------------------- /features/admin/wysiwyg/trix/manging_media.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/wysiwyg/trix/manging_media.feature -------------------------------------------------------------------------------- /features/admin/wysiwyg/trix/manging_pages.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/admin/wysiwyg/trix/manging_pages.feature -------------------------------------------------------------------------------- /features/api/viewing_blocks.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/api/viewing_blocks.feature -------------------------------------------------------------------------------- /features/api/viewing_collections.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/api/viewing_collections.feature -------------------------------------------------------------------------------- /features/api/viewing_media.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/api/viewing_media.feature -------------------------------------------------------------------------------- /features/api/viewing_pages.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/api/viewing_pages.feature -------------------------------------------------------------------------------- /features/shop/displaying_page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/features/shop/displaying_page.feature -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Context/PreviewLocaleContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Context/PreviewLocaleContext.php -------------------------------------------------------------------------------- /src/Controller/Action/Admin/UploadEditorImageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Controller/Action/Admin/UploadEditorImageAction.php -------------------------------------------------------------------------------- /src/Controller/BlockController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Controller/BlockController.php -------------------------------------------------------------------------------- /src/Controller/Helper/FormErrorsFlashHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Controller/Helper/FormErrorsFlashHelper.php -------------------------------------------------------------------------------- /src/Controller/Helper/FormErrorsFlashHelperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Controller/Helper/FormErrorsFlashHelperInterface.php -------------------------------------------------------------------------------- /src/Controller/MediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Controller/MediaController.php -------------------------------------------------------------------------------- /src/Controller/MediaPageControllersCommonDependencyInjectionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Controller/MediaPageControllersCommonDependencyInjectionsTrait.php -------------------------------------------------------------------------------- /src/Controller/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Controller/PageController.php -------------------------------------------------------------------------------- /src/Controller/ResourceDataProcessingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Controller/ResourceDataProcessingTrait.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ContentElementPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/DependencyInjection/Compiler/ContentElementPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/MediaProviderPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/DependencyInjection/Compiler/MediaProviderPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/SyliusCmsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/DependencyInjection/SyliusCmsExtension.php -------------------------------------------------------------------------------- /src/Doctrine/ORM/Extension/EnabledAndAvailableExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Doctrine/ORM/Extension/EnabledAndAvailableExtension.php -------------------------------------------------------------------------------- /src/Entity/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Block.php -------------------------------------------------------------------------------- /src/Entity/BlockInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/BlockInterface.php -------------------------------------------------------------------------------- /src/Entity/BlockProductAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/BlockProductAwareInterface.php -------------------------------------------------------------------------------- /src/Entity/BlockTaxonAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/BlockTaxonAwareInterface.php -------------------------------------------------------------------------------- /src/Entity/BlockTranslationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/BlockTranslationInterface.php -------------------------------------------------------------------------------- /src/Entity/BlocksCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/BlocksCollectionInterface.php -------------------------------------------------------------------------------- /src/Entity/CollectibleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/CollectibleInterface.php -------------------------------------------------------------------------------- /src/Entity/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Collection.php -------------------------------------------------------------------------------- /src/Entity/CollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/CollectionInterface.php -------------------------------------------------------------------------------- /src/Entity/ContentConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/ContentConfiguration.php -------------------------------------------------------------------------------- /src/Entity/ContentConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/ContentConfigurationInterface.php -------------------------------------------------------------------------------- /src/Entity/ContentElementsAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/ContentElementsAwareInterface.php -------------------------------------------------------------------------------- /src/Entity/ContentableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/ContentableInterface.php -------------------------------------------------------------------------------- /src/Entity/LocaleAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/LocaleAwareInterface.php -------------------------------------------------------------------------------- /src/Entity/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Media.php -------------------------------------------------------------------------------- /src/Entity/MediaCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/MediaCollectionInterface.php -------------------------------------------------------------------------------- /src/Entity/MediaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/MediaInterface.php -------------------------------------------------------------------------------- /src/Entity/MediaTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/MediaTranslation.php -------------------------------------------------------------------------------- /src/Entity/MediaTranslationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/MediaTranslationInterface.php -------------------------------------------------------------------------------- /src/Entity/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Page.php -------------------------------------------------------------------------------- /src/Entity/PageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/PageInterface.php -------------------------------------------------------------------------------- /src/Entity/PageTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/PageTranslation.php -------------------------------------------------------------------------------- /src/Entity/PageTranslationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/PageTranslationInterface.php -------------------------------------------------------------------------------- /src/Entity/PagesCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/PagesCollectionInterface.php -------------------------------------------------------------------------------- /src/Entity/ProductsAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/ProductsAwareInterface.php -------------------------------------------------------------------------------- /src/Entity/ProductsInTaxonsAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/ProductsInTaxonsAwareInterface.php -------------------------------------------------------------------------------- /src/Entity/StaticTemplateAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/StaticTemplateAwareInterface.php -------------------------------------------------------------------------------- /src/Entity/TaxonAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/TaxonAwareInterface.php -------------------------------------------------------------------------------- /src/Entity/TeaserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/TeaserInterface.php -------------------------------------------------------------------------------- /src/Entity/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Template.php -------------------------------------------------------------------------------- /src/Entity/TemplateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/TemplateInterface.php -------------------------------------------------------------------------------- /src/Entity/Trait/BlocksCollectionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/BlocksCollectionTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/ChannelsAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/ChannelsAwareTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/CollectibleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/CollectibleTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/ContentElementsAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/ContentElementsAwareTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/LocaleAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/LocaleAwareTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/MediaCollectionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/MediaCollectionTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/PagesCollectionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/PagesCollectionTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/ProductsAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/ProductsAwareTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/ProductsInTaxonsAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/ProductsInTaxonsAwareTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/StaticTemplateAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/StaticTemplateAwareTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/TaxonAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/TaxonAwareTrait.php -------------------------------------------------------------------------------- /src/Entity/Trait/TeaserTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Entity/Trait/TeaserTrait.php -------------------------------------------------------------------------------- /src/EventListener/MediaUploadListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/EventListener/MediaUploadListener.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/ChannelsAssigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/ChannelsAssigner.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/ChannelsAssignerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/ChannelsAssignerInterface.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/CollectionsAssigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/CollectionsAssigner.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/CollectionsAssignerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/CollectionsAssignerInterface.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/ProductsAssigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/ProductsAssigner.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/ProductsAssignerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/ProductsAssignerInterface.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/ProductsInTaxonsAssigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/ProductsInTaxonsAssigner.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/ProductsInTaxonsAssignerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/ProductsInTaxonsAssignerInterface.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/TaxonsAssigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/TaxonsAssigner.php -------------------------------------------------------------------------------- /src/Fixture/Assigner/TaxonsAssignerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Assigner/TaxonsAssignerInterface.php -------------------------------------------------------------------------------- /src/Fixture/BlockFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/BlockFixture.php -------------------------------------------------------------------------------- /src/Fixture/CollectionFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/CollectionFixture.php -------------------------------------------------------------------------------- /src/Fixture/Factory/BlockFixtureFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Factory/BlockFixtureFactory.php -------------------------------------------------------------------------------- /src/Fixture/Factory/CollectionFixtureFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Factory/CollectionFixtureFactory.php -------------------------------------------------------------------------------- /src/Fixture/Factory/FixtureFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Factory/FixtureFactoryInterface.php -------------------------------------------------------------------------------- /src/Fixture/Factory/MediaFixtureFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Factory/MediaFixtureFactory.php -------------------------------------------------------------------------------- /src/Fixture/Factory/PageFixtureFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Factory/PageFixtureFactory.php -------------------------------------------------------------------------------- /src/Fixture/Factory/TemplateFixtureFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/Factory/TemplateFixtureFactory.php -------------------------------------------------------------------------------- /src/Fixture/MediaFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/MediaFixture.php -------------------------------------------------------------------------------- /src/Fixture/PageFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/PageFixture.php -------------------------------------------------------------------------------- /src/Fixture/TemplateFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Fixture/TemplateFixture.php -------------------------------------------------------------------------------- /src/Form/DataTransformer/ContentElementDataTransformerChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/DataTransformer/ContentElementDataTransformerChecker.php -------------------------------------------------------------------------------- /src/Form/DataTransformer/MultipleMediaToCodesTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/DataTransformer/MultipleMediaToCodesTransformer.php -------------------------------------------------------------------------------- /src/Form/Normalizer/TypedQueryBuilderNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Normalizer/TypedQueryBuilderNormalizer.php -------------------------------------------------------------------------------- /src/Form/Strategy/Wysiwyg/AbstractWysiwygStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Strategy/Wysiwyg/AbstractWysiwygStrategy.php -------------------------------------------------------------------------------- /src/Form/Strategy/Wysiwyg/TrixStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Strategy/Wysiwyg/TrixStrategy.php -------------------------------------------------------------------------------- /src/Form/Strategy/Wysiwyg/WysiwygStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Strategy/Wysiwyg/WysiwygStrategyInterface.php -------------------------------------------------------------------------------- /src/Form/Type/BlockAutocompleteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/BlockAutocompleteType.php -------------------------------------------------------------------------------- /src/Form/Type/BlockType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/BlockType.php -------------------------------------------------------------------------------- /src/Form/Type/CollectionAutocompleteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/CollectionAutocompleteType.php -------------------------------------------------------------------------------- /src/Form/Type/CollectionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/CollectionType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentConfigurationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentConfigurationType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElementChoiceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElementChoiceType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/ContentElementConfigurationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/ContentElementConfigurationType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/HeadingContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/HeadingContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/MultipleMediaContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/MultipleMediaContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/PagesCollectionContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/PagesCollectionContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/ProductsCarouselByTaxonContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/ProductsCarouselByTaxonContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/ProductsCarouselContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/ProductsCarouselContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/ProductsGridByTaxonContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/ProductsGridByTaxonContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/ProductsGridContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/ProductsGridContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/SingleMediaContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/SingleMediaContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/SpacerContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/SpacerContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/TaxonsListContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/TaxonsListContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/ContentElements/TextareaContentElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/ContentElements/TextareaContentElementType.php -------------------------------------------------------------------------------- /src/Form/Type/MediaAutocompleteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/MediaAutocompleteType.php -------------------------------------------------------------------------------- /src/Form/Type/MediaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/MediaType.php -------------------------------------------------------------------------------- /src/Form/Type/PageAutocompleteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/PageAutocompleteType.php -------------------------------------------------------------------------------- /src/Form/Type/PageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/PageType.php -------------------------------------------------------------------------------- /src/Form/Type/TemplateAutocompleteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/TemplateAutocompleteType.php -------------------------------------------------------------------------------- /src/Form/Type/TemplateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/TemplateType.php -------------------------------------------------------------------------------- /src/Form/Type/Translation/ContentConfigurationTranslationsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/Translation/ContentConfigurationTranslationsType.php -------------------------------------------------------------------------------- /src/Form/Type/Translation/MediaTranslationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/Translation/MediaTranslationType.php -------------------------------------------------------------------------------- /src/Form/Type/Translation/PageTranslationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/Translation/PageTranslationType.php -------------------------------------------------------------------------------- /src/Form/Type/WysiwygType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Form/Type/WysiwygType.php -------------------------------------------------------------------------------- /src/MediaProvider/FilenameHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/MediaProvider/FilenameHelper.php -------------------------------------------------------------------------------- /src/MediaProvider/GenericProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/MediaProvider/GenericProvider.php -------------------------------------------------------------------------------- /src/MediaProvider/ProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/MediaProvider/ProviderInterface.php -------------------------------------------------------------------------------- /src/Menu/ContentManagementMenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Menu/ContentManagementMenuBuilder.php -------------------------------------------------------------------------------- /src/Menu/MenuReorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Menu/MenuReorder.php -------------------------------------------------------------------------------- /src/Menu/MenuReorderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Menu/MenuReorderInterface.php -------------------------------------------------------------------------------- /src/Migrations/Version20250418063555.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Migrations/Version20250418063555.php -------------------------------------------------------------------------------- /src/Migrations/Version20250418065534.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Migrations/Version20250418065534.php -------------------------------------------------------------------------------- /src/Provider/ResourceTemplateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Provider/ResourceTemplateProvider.php -------------------------------------------------------------------------------- /src/Provider/ResourceTemplateProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Provider/ResourceTemplateProviderInterface.php -------------------------------------------------------------------------------- /src/Renderer/Collection/CollectionBlocksRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/Collection/CollectionBlocksRenderer.php -------------------------------------------------------------------------------- /src/Renderer/Collection/CollectionMediaRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/Collection/CollectionMediaRenderer.php -------------------------------------------------------------------------------- /src/Renderer/Collection/CollectionPagesRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/Collection/CollectionPagesRenderer.php -------------------------------------------------------------------------------- /src/Renderer/Collection/CollectionRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/Collection/CollectionRendererInterface.php -------------------------------------------------------------------------------- /src/Renderer/CollectionRendererStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/CollectionRendererStrategy.php -------------------------------------------------------------------------------- /src/Renderer/CollectionRendererStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/CollectionRendererStrategyInterface.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/AbstractContentElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/AbstractContentElement.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/ContentElementRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/ContentElementRendererInterface.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/HeadingContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/HeadingContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/MultipleMediaContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/MultipleMediaContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/PagesCollectionContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/PagesCollectionContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/ProductsCarouselByTaxonContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/ProductsCarouselByTaxonContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/ProductsCarouselContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/ProductsCarouselContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/ProductsGridByTaxonContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/ProductsGridByTaxonContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/ProductsGridContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/ProductsGridContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/SingleMediaContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/SingleMediaContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/SpacerContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/SpacerContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/TaxonsListContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/TaxonsListContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElement/TextareaContentElementRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElement/TextareaContentElementRenderer.php -------------------------------------------------------------------------------- /src/Renderer/ContentElementRendererStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElementRendererStrategy.php -------------------------------------------------------------------------------- /src/Renderer/ContentElementRendererStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/ContentElementRendererStrategyInterface.php -------------------------------------------------------------------------------- /src/Renderer/PageLinkRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/PageLinkRenderer.php -------------------------------------------------------------------------------- /src/Renderer/PageLinkRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Renderer/PageLinkRendererInterface.php -------------------------------------------------------------------------------- /src/Repository/BlockRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/BlockRepository.php -------------------------------------------------------------------------------- /src/Repository/BlockRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/BlockRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/CollectionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/CollectionRepository.php -------------------------------------------------------------------------------- /src/Repository/CollectionRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/CollectionRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/ContentConfigurationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/ContentConfigurationRepository.php -------------------------------------------------------------------------------- /src/Repository/MediaRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/MediaRepository.php -------------------------------------------------------------------------------- /src/Repository/MediaRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/MediaRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/PageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/PageRepository.php -------------------------------------------------------------------------------- /src/Repository/PageRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/PageRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/TemplateRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/TemplateRepository.php -------------------------------------------------------------------------------- /src/Repository/TemplateRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/TemplateRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/TranslationBasedAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Repository/TranslationBasedAwareTrait.php -------------------------------------------------------------------------------- /src/Resolver/BlockResourceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/BlockResourceResolver.php -------------------------------------------------------------------------------- /src/Resolver/BlockResourceResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/BlockResourceResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/CollectionResourceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/CollectionResourceResolver.php -------------------------------------------------------------------------------- /src/Resolver/CollectionResourceResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/CollectionResourceResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/MediaProviderResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/MediaProviderResolver.php -------------------------------------------------------------------------------- /src/Resolver/MediaProviderResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/MediaProviderResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/MediaResourceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/MediaResourceResolver.php -------------------------------------------------------------------------------- /src/Resolver/MediaResourceResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/MediaResourceResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/PageResourceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/PageResourceResolver.php -------------------------------------------------------------------------------- /src/Resolver/PageResourceResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/PageResourceResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/ResourceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/ResourceResolver.php -------------------------------------------------------------------------------- /src/Resolver/ResourceResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/ResourceResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/WysiwygStrategyResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/WysiwygStrategyResolver.php -------------------------------------------------------------------------------- /src/Resolver/WysiwygStrategyResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Resolver/WysiwygStrategyResolverInterface.php -------------------------------------------------------------------------------- /src/Sorter/CollectionsSorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Sorter/CollectionsSorter.php -------------------------------------------------------------------------------- /src/Sorter/CollectionsSorterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Sorter/CollectionsSorterInterface.php -------------------------------------------------------------------------------- /src/Sorter/SorterById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Sorter/SorterById.php -------------------------------------------------------------------------------- /src/SyliusCmsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/SyliusCmsPlugin.php -------------------------------------------------------------------------------- /src/Twig/Component/Block/FormComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Component/Block/FormComponent.php -------------------------------------------------------------------------------- /src/Twig/Component/MediaPreviewComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Component/MediaPreviewComponent.php -------------------------------------------------------------------------------- /src/Twig/Component/Page/FormComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Component/Page/FormComponent.php -------------------------------------------------------------------------------- /src/Twig/Component/Trait/ContentElementsCollectionFormComponentTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Component/Trait/ContentElementsCollectionFormComponentTrait.php -------------------------------------------------------------------------------- /src/Twig/Component/Trait/PreviewComponentTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Component/Trait/PreviewComponentTrait.php -------------------------------------------------------------------------------- /src/Twig/Extension/RenderBlockExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Extension/RenderBlockExtension.php -------------------------------------------------------------------------------- /src/Twig/Extension/RenderCollectionExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Extension/RenderCollectionExtension.php -------------------------------------------------------------------------------- /src/Twig/Extension/RenderContentElementsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Extension/RenderContentElementsExtension.php -------------------------------------------------------------------------------- /src/Twig/Extension/RenderContentExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Extension/RenderContentExtension.php -------------------------------------------------------------------------------- /src/Twig/Extension/RenderMediaExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Extension/RenderMediaExtension.php -------------------------------------------------------------------------------- /src/Twig/Extension/RenderPageLinkExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Extension/RenderPageLinkExtension.php -------------------------------------------------------------------------------- /src/Twig/Extension/ResolveMediaVideoPathExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Extension/ResolveMediaVideoPathExtension.php -------------------------------------------------------------------------------- /src/Twig/Extension/TemplateExistsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Extension/TemplateExistsExtension.php -------------------------------------------------------------------------------- /src/Twig/Parser/ContentParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Parser/ContentParser.php -------------------------------------------------------------------------------- /src/Twig/Parser/ContentParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Parser/ContentParserInterface.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderBlockRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderBlockRuntime.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderBlockRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderBlockRuntimeInterface.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderCollectionRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderCollectionRuntime.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderCollectionRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderCollectionRuntimeInterface.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderContentElementsRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderContentElementsRuntime.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderContentElementsRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderContentElementsRuntimeInterface.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderContentRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderContentRuntime.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderContentRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderContentRuntimeInterface.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderMediaRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderMediaRuntime.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderMediaRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderMediaRuntimeInterface.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderPageLinkRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderPageLinkRuntime.php -------------------------------------------------------------------------------- /src/Twig/Runtime/RenderPageLinkRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/RenderPageLinkRuntimeInterface.php -------------------------------------------------------------------------------- /src/Twig/Runtime/ResolveMediaVideoPathRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/ResolveMediaVideoPathRuntime.php -------------------------------------------------------------------------------- /src/Twig/Runtime/ResolveMediaVideoPathRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/ResolveMediaVideoPathRuntimeInterface.php -------------------------------------------------------------------------------- /src/Twig/Runtime/TemplateExistsRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/TemplateExistsRuntime.php -------------------------------------------------------------------------------- /src/Twig/Runtime/TemplateExistsRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Twig/Runtime/TemplateExistsRuntimeInterface.php -------------------------------------------------------------------------------- /src/Uploader/MediaUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Uploader/MediaUploader.php -------------------------------------------------------------------------------- /src/Uploader/MediaUploaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Uploader/MediaUploaderInterface.php -------------------------------------------------------------------------------- /src/Validator/Constraint/FileMatchesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Validator/Constraint/FileMatchesType.php -------------------------------------------------------------------------------- /src/Validator/FileMatchesTypeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/src/Validator/FileMatchesTypeValidator.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/admin/block/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/collections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/collections.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/content.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/content/template.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/content/template.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/content/translations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/content/translations.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/content/translations/elements.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/content/translations/elements.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/content/translations/elements_template.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/content/translations/elements_template.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/display_config.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/display_config.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/display_config/products.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/display_config/products.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/display_config/products_in_taxons.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/display_config/products_in_taxons.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/display_config/taxons.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/display_config/taxons.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/general.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/general.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/general/channels.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/general/channels.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/general/code.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/general/code.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/general/enabled.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/general/enabled.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form/sections/general/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form/sections/general/name.html.twig -------------------------------------------------------------------------------- /templates/admin/block/form_theme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/form_theme.html.twig -------------------------------------------------------------------------------- /templates/admin/block/preview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/block/preview.html.twig -------------------------------------------------------------------------------- /templates/admin/collection/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/collection/form.html.twig -------------------------------------------------------------------------------- /templates/admin/collection/form/sections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/collection/form/sections.html.twig -------------------------------------------------------------------------------- /templates/admin/collection/form/sections/elements.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/collection/form/sections/elements.html.twig -------------------------------------------------------------------------------- /templates/admin/collection/form/sections/elements/collection_elements.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/collection/form/sections/elements/collection_elements.html.twig -------------------------------------------------------------------------------- /templates/admin/collection/form/sections/general.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/collection/form/sections/general.html.twig -------------------------------------------------------------------------------- /templates/admin/collection/form/sections/general/code.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/collection/form/sections/general/code.html.twig -------------------------------------------------------------------------------- /templates/admin/collection/form/sections/general/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/collection/form/sections/general/name.html.twig -------------------------------------------------------------------------------- /templates/admin/collection/form/sections/general/type.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/collection/form/sections/general/type.html.twig -------------------------------------------------------------------------------- /templates/admin/grid/field/channels.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/grid/field/channels.html.twig -------------------------------------------------------------------------------- /templates/admin/grid/field/collections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/grid/field/collections.html.twig -------------------------------------------------------------------------------- /templates/admin/grid/field/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/grid/field/content.html.twig -------------------------------------------------------------------------------- /templates/admin/grid/field/image_preview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/grid/field/image_preview.html.twig -------------------------------------------------------------------------------- /templates/admin/grid/field/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/grid/field/name.html.twig -------------------------------------------------------------------------------- /templates/admin/grid/field/page_image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/grid/field/page_image.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/collections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/collections.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/general.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/general.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/general/channels.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/general/channels.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/general/code.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/general/code.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/general/enabled.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/general/enabled.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/general/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/general/name.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/general/translations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/general/translations.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/media.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/media.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/media/file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/media/file.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/media/path.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/media/path.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/media/preview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/media/preview.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/media/save_with_original_filename.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/media/save_with_original_filename.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/media/type.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/media/type.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/translations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/translations.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/translations/alt.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/translations/alt.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/translations/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/translations/content.html.twig -------------------------------------------------------------------------------- /templates/admin/media/form/sections/translations/link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/form/sections/translations/link.html.twig -------------------------------------------------------------------------------- /templates/admin/media/preview/file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/preview/file.html.twig -------------------------------------------------------------------------------- /templates/admin/media/preview/image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/preview/image.html.twig -------------------------------------------------------------------------------- /templates/admin/media/preview/video.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/media/preview/video.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/collections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/collections.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/content.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/content/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/content/fields.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/content/fields/template.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/content/fields/template.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/content/translations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/content/translations.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/content/translations/elements.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/content/translations/elements.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/content/translations/elements_template.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/content/translations/elements_template.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/general.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/general.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/general/buttons.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/general/buttons.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/general/channels.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/general/channels.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/general/code.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/general/code.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/general/enabled.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/general/enabled.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/general/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/general/name.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/general/publish_at.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/general/publish_at.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/seo.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/seo.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/seo/translations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/seo/translations.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/seo/translations/meta_description.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/seo/translations/meta_description.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/seo/translations/meta_keywords.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/seo/translations/meta_keywords.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/seo/translations/meta_title.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/seo/translations/meta_title.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/seo/translations/slug.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/seo/translations/slug.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/teaser.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/teaser.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/teaser/translations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/teaser/translations.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/teaser/translations/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/teaser/translations/content.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/teaser/translations/image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/teaser/translations/image.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form/sections/teaser/translations/title.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form/sections/teaser/translations/title.html.twig -------------------------------------------------------------------------------- /templates/admin/page/form_theme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/form_theme.html.twig -------------------------------------------------------------------------------- /templates/admin/page/link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/link.html.twig -------------------------------------------------------------------------------- /templates/admin/page/preview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/page/preview.html.twig -------------------------------------------------------------------------------- /templates/admin/shared/component_elements/form_theme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/shared/component_elements/form_theme.html.twig -------------------------------------------------------------------------------- /templates/admin/shared/editor/trix.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/shared/editor/trix.html.twig -------------------------------------------------------------------------------- /templates/admin/shared/preview/missing_template.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/shared/preview/missing_template.html.twig -------------------------------------------------------------------------------- /templates/admin/shared/preview/render.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/shared/preview/render.html.twig -------------------------------------------------------------------------------- /templates/admin/template/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/template/form.html.twig -------------------------------------------------------------------------------- /templates/admin/template/form/sections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/template/form/sections.html.twig -------------------------------------------------------------------------------- /templates/admin/template/form/sections/elements.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/template/form/sections/elements.html.twig -------------------------------------------------------------------------------- /templates/admin/template/form/sections/elements/content_elements.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/template/form/sections/elements/content_elements.html.twig -------------------------------------------------------------------------------- /templates/admin/template/form/sections/general.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/template/form/sections/general.html.twig -------------------------------------------------------------------------------- /templates/admin/template/form/sections/general/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/template/form/sections/general/name.html.twig -------------------------------------------------------------------------------- /templates/admin/template/form/sections/general/type.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/admin/template/form/sections/general/type.html.twig -------------------------------------------------------------------------------- /templates/shop/block/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/block/show.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/name.html.twig: -------------------------------------------------------------------------------- 1 |

2 | {{ collection.name }} 3 |

4 | -------------------------------------------------------------------------------- /templates/shop/collection/page/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/page/index/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index/content.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/page/index/content/body.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index/content/body.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/page/index/content/body/no_results.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index/content/body/no_results.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/page/index/content/body/pages.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index/content/body/pages.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/page/index/content/body/pages/page.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index/content/body/pages/page.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/page/index/content/body/pages/page/header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index/content/body/pages/page/header.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/page/index/content/body/pagination.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index/content/body/pagination.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/page/index/content/header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/page/index/content/header.html.twig -------------------------------------------------------------------------------- /templates/shop/collection/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/collection/show.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/heading.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/heading.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/multiple_media.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/multiple_media.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/pages_collection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/pages_collection.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/products_carousel.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/products_carousel.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/products_grid.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/products_grid.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/single_media.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/single_media.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/spacer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/spacer.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/taxons_list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/taxons_list.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/elements/textarea.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/elements/textarea.html.twig -------------------------------------------------------------------------------- /templates/shop/content_element/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/content_element/index.html.twig -------------------------------------------------------------------------------- /templates/shop/media/show/file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/media/show/file.html.twig -------------------------------------------------------------------------------- /templates/shop/media/show/image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/media/show/image.html.twig -------------------------------------------------------------------------------- /templates/shop/media/show/video.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/media/show/video.html.twig -------------------------------------------------------------------------------- /templates/shop/page/link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/link.html.twig -------------------------------------------------------------------------------- /templates/shop/page/metatags/description.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/metatags/description.html.twig -------------------------------------------------------------------------------- /templates/shop/page/metatags/keywords.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/metatags/keywords.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content/body.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content/body.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content/body/content_elements.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content/body/content_elements.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content/body/header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content/body/header.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content/breadcrumbs.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content/breadcrumbs.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content/collections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content/collections.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content/collections/collection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content/collections/collection.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content/collections/collection/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content/collections/collection/name.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/content/not_published.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/content/not_published.html.twig -------------------------------------------------------------------------------- /templates/shop/page/show/link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/page/show/link.html.twig -------------------------------------------------------------------------------- /templates/shop/shared/components/render/block.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/shared/components/render/block.html.twig -------------------------------------------------------------------------------- /templates/shop/shared/components/render/collection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/shared/components/render/collection.html.twig -------------------------------------------------------------------------------- /templates/shop/shared/components/render/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/shared/components/render/content.html.twig -------------------------------------------------------------------------------- /templates/shop/shared/components/render/content_elements.html.twig: -------------------------------------------------------------------------------- 1 | {{ sylius_cms_render_content_elements(item) }} 2 | -------------------------------------------------------------------------------- /templates/shop/shared/components/render/media.html.twig: -------------------------------------------------------------------------------- 1 | {{ sylius_cms_render_media(code) }} 2 | -------------------------------------------------------------------------------- /templates/shop/shared/components/render/page_link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/templates/shop/shared/components/render/page_link.html.twig -------------------------------------------------------------------------------- /tests/Behat/Behaviour/ChecksCodeImmutabilityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Behaviour/ChecksCodeImmutabilityInterface.php -------------------------------------------------------------------------------- /tests/Behat/Behaviour/ChecksCodeImmutabilityTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Behaviour/ChecksCodeImmutabilityTrait.php -------------------------------------------------------------------------------- /tests/Behat/Behaviour/ContainsEmptyListInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Behaviour/ContainsEmptyListInterface.php -------------------------------------------------------------------------------- /tests/Behat/Behaviour/ContainsEmptyListTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Behaviour/ContainsEmptyListTrait.php -------------------------------------------------------------------------------- /tests/Behat/Behaviour/ContainsErrorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Behaviour/ContainsErrorInterface.php -------------------------------------------------------------------------------- /tests/Behat/Behaviour/ContainsErrorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Behaviour/ContainsErrorTrait.php -------------------------------------------------------------------------------- /tests/Behat/Context/Api/BlockContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Api/BlockContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Api/CollectionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Api/CollectionContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Api/MediaContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Api/MediaContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Api/PageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Api/PageContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Setup/BlockContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Setup/BlockContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Setup/CollectionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Setup/CollectionContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Setup/ContentTemplateContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Setup/ContentTemplateContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Setup/MediaContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Setup/MediaContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Setup/PageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Setup/PageContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Transform/BlockContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Transform/BlockContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Transform/CollectionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Transform/CollectionContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Transform/MediaContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Transform/MediaContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Transform/PageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Transform/PageContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/BlockContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Admin/BlockContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/CollectionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Admin/CollectionContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/ContentCollectionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Admin/ContentCollectionContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/ContentTemplateContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Admin/ContentTemplateContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/MediaContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Admin/MediaContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/PageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Admin/PageContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/TrixWysiwygContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Admin/TrixWysiwygContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Shop/HomepageBlocksContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Shop/HomepageBlocksContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Shop/MediaContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Shop/MediaContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Shop/PageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Context/Ui/Shop/PageContext.php -------------------------------------------------------------------------------- /tests/Behat/Element/Admin/ContentElementsCollectionElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Element/Admin/ContentElementsCollectionElement.php -------------------------------------------------------------------------------- /tests/Behat/Element/Admin/ContentElementsCollectionElementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Element/Admin/ContentElementsCollectionElementInterface.php -------------------------------------------------------------------------------- /tests/Behat/Helpers/ContentElementHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Helpers/ContentElementHelper.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Block/CreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Block/CreatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Block/CreatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Block/CreatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Block/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Block/IndexPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Block/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Block/IndexPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Block/UpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Block/UpdatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Block/UpdatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Block/UpdatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Collection/CreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Collection/CreatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Collection/CreatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Collection/CreatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Collection/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Collection/IndexPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Collection/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Collection/IndexPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Collection/UpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Collection/UpdatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Collection/UpdatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Collection/UpdatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Media/CreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Media/CreatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Media/CreatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Media/CreatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Media/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Media/IndexPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Media/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Media/IndexPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Media/UpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Media/UpdatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Media/UpdatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Media/UpdatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Page/CreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Page/CreatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Page/CreatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Page/CreatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Page/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Page/IndexPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Page/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Page/IndexPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Page/UpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Page/UpdatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Page/UpdatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Page/UpdatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Template/CreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Template/CreatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Template/CreatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Template/CreatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Template/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Template/IndexPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Template/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Template/IndexPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Template/UpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Template/UpdatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Template/UpdatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Admin/Template/UpdatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/HomePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Shop/HomePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/HomePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Shop/HomePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Page/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Shop/Page/IndexPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Page/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Shop/Page/IndexPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Page/ShowPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Shop/Page/ShowPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Page/ShowPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Page/Shop/Page/ShowPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources.php -------------------------------------------------------------------------------- /tests/Behat/Resources/images/aston_martin_db_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/images/aston_martin_db_11.jpg -------------------------------------------------------------------------------- /tests/Behat/Resources/images/homepage_main.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/images/homepage_main.jpeg -------------------------------------------------------------------------------- /tests/Behat/Resources/images/porsche_911_singer_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/images/porsche_911_singer_1.jpg -------------------------------------------------------------------------------- /tests/Behat/Resources/images/porsche_911_singer_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/images/porsche_911_singer_2.jpg -------------------------------------------------------------------------------- /tests/Behat/Resources/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/api.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/contexts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/contexts.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/contexts/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/contexts/api.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/contexts/setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/contexts/setup.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/contexts/transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/contexts/transform.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/contexts/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/contexts/ui.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/elements.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/pages.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/pages/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/pages/admin.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/pages/admin/block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/pages/admin/block.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/pages/admin/collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/pages/admin/collection.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/pages/admin/media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/pages/admin/media.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/pages/admin/page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/pages/admin/page.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/pages/admin/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/pages/admin/template.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/services/pages/shop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/services/pages/shop.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/api/shop_blocks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/api/shop_blocks.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/api/shop_collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/api/shop_collections.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/api/shop_media.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/api/shop_media.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/api/shop_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/api/shop_pages.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/ui/managing_blocks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/ui/managing_blocks.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/ui/managing_collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/ui/managing_collections.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/ui/managing_content_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/ui/managing_content_templates.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/ui/managing_media.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/ui/managing_media.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/ui/managing_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/ui/managing_pages.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/ui/shop_blocks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/ui/shop_blocks.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/ui/shop_media.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/ui/shop_media.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/ui/shop_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Resources/suites/ui/shop_pages.yml -------------------------------------------------------------------------------- /tests/Behat/Service/FormHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Service/FormHelper.php -------------------------------------------------------------------------------- /tests/Behat/Service/RandomStringGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Service/RandomStringGenerator.php -------------------------------------------------------------------------------- /tests/Behat/Service/RandomStringGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Service/RandomStringGeneratorInterface.php -------------------------------------------------------------------------------- /tests/Behat/Service/WysiwygHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Behat/Service/WysiwygHelper.php -------------------------------------------------------------------------------- /tests/Functional/Api/BlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Api/BlockTest.php -------------------------------------------------------------------------------- /tests/Functional/Api/CollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Api/CollectionTest.php -------------------------------------------------------------------------------- /tests/Functional/Api/MediaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Api/MediaTest.php -------------------------------------------------------------------------------- /tests/Functional/Api/PageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Api/PageTest.php -------------------------------------------------------------------------------- /tests/Functional/DataFixtures/ORM/Api/BlockTest/block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/DataFixtures/ORM/Api/BlockTest/block.yml -------------------------------------------------------------------------------- /tests/Functional/DataFixtures/ORM/Api/CollectionTest/collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/DataFixtures/ORM/Api/CollectionTest/collection.yml -------------------------------------------------------------------------------- /tests/Functional/DataFixtures/ORM/Api/MediaTest/media.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/DataFixtures/ORM/Api/MediaTest/media.yml -------------------------------------------------------------------------------- /tests/Functional/DataFixtures/ORM/Api/PageTest/page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/DataFixtures/ORM/Api/PageTest/page.yml -------------------------------------------------------------------------------- /tests/Functional/FunctionalTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/FunctionalTestCase.php -------------------------------------------------------------------------------- /tests/Functional/Responses/Expected/Api/BlockTest/test_it_get_block_by_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Responses/Expected/Api/BlockTest/test_it_get_block_by_id.json -------------------------------------------------------------------------------- /tests/Functional/Responses/Expected/Api/BlockTest/test_it_get_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Responses/Expected/Api/BlockTest/test_it_get_blocks.json -------------------------------------------------------------------------------- /tests/Functional/Responses/Expected/Api/CollectionTest/test_it_get_collection_by_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Responses/Expected/Api/CollectionTest/test_it_get_collection_by_id.json -------------------------------------------------------------------------------- /tests/Functional/Responses/Expected/Api/CollectionTest/test_it_get_collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Responses/Expected/Api/CollectionTest/test_it_get_collections.json -------------------------------------------------------------------------------- /tests/Functional/Responses/Expected/Api/MediaTest/test_it_get_media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Responses/Expected/Api/MediaTest/test_it_get_media.json -------------------------------------------------------------------------------- /tests/Functional/Responses/Expected/Api/MediaTest/test_it_get_media_by_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Responses/Expected/Api/MediaTest/test_it_get_media_by_id.json -------------------------------------------------------------------------------- /tests/Functional/Responses/Expected/Api/PageTest/test_it_get_page_by_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Responses/Expected/Api/PageTest/test_it_get_page_by_id.json -------------------------------------------------------------------------------- /tests/Functional/Responses/Expected/Api/PageTest/test_it_get_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Functional/Responses/Expected/Api/PageTest/test_it_get_pages.json -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/BlockRepositoryTest/test_it_finds_block_by_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/BlockRepositoryTest/test_it_finds_block_by_code.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/BlockRepositoryTest/test_it_finds_block_by_collection_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/BlockRepositoryTest/test_it_finds_block_by_collection_code.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/BlockRepositoryTest/test_it_finds_block_by_product_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/BlockRepositoryTest/test_it_finds_block_by_product_code.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/CollectionRepositoryTest/test_it_finds_collection_by_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/CollectionRepositoryTest/test_it_finds_collection_by_code.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/CollectionRepositoryTest/test_it_finds_collection_by_codes_and_locale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/CollectionRepositoryTest/test_it_finds_collection_by_codes_and_locale.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/CollectionRepositoryTest/test_it_finds_collection_by_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/CollectionRepositoryTest/test_it_finds_collection_by_name.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/MediaRepositoryTest/test_it_finds_media_by_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/MediaRepositoryTest/test_it_finds_media_by_code.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/MediaRepositoryTest/test_it_finds_media_by_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/MediaRepositoryTest/test_it_finds_media_by_name.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/PageRepositoryTest/test_it_finds_page_by_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/PageRepositoryTest/test_it_finds_page_by_code.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/PageRepositoryTest/test_it_finds_page_by_collection_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/PageRepositoryTest/test_it_finds_page_by_collection_code.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/PageRepositoryTest/test_it_finds_page_by_product.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/PageRepositoryTest/test_it_finds_page_by_product.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/PageRepositoryTest/test_it_finds_page_by_product_and_collection_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/PageRepositoryTest/test_it_finds_page_by_product_and_collection_code.yml -------------------------------------------------------------------------------- /tests/Integration/DataFixtures/ORM/TemplateRepositoryTest/test_it_finds_template_by_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/DataFixtures/ORM/TemplateRepositoryTest/test_it_finds_template_by_name.yml -------------------------------------------------------------------------------- /tests/Integration/Repository/BlockRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/Repository/BlockRepositoryTest.php -------------------------------------------------------------------------------- /tests/Integration/Repository/CollectionRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/Repository/CollectionRepositoryTest.php -------------------------------------------------------------------------------- /tests/Integration/Repository/MediaRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/Repository/MediaRepositoryTest.php -------------------------------------------------------------------------------- /tests/Integration/Repository/PageRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/Repository/PageRepositoryTest.php -------------------------------------------------------------------------------- /tests/Integration/Repository/TemplateRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Integration/Repository/TemplateRepositoryTest.php -------------------------------------------------------------------------------- /tests/TestApplication/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/.env -------------------------------------------------------------------------------- /tests/TestApplication/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/.env.test -------------------------------------------------------------------------------- /tests/TestApplication/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/bundles.php -------------------------------------------------------------------------------- /tests/TestApplication/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/config/config.yaml -------------------------------------------------------------------------------- /tests/TestApplication/config/services_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/config/services_test.php -------------------------------------------------------------------------------- /tests/TestApplication/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/package.json -------------------------------------------------------------------------------- /tests/TestApplication/templates/shop/header/navbar/menu/blog_item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/templates/shop/header/navbar/menu/blog_item.html.twig -------------------------------------------------------------------------------- /tests/TestApplication/templates/shop/header/navbar/menu/faq_item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/templates/shop/header/navbar/menu/faq_item.html.twig -------------------------------------------------------------------------------- /tests/TestApplication/templates/shop/homepage/index/container.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/templates/shop/homepage/index/container.html.twig -------------------------------------------------------------------------------- /tests/TestApplication/templates/shop/homepage/index/sections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/templates/shop/homepage/index/sections.html.twig -------------------------------------------------------------------------------- /tests/TestApplication/templates/shop/template/custom_page.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/TestApplication/templates/shop/template/custom_page.html.twig -------------------------------------------------------------------------------- /tests/Unit/Context/PreviewLocaleContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Context/PreviewLocaleContextTest.php -------------------------------------------------------------------------------- /tests/Unit/Controller/Action/Admin/UploadEditorImageActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Controller/Action/Admin/UploadEditorImageActionTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/BlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Entity/BlockTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/MediaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Entity/MediaTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/MediaTranslationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Entity/MediaTranslationTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/PageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Entity/PageTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/PageTranslationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Entity/PageTranslationTest.php -------------------------------------------------------------------------------- /tests/Unit/EventListener/MediaUploadListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/EventListener/MediaUploadListenerTest.php -------------------------------------------------------------------------------- /tests/Unit/Fixture/Assigner/ChannelsAssignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Fixture/Assigner/ChannelsAssignerTest.php -------------------------------------------------------------------------------- /tests/Unit/Fixture/Assigner/CollectionsAssignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Fixture/Assigner/CollectionsAssignerTest.php -------------------------------------------------------------------------------- /tests/Unit/Fixture/Assigner/ProductsAssignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Fixture/Assigner/ProductsAssignerTest.php -------------------------------------------------------------------------------- /tests/Unit/Fixture/Assigner/ProductsInTaxonsAssignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Fixture/Assigner/ProductsInTaxonsAssignerTest.php -------------------------------------------------------------------------------- /tests/Unit/Fixture/Assigner/TaxonsAssignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Fixture/Assigner/TaxonsAssignerTest.php -------------------------------------------------------------------------------- /tests/Unit/Form/DataTransformer/MultipleMediaToCodesTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Form/DataTransformer/MultipleMediaToCodesTransformerTest.php -------------------------------------------------------------------------------- /tests/Unit/MediaProvider/FilenameHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/MediaProvider/FilenameHelperTest.php -------------------------------------------------------------------------------- /tests/Unit/MediaProvider/GenericProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/MediaProvider/GenericProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Menu/ContentManagementMenuBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Menu/ContentManagementMenuBuilderTest.php -------------------------------------------------------------------------------- /tests/Unit/Menu/MenuReorderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Menu/MenuReorderTest.php -------------------------------------------------------------------------------- /tests/Unit/Provider/ResourceTemplateProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Provider/ResourceTemplateProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/Collection/CollectionBlocksRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/Collection/CollectionBlocksRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/Collection/CollectionMediaRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/Collection/CollectionMediaRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/Collection/CollectionPagesRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/Collection/CollectionPagesRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/CollectionRendererStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/CollectionRendererStrategyTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/HeadingContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/HeadingContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/MultipleMediaContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/MultipleMediaContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/PagesCollectionContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/PagesCollectionContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/ProductsCarouselByTaxonContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/ProductsCarouselByTaxonContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/ProductsCarouselContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/ProductsCarouselContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/ProductsGridByTaxonContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/ProductsGridByTaxonContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/ProductsGridContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/ProductsGridContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/SingleMediaContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/SingleMediaContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/SpacerContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/SpacerContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/TaxonsListContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/TaxonsListContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElement/TextareaContentElementRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElement/TextareaContentElementRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/ContentElementRendererStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/ContentElementRendererStrategyTest.php -------------------------------------------------------------------------------- /tests/Unit/Renderer/PageLinkRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Renderer/PageLinkRendererTest.php -------------------------------------------------------------------------------- /tests/Unit/Resolver/BlockResourceResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Resolver/BlockResourceResolverTest.php -------------------------------------------------------------------------------- /tests/Unit/Resolver/MediaProviderResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Resolver/MediaProviderResolverTest.php -------------------------------------------------------------------------------- /tests/Unit/Resolver/MediaResourceResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Resolver/MediaResourceResolverTest.php -------------------------------------------------------------------------------- /tests/Unit/Resolver/PageResourceResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Resolver/PageResourceResolverTest.php -------------------------------------------------------------------------------- /tests/Unit/Resolver/ResourceResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Resolver/ResourceResolverTest.php -------------------------------------------------------------------------------- /tests/Unit/Sorter/CollectionsSorterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Sorter/CollectionsSorterTest.php -------------------------------------------------------------------------------- /tests/Unit/Twig/Parser/ContentParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Twig/Parser/ContentParserTest.php -------------------------------------------------------------------------------- /tests/Unit/Twig/Runtime/RenderBlockRuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Twig/Runtime/RenderBlockRuntimeTest.php -------------------------------------------------------------------------------- /tests/Unit/Twig/Runtime/RenderContentElementsRuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Twig/Runtime/RenderContentElementsRuntimeTest.php -------------------------------------------------------------------------------- /tests/Unit/Twig/Runtime/RenderContentRuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Twig/Runtime/RenderContentRuntimeTest.php -------------------------------------------------------------------------------- /tests/Unit/Twig/Runtime/RenderMediaRuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Twig/Runtime/RenderMediaRuntimeTest.php -------------------------------------------------------------------------------- /tests/Unit/Twig/Runtime/RenderPageLinkRuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Twig/Runtime/RenderPageLinkRuntimeTest.php -------------------------------------------------------------------------------- /tests/Unit/Twig/Runtime/ResolveMediaVideoPathRuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Twig/Runtime/ResolveMediaVideoPathRuntimeTest.php -------------------------------------------------------------------------------- /tests/Unit/Twig/Runtime/TemplateExistsExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/tests/Unit/Twig/Runtime/TemplateExistsExtensionTest.php -------------------------------------------------------------------------------- /translations/messages.cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.cs.yml -------------------------------------------------------------------------------- /translations/messages.cs_CZ.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.cs_CZ.yml -------------------------------------------------------------------------------- /translations/messages.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.de.yml -------------------------------------------------------------------------------- /translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.en.yml -------------------------------------------------------------------------------- /translations/messages.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.es.yml -------------------------------------------------------------------------------- /translations/messages.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.fr.yml -------------------------------------------------------------------------------- /translations/messages.hr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.hr.yml -------------------------------------------------------------------------------- /translations/messages.lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.lt.yml -------------------------------------------------------------------------------- /translations/messages.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.nl.yml -------------------------------------------------------------------------------- /translations/messages.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.pl.yml -------------------------------------------------------------------------------- /translations/messages.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.ru.yml -------------------------------------------------------------------------------- /translations/messages.sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.sk.yml -------------------------------------------------------------------------------- /translations/messages.uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/messages.uk.yml -------------------------------------------------------------------------------- /translations/validators.cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.cs.yml -------------------------------------------------------------------------------- /translations/validators.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.de.yml -------------------------------------------------------------------------------- /translations/validators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.en.yml -------------------------------------------------------------------------------- /translations/validators.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.es.yml -------------------------------------------------------------------------------- /translations/validators.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.fr.yml -------------------------------------------------------------------------------- /translations/validators.hr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.hr.yml -------------------------------------------------------------------------------- /translations/validators.lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.lt.yml -------------------------------------------------------------------------------- /translations/validators.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.nl.yml -------------------------------------------------------------------------------- /translations/validators.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.pl.yml -------------------------------------------------------------------------------- /translations/validators.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.ru.yml -------------------------------------------------------------------------------- /translations/validators.sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.sk.yml -------------------------------------------------------------------------------- /translations/validators.uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/CmsPlugin/HEAD/translations/validators.uk.yml --------------------------------------------------------------------------------