├── LICENSE ├── composer.json ├── psalm-baseline.xml └── src ├── Api ├── Command │ ├── AddGiftCardToOrder.php │ ├── AddItemToCart.php │ ├── AssociateConfigurationToChannel.php │ ├── ConfigurationCodeAwareInterface.php │ ├── CreateGiftCardConfiguration.php │ ├── GiftCardCodeAwareInterface.php │ └── RemoveGiftCardFromOrder.php ├── CommandHandler │ ├── AddGiftCardToOrderHandler.php │ ├── AddItemToCartHandler.php │ ├── AssociateConfigurationToChannelHandler.php │ ├── CreateGiftCardConfigurationHandler.php │ └── RemoveGiftCardFromOrderHandler.php ├── Controller │ └── Action │ │ ├── DownloadGiftCardPdfAction.php │ │ ├── GiftCardBalanceAction.php │ │ ├── ResendGiftCardEmailAction.php │ │ └── UploadGiftCardConfigurationImageAction.php ├── DataPersister │ └── GiftCardDataPersister.php ├── DataTransformer │ ├── GiftCardCodeAwareInputCommandDataTransformer.php │ └── GiftCardConfigurationCodeAwareInputCommandDataTransformer.php └── Doctrine │ └── QueryCollectionExtension │ └── GiftCardsByLoggedInUserExtension.php ├── Applicator ├── GiftCardApplicator.php └── GiftCardApplicatorInterface.php ├── Controller └── Action │ ├── AddGiftCardToOrderAction.php │ ├── AddGiftCardToOrderCommand.php │ ├── Admin │ └── GenerateEncodedExamplePdfAction.php │ ├── DownloadGiftCardPdfAction.php │ ├── GiftCardBalanceAction.php │ ├── RemoveGiftCardFromOrderAction.php │ ├── ResendGiftCardEmailAction.php │ ├── SearchGiftCardAction.php │ └── SearchGiftCardCommand.php ├── DependencyInjection ├── Compiler │ ├── AddAdjustmentsToOrderAdjustmentClearerPass.php │ └── CreateServiceAliasesPass.php ├── Configuration.php └── SetonoSyliusGiftCardExtension.php ├── Doctrine └── ORM │ ├── CustomerRepositoryTrait.php │ ├── GiftCardConfigurationRepository.php │ ├── GiftCardRepository.php │ └── OrderRepositoryTrait.php ├── EmailManager ├── GiftCardEmailManager.php └── GiftCardEmailManagerInterface.php ├── EventSubscriber ├── DefaultGiftCardConfigurationSubscriber.php ├── GiftCardDeletionSubscriber.php └── SendEmailWithGiftCardToCustomerSubscriber.php ├── Exception ├── ChannelMismatchException.php ├── ExceptionInterface.php ├── GiftCardNotFoundException.php └── UnexpectedTypeException.php ├── Factory ├── GiftCardConfigurationFactory.php ├── GiftCardConfigurationFactoryInterface.php ├── GiftCardFactory.php └── GiftCardFactoryInterface.php ├── Fixture ├── Factory │ ├── GiftCardConfigurationExampleFactory.php │ └── GiftCardExampleFactory.php ├── GiftCardConfigurationFixture.php └── GiftCardFixture.php ├── Form ├── DataTransformer │ └── GiftCardToCodeDataTransformer.php ├── Extension │ ├── AddToCartTypeExtension.php │ └── ProductTypeExtension.php └── Type │ ├── AddGiftCardToOrderType.php │ ├── AddToCartGiftCardInformationType.php │ ├── CustomerAutocompleteChoiceType.php │ ├── DatePeriodType.php │ ├── GiftCardChannelConfigurationType.php │ ├── GiftCardConfigurationImageType.php │ ├── GiftCardConfigurationType.php │ ├── GiftCardSearchType.php │ ├── GiftCardType.php │ └── Rule │ └── HasNoGiftCardConfigurationType.php ├── Generator ├── GiftCardCodeGenerator.php └── GiftCardCodeGeneratorInterface.php ├── Grid └── FieldTypes │ └── StringFieldType.php ├── Mailer └── Emails.php ├── Menu ├── AccountMenuListener.php └── AdminMenuListener.php ├── Model ├── AdjustmentInterface.php ├── GiftCard.php ├── GiftCardBalance.php ├── GiftCardBalanceCollection.php ├── GiftCardChannelConfiguration.php ├── GiftCardChannelConfigurationInterface.php ├── GiftCardConfiguration.php ├── GiftCardConfigurationImage.php ├── GiftCardConfigurationImageInterface.php ├── GiftCardConfigurationInterface.php ├── GiftCardInterface.php ├── OrderInterface.php ├── OrderItemTrait.php ├── OrderItemUnitInterface.php ├── OrderItemUnitTrait.php ├── OrderTrait.php ├── ProductInterface.php └── ProductTrait.php ├── Modifier ├── OrderGiftCardAmountModifier.php └── OrderGiftCardAmountModifierInterface.php ├── Operator ├── OrderGiftCardOperator.php └── OrderGiftCardOperatorInterface.php ├── Order ├── AddToCartCommand.php ├── AddToCartCommandInterface.php ├── Factory │ ├── AddToCartCommandFactory.php │ ├── GiftCardInformationFactory.php │ └── GiftCardInformationFactoryInterface.php ├── GiftCardInformation.php └── GiftCardInformationInterface.php ├── OrderProcessor └── OrderGiftCardProcessor.php ├── Promotion └── Checker │ └── Rule │ └── HasNoGiftCardRuleChecker.php ├── Provider ├── DatePeriodUnitProvider.php ├── DatePeriodUnitProviderInterface.php ├── DefaultGiftCardTemplateContentProvider.php ├── DefaultGiftCardTemplateContentProviderInterface.php ├── GiftCardConfigurationProvider.php ├── GiftCardConfigurationProviderInterface.php ├── OrderEligibleTotalProvider.php ├── OrderEligibleTotalProviderInterface.php ├── PdfRenderingOptionsProvider.php └── PdfRenderingOptionsProviderInterface.php ├── Renderer ├── PdfRenderer.php ├── PdfRendererInterface.php └── PdfResponse.php ├── Repository ├── CustomerRepositoryInterface.php ├── GiftCardConfigurationRepositoryInterface.php ├── GiftCardRepositoryInterface.php └── OrderRepositoryInterface.php ├── Resolver ├── CustomerChannelResolver.php ├── CustomerChannelResolverInterface.php ├── LocaleResolver.php ├── LocaleResolverInterface.php ├── RedirectUrlResolver.php └── RedirectUrlResolverInterface.php ├── Resources ├── config │ ├── api_resources │ │ ├── GiftCard.xml │ │ ├── GiftCardConfiguration.xml │ │ ├── GiftCardConfigurationImage.xml │ │ └── Order.xml │ ├── app │ │ ├── config.yaml │ │ └── fixtures.yaml │ ├── doctrine │ │ └── model │ │ │ ├── GiftCard.orm.xml │ │ │ ├── GiftCardChannelConfiguration.orm.xml │ │ │ ├── GiftCardConfiguration.orm.xml │ │ │ └── GiftCardConfigurationImage.orm.xml │ ├── grids.yaml │ ├── grids │ │ ├── setono_sylius_gift_card_admin_gift_card.yaml │ │ ├── setono_sylius_gift_card_admin_gift_card_configuration.yaml │ │ ├── setono_sylius_gift_card_admin_gift_card_order.yaml │ │ └── setono_sylius_gift_card_shop_gift_card.yaml │ ├── routes.yaml │ ├── routes │ │ ├── admin.yaml │ │ ├── admin_ajax.yaml │ │ ├── admin_api.yaml │ │ └── shop.yaml │ ├── routes_no_locale.yaml │ ├── serialization │ │ ├── Channel.xml │ │ ├── Command │ │ │ ├── AddGiftCardToOrder.xml │ │ │ ├── AddItemToCartCommand.xml │ │ │ ├── AssociateConfigurationToChannel.xml │ │ │ ├── CreateGiftCardConfiguration.xml │ │ │ └── RemoveGiftCardFromOrder.xml │ │ ├── Customer.xml │ │ ├── GiftCard.xml │ │ ├── GiftCardBalance.xml │ │ ├── GiftCardChannelConfiguration.xml │ │ ├── GiftCardConfiguration.xml │ │ ├── GiftCardConfigurationImage.xml │ │ └── Product.xml │ ├── serializer │ │ └── Model.GiftCard.yml │ ├── services.xml │ ├── services │ │ ├── api.xml │ │ ├── api │ │ │ ├── command_handler.xml │ │ │ ├── controller.xml │ │ │ ├── data_persister.xml │ │ │ ├── data_transformer.xml │ │ │ └── doctrine.xml │ │ ├── applicator.xml │ │ ├── controller.xml │ │ ├── event_listener.xml │ │ ├── factory.xml │ │ ├── field_types.xml │ │ ├── fixture.xml │ │ ├── form.xml │ │ ├── generator.xml │ │ ├── menu.xml │ │ ├── misc.xml │ │ ├── modifier.xml │ │ ├── order.xml │ │ ├── order_processor.xml │ │ ├── promotion_rule.xml │ │ ├── provider.xml │ │ ├── renderer.xml │ │ ├── resolver.xml │ │ ├── serializer.xml │ │ ├── twig.xml │ │ ├── validator.xml │ │ └── voter.xml │ ├── state_machine │ │ ├── sylius_order.yaml │ │ ├── sylius_order_checkout.yaml │ │ └── sylius_order_payment.yaml │ ├── sylius_ui.yaml │ └── validation │ │ ├── AddGiftCardToOrderCommand.xml │ │ ├── AddToCardCommand.xml │ │ ├── AddToCardGiftCardInformation.xml │ │ ├── CreateGiftCardConfiguration.xml │ │ ├── GiftCard.xml │ │ ├── GiftCardChannelConfiguration.xml │ │ ├── GiftCardConfiguration.xml │ │ ├── GiftCardConfigurationImage.xml │ │ └── GiftCardSearchCommand.xml ├── fixtures │ └── default_background.png ├── public │ ├── setono-logo.png │ ├── setono-sylius-gift-card-add-gift-card-to-order.js │ ├── setono-sylius-gift-card-live-pdf-rendering.js │ └── setono-sylius-gift-card-send-notification-email.js ├── translations │ ├── flashes.da.yml │ ├── flashes.en.yml │ ├── flashes.fr.yml │ ├── messages.da.yml │ ├── messages.en.yml │ ├── messages.fr.yml │ ├── validators.da.yml │ ├── validators.en.yml │ └── validators.fr.yml └── views │ ├── Admin │ ├── GiftCard │ │ ├── Create │ │ │ └── _javascripts.html.twig │ │ ├── Grid │ │ │ ├── Action │ │ │ │ ├── create.html.twig │ │ │ │ ├── delete_conditional.html.twig │ │ │ │ ├── gift_card_balance.html.twig │ │ │ │ ├── list_conditional.html.twig │ │ │ │ └── resend_email.html.twig │ │ │ └── Field │ │ │ │ ├── amount.html.twig │ │ │ │ ├── channel_configurations.html.twig │ │ │ │ ├── customer.html.twig │ │ │ │ └── item_units_order.html.twig │ │ ├── _form.html.twig │ │ └── create.html.twig │ ├── GiftCardConfiguration │ │ ├── Create │ │ │ └── _breadcrumb.html.twig │ │ ├── Index │ │ │ └── _breadcrumb.html.twig │ │ ├── Update │ │ │ ├── _breadcrumb.html.twig │ │ │ └── _javascripts.html.twig │ │ ├── _form.html.twig │ │ └── _javascripts.html.twig │ ├── Order │ │ └── Grid │ │ │ └── Field │ │ │ └── coveredByGiftCards.html.twig │ └── giftCardBalance.html.twig │ ├── Cart │ └── _giftCard.html.twig │ ├── Email │ ├── giftCardToCustomer.html.twig │ └── giftCardsFromOrder.html.twig │ ├── Shop │ ├── Account │ │ └── GiftCard │ │ │ ├── Grid │ │ │ └── Field │ │ │ │ ├── amount.html.twig │ │ │ │ └── initial_amount.html.twig │ │ │ ├── Index │ │ │ ├── _breadcrumb.html.twig │ │ │ └── _header.html.twig │ │ │ └── index.html.twig │ ├── GiftCard │ │ └── search.html.twig │ ├── Product │ │ └── Show │ │ │ └── _addToCartGiftCardInformation.html.twig │ └── addGiftCardToOrder.html.twig │ └── templates │ └── bundles │ ├── SyliusAdminBundle │ ├── Form │ │ └── imagesTheme.html.twig │ └── Order │ │ └── Show │ │ └── Summary │ │ └── _totals.html.twig │ └── SyliusShopBundle │ ├── Cart │ ├── Summary │ │ └── _totals.html.twig │ └── summary.html.twig │ ├── Checkout │ └── _summary.html.twig │ └── Common │ └── Order │ └── Table │ └── _totals.html.twig ├── Security └── GiftCardVoter.php ├── Serializer └── Normalizer │ ├── GiftCardConfigurationNormalizer.php │ └── GiftCardNormalizer.php ├── SetonoSyliusGiftCardPlugin.php ├── Twig └── Extension │ ├── PdfExtension.php │ └── PdfRuntime.php └── Validator └── Constraints ├── DatePeriod.php ├── DatePeriodValidator.php ├── DefaultGiftCardConfigurationMustExist.php ├── DefaultGiftCardConfigurationMustExistValidator.php ├── GiftCardIsNotExpired.php ├── GiftCardIsNotExpiredValidator.php ├── HasBackgroundImage.php ├── HasBackgroundImageValidator.php └── Pdf ├── ValidOrientation.php ├── ValidOrientationValidator.php ├── ValidPageSize.php └── ValidPageSizeValidator.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/composer.json -------------------------------------------------------------------------------- /psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/psalm-baseline.xml -------------------------------------------------------------------------------- /src/Api/Command/AddGiftCardToOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Command/AddGiftCardToOrder.php -------------------------------------------------------------------------------- /src/Api/Command/AddItemToCart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Command/AddItemToCart.php -------------------------------------------------------------------------------- /src/Api/Command/AssociateConfigurationToChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Command/AssociateConfigurationToChannel.php -------------------------------------------------------------------------------- /src/Api/Command/ConfigurationCodeAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Command/ConfigurationCodeAwareInterface.php -------------------------------------------------------------------------------- /src/Api/Command/CreateGiftCardConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Command/CreateGiftCardConfiguration.php -------------------------------------------------------------------------------- /src/Api/Command/GiftCardCodeAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Command/GiftCardCodeAwareInterface.php -------------------------------------------------------------------------------- /src/Api/Command/RemoveGiftCardFromOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Command/RemoveGiftCardFromOrder.php -------------------------------------------------------------------------------- /src/Api/CommandHandler/AddGiftCardToOrderHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/CommandHandler/AddGiftCardToOrderHandler.php -------------------------------------------------------------------------------- /src/Api/CommandHandler/AddItemToCartHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/CommandHandler/AddItemToCartHandler.php -------------------------------------------------------------------------------- /src/Api/CommandHandler/AssociateConfigurationToChannelHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/CommandHandler/AssociateConfigurationToChannelHandler.php -------------------------------------------------------------------------------- /src/Api/CommandHandler/CreateGiftCardConfigurationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/CommandHandler/CreateGiftCardConfigurationHandler.php -------------------------------------------------------------------------------- /src/Api/CommandHandler/RemoveGiftCardFromOrderHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/CommandHandler/RemoveGiftCardFromOrderHandler.php -------------------------------------------------------------------------------- /src/Api/Controller/Action/DownloadGiftCardPdfAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Controller/Action/DownloadGiftCardPdfAction.php -------------------------------------------------------------------------------- /src/Api/Controller/Action/GiftCardBalanceAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Controller/Action/GiftCardBalanceAction.php -------------------------------------------------------------------------------- /src/Api/Controller/Action/ResendGiftCardEmailAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Controller/Action/ResendGiftCardEmailAction.php -------------------------------------------------------------------------------- /src/Api/Controller/Action/UploadGiftCardConfigurationImageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Controller/Action/UploadGiftCardConfigurationImageAction.php -------------------------------------------------------------------------------- /src/Api/DataPersister/GiftCardDataPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/DataPersister/GiftCardDataPersister.php -------------------------------------------------------------------------------- /src/Api/DataTransformer/GiftCardCodeAwareInputCommandDataTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/DataTransformer/GiftCardCodeAwareInputCommandDataTransformer.php -------------------------------------------------------------------------------- /src/Api/DataTransformer/GiftCardConfigurationCodeAwareInputCommandDataTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/DataTransformer/GiftCardConfigurationCodeAwareInputCommandDataTransformer.php -------------------------------------------------------------------------------- /src/Api/Doctrine/QueryCollectionExtension/GiftCardsByLoggedInUserExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Api/Doctrine/QueryCollectionExtension/GiftCardsByLoggedInUserExtension.php -------------------------------------------------------------------------------- /src/Applicator/GiftCardApplicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Applicator/GiftCardApplicator.php -------------------------------------------------------------------------------- /src/Applicator/GiftCardApplicatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Applicator/GiftCardApplicatorInterface.php -------------------------------------------------------------------------------- /src/Controller/Action/AddGiftCardToOrderAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/AddGiftCardToOrderAction.php -------------------------------------------------------------------------------- /src/Controller/Action/AddGiftCardToOrderCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/AddGiftCardToOrderCommand.php -------------------------------------------------------------------------------- /src/Controller/Action/Admin/GenerateEncodedExamplePdfAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/Admin/GenerateEncodedExamplePdfAction.php -------------------------------------------------------------------------------- /src/Controller/Action/DownloadGiftCardPdfAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/DownloadGiftCardPdfAction.php -------------------------------------------------------------------------------- /src/Controller/Action/GiftCardBalanceAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/GiftCardBalanceAction.php -------------------------------------------------------------------------------- /src/Controller/Action/RemoveGiftCardFromOrderAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/RemoveGiftCardFromOrderAction.php -------------------------------------------------------------------------------- /src/Controller/Action/ResendGiftCardEmailAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/ResendGiftCardEmailAction.php -------------------------------------------------------------------------------- /src/Controller/Action/SearchGiftCardAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/SearchGiftCardAction.php -------------------------------------------------------------------------------- /src/Controller/Action/SearchGiftCardCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Controller/Action/SearchGiftCardCommand.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/AddAdjustmentsToOrderAdjustmentClearerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/DependencyInjection/Compiler/AddAdjustmentsToOrderAdjustmentClearerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/CreateServiceAliasesPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/DependencyInjection/Compiler/CreateServiceAliasesPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/SetonoSyliusGiftCardExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/DependencyInjection/SetonoSyliusGiftCardExtension.php -------------------------------------------------------------------------------- /src/Doctrine/ORM/CustomerRepositoryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Doctrine/ORM/CustomerRepositoryTrait.php -------------------------------------------------------------------------------- /src/Doctrine/ORM/GiftCardConfigurationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Doctrine/ORM/GiftCardConfigurationRepository.php -------------------------------------------------------------------------------- /src/Doctrine/ORM/GiftCardRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Doctrine/ORM/GiftCardRepository.php -------------------------------------------------------------------------------- /src/Doctrine/ORM/OrderRepositoryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Doctrine/ORM/OrderRepositoryTrait.php -------------------------------------------------------------------------------- /src/EmailManager/GiftCardEmailManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/EmailManager/GiftCardEmailManager.php -------------------------------------------------------------------------------- /src/EmailManager/GiftCardEmailManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/EmailManager/GiftCardEmailManagerInterface.php -------------------------------------------------------------------------------- /src/EventSubscriber/DefaultGiftCardConfigurationSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/EventSubscriber/DefaultGiftCardConfigurationSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/GiftCardDeletionSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/EventSubscriber/GiftCardDeletionSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/SendEmailWithGiftCardToCustomerSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/EventSubscriber/SendEmailWithGiftCardToCustomerSubscriber.php -------------------------------------------------------------------------------- /src/Exception/ChannelMismatchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Exception/ChannelMismatchException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/GiftCardNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Exception/GiftCardNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/UnexpectedTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Exception/UnexpectedTypeException.php -------------------------------------------------------------------------------- /src/Factory/GiftCardConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Factory/GiftCardConfigurationFactory.php -------------------------------------------------------------------------------- /src/Factory/GiftCardConfigurationFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Factory/GiftCardConfigurationFactoryInterface.php -------------------------------------------------------------------------------- /src/Factory/GiftCardFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Factory/GiftCardFactory.php -------------------------------------------------------------------------------- /src/Factory/GiftCardFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Factory/GiftCardFactoryInterface.php -------------------------------------------------------------------------------- /src/Fixture/Factory/GiftCardConfigurationExampleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Fixture/Factory/GiftCardConfigurationExampleFactory.php -------------------------------------------------------------------------------- /src/Fixture/Factory/GiftCardExampleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Fixture/Factory/GiftCardExampleFactory.php -------------------------------------------------------------------------------- /src/Fixture/GiftCardConfigurationFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Fixture/GiftCardConfigurationFixture.php -------------------------------------------------------------------------------- /src/Fixture/GiftCardFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Fixture/GiftCardFixture.php -------------------------------------------------------------------------------- /src/Form/DataTransformer/GiftCardToCodeDataTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/DataTransformer/GiftCardToCodeDataTransformer.php -------------------------------------------------------------------------------- /src/Form/Extension/AddToCartTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Extension/AddToCartTypeExtension.php -------------------------------------------------------------------------------- /src/Form/Extension/ProductTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Extension/ProductTypeExtension.php -------------------------------------------------------------------------------- /src/Form/Type/AddGiftCardToOrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/AddGiftCardToOrderType.php -------------------------------------------------------------------------------- /src/Form/Type/AddToCartGiftCardInformationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/AddToCartGiftCardInformationType.php -------------------------------------------------------------------------------- /src/Form/Type/CustomerAutocompleteChoiceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/CustomerAutocompleteChoiceType.php -------------------------------------------------------------------------------- /src/Form/Type/DatePeriodType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/DatePeriodType.php -------------------------------------------------------------------------------- /src/Form/Type/GiftCardChannelConfigurationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/GiftCardChannelConfigurationType.php -------------------------------------------------------------------------------- /src/Form/Type/GiftCardConfigurationImageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/GiftCardConfigurationImageType.php -------------------------------------------------------------------------------- /src/Form/Type/GiftCardConfigurationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/GiftCardConfigurationType.php -------------------------------------------------------------------------------- /src/Form/Type/GiftCardSearchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/GiftCardSearchType.php -------------------------------------------------------------------------------- /src/Form/Type/GiftCardType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/GiftCardType.php -------------------------------------------------------------------------------- /src/Form/Type/Rule/HasNoGiftCardConfigurationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Form/Type/Rule/HasNoGiftCardConfigurationType.php -------------------------------------------------------------------------------- /src/Generator/GiftCardCodeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Generator/GiftCardCodeGenerator.php -------------------------------------------------------------------------------- /src/Generator/GiftCardCodeGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Generator/GiftCardCodeGeneratorInterface.php -------------------------------------------------------------------------------- /src/Grid/FieldTypes/StringFieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Grid/FieldTypes/StringFieldType.php -------------------------------------------------------------------------------- /src/Mailer/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Mailer/Emails.php -------------------------------------------------------------------------------- /src/Menu/AccountMenuListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Menu/AccountMenuListener.php -------------------------------------------------------------------------------- /src/Menu/AdminMenuListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Menu/AdminMenuListener.php -------------------------------------------------------------------------------- /src/Model/AdjustmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/AdjustmentInterface.php -------------------------------------------------------------------------------- /src/Model/GiftCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCard.php -------------------------------------------------------------------------------- /src/Model/GiftCardBalance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardBalance.php -------------------------------------------------------------------------------- /src/Model/GiftCardBalanceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardBalanceCollection.php -------------------------------------------------------------------------------- /src/Model/GiftCardChannelConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardChannelConfiguration.php -------------------------------------------------------------------------------- /src/Model/GiftCardChannelConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardChannelConfigurationInterface.php -------------------------------------------------------------------------------- /src/Model/GiftCardConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardConfiguration.php -------------------------------------------------------------------------------- /src/Model/GiftCardConfigurationImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardConfigurationImage.php -------------------------------------------------------------------------------- /src/Model/GiftCardConfigurationImageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardConfigurationImageInterface.php -------------------------------------------------------------------------------- /src/Model/GiftCardConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardConfigurationInterface.php -------------------------------------------------------------------------------- /src/Model/GiftCardInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/GiftCardInterface.php -------------------------------------------------------------------------------- /src/Model/OrderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/OrderInterface.php -------------------------------------------------------------------------------- /src/Model/OrderItemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/OrderItemTrait.php -------------------------------------------------------------------------------- /src/Model/OrderItemUnitInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/OrderItemUnitInterface.php -------------------------------------------------------------------------------- /src/Model/OrderItemUnitTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/OrderItemUnitTrait.php -------------------------------------------------------------------------------- /src/Model/OrderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/OrderTrait.php -------------------------------------------------------------------------------- /src/Model/ProductInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/ProductInterface.php -------------------------------------------------------------------------------- /src/Model/ProductTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Model/ProductTrait.php -------------------------------------------------------------------------------- /src/Modifier/OrderGiftCardAmountModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Modifier/OrderGiftCardAmountModifier.php -------------------------------------------------------------------------------- /src/Modifier/OrderGiftCardAmountModifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Modifier/OrderGiftCardAmountModifierInterface.php -------------------------------------------------------------------------------- /src/Operator/OrderGiftCardOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Operator/OrderGiftCardOperator.php -------------------------------------------------------------------------------- /src/Operator/OrderGiftCardOperatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Operator/OrderGiftCardOperatorInterface.php -------------------------------------------------------------------------------- /src/Order/AddToCartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Order/AddToCartCommand.php -------------------------------------------------------------------------------- /src/Order/AddToCartCommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Order/AddToCartCommandInterface.php -------------------------------------------------------------------------------- /src/Order/Factory/AddToCartCommandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Order/Factory/AddToCartCommandFactory.php -------------------------------------------------------------------------------- /src/Order/Factory/GiftCardInformationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Order/Factory/GiftCardInformationFactory.php -------------------------------------------------------------------------------- /src/Order/Factory/GiftCardInformationFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Order/Factory/GiftCardInformationFactoryInterface.php -------------------------------------------------------------------------------- /src/Order/GiftCardInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Order/GiftCardInformation.php -------------------------------------------------------------------------------- /src/Order/GiftCardInformationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Order/GiftCardInformationInterface.php -------------------------------------------------------------------------------- /src/OrderProcessor/OrderGiftCardProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/OrderProcessor/OrderGiftCardProcessor.php -------------------------------------------------------------------------------- /src/Promotion/Checker/Rule/HasNoGiftCardRuleChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Promotion/Checker/Rule/HasNoGiftCardRuleChecker.php -------------------------------------------------------------------------------- /src/Provider/DatePeriodUnitProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/DatePeriodUnitProvider.php -------------------------------------------------------------------------------- /src/Provider/DatePeriodUnitProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/DatePeriodUnitProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/DefaultGiftCardTemplateContentProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/DefaultGiftCardTemplateContentProvider.php -------------------------------------------------------------------------------- /src/Provider/DefaultGiftCardTemplateContentProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/DefaultGiftCardTemplateContentProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/GiftCardConfigurationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/GiftCardConfigurationProvider.php -------------------------------------------------------------------------------- /src/Provider/GiftCardConfigurationProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/GiftCardConfigurationProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/OrderEligibleTotalProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/OrderEligibleTotalProvider.php -------------------------------------------------------------------------------- /src/Provider/OrderEligibleTotalProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/OrderEligibleTotalProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/PdfRenderingOptionsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/PdfRenderingOptionsProvider.php -------------------------------------------------------------------------------- /src/Provider/PdfRenderingOptionsProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Provider/PdfRenderingOptionsProviderInterface.php -------------------------------------------------------------------------------- /src/Renderer/PdfRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Renderer/PdfRenderer.php -------------------------------------------------------------------------------- /src/Renderer/PdfRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Renderer/PdfRendererInterface.php -------------------------------------------------------------------------------- /src/Renderer/PdfResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Renderer/PdfResponse.php -------------------------------------------------------------------------------- /src/Repository/CustomerRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Repository/CustomerRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/GiftCardConfigurationRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Repository/GiftCardConfigurationRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/GiftCardRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Repository/GiftCardRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/OrderRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Repository/OrderRepositoryInterface.php -------------------------------------------------------------------------------- /src/Resolver/CustomerChannelResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resolver/CustomerChannelResolver.php -------------------------------------------------------------------------------- /src/Resolver/CustomerChannelResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resolver/CustomerChannelResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/LocaleResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resolver/LocaleResolver.php -------------------------------------------------------------------------------- /src/Resolver/LocaleResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resolver/LocaleResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/RedirectUrlResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resolver/RedirectUrlResolver.php -------------------------------------------------------------------------------- /src/Resolver/RedirectUrlResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resolver/RedirectUrlResolverInterface.php -------------------------------------------------------------------------------- /src/Resources/config/api_resources/GiftCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/api_resources/GiftCard.xml -------------------------------------------------------------------------------- /src/Resources/config/api_resources/GiftCardConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/api_resources/GiftCardConfiguration.xml -------------------------------------------------------------------------------- /src/Resources/config/api_resources/GiftCardConfigurationImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/api_resources/GiftCardConfigurationImage.xml -------------------------------------------------------------------------------- /src/Resources/config/api_resources/Order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/api_resources/Order.xml -------------------------------------------------------------------------------- /src/Resources/config/app/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/app/config.yaml -------------------------------------------------------------------------------- /src/Resources/config/app/fixtures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/app/fixtures.yaml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/model/GiftCard.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/doctrine/model/GiftCard.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/model/GiftCardChannelConfiguration.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/doctrine/model/GiftCardChannelConfiguration.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/model/GiftCardConfiguration.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/doctrine/model/GiftCardConfiguration.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/model/GiftCardConfigurationImage.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/doctrine/model/GiftCardConfigurationImage.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/grids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/grids.yaml -------------------------------------------------------------------------------- /src/Resources/config/grids/setono_sylius_gift_card_admin_gift_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/grids/setono_sylius_gift_card_admin_gift_card.yaml -------------------------------------------------------------------------------- /src/Resources/config/grids/setono_sylius_gift_card_admin_gift_card_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/grids/setono_sylius_gift_card_admin_gift_card_configuration.yaml -------------------------------------------------------------------------------- /src/Resources/config/grids/setono_sylius_gift_card_admin_gift_card_order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/grids/setono_sylius_gift_card_admin_gift_card_order.yaml -------------------------------------------------------------------------------- /src/Resources/config/grids/setono_sylius_gift_card_shop_gift_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/grids/setono_sylius_gift_card_shop_gift_card.yaml -------------------------------------------------------------------------------- /src/Resources/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/routes.yaml -------------------------------------------------------------------------------- /src/Resources/config/routes/admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/routes/admin.yaml -------------------------------------------------------------------------------- /src/Resources/config/routes/admin_ajax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/routes/admin_ajax.yaml -------------------------------------------------------------------------------- /src/Resources/config/routes/admin_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/routes/admin_api.yaml -------------------------------------------------------------------------------- /src/Resources/config/routes/shop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/routes/shop.yaml -------------------------------------------------------------------------------- /src/Resources/config/routes_no_locale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/routes_no_locale.yaml -------------------------------------------------------------------------------- /src/Resources/config/serialization/Channel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/Channel.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/Command/AddGiftCardToOrder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/Command/AddGiftCardToOrder.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/Command/AddItemToCartCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/Command/AddItemToCartCommand.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/Command/AssociateConfigurationToChannel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/Command/AssociateConfigurationToChannel.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/Command/CreateGiftCardConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/Command/CreateGiftCardConfiguration.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/Command/RemoveGiftCardFromOrder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/Command/RemoveGiftCardFromOrder.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/Customer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/Customer.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/GiftCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/GiftCard.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/GiftCardBalance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/GiftCardBalance.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/GiftCardChannelConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/GiftCardChannelConfiguration.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/GiftCardConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/GiftCardConfiguration.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/GiftCardConfigurationImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/GiftCardConfigurationImage.xml -------------------------------------------------------------------------------- /src/Resources/config/serialization/Product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serialization/Product.xml -------------------------------------------------------------------------------- /src/Resources/config/serializer/Model.GiftCard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/serializer/Model.GiftCard.yml -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Resources/config/services/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/api.xml -------------------------------------------------------------------------------- /src/Resources/config/services/api/command_handler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/api/command_handler.xml -------------------------------------------------------------------------------- /src/Resources/config/services/api/controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/api/controller.xml -------------------------------------------------------------------------------- /src/Resources/config/services/api/data_persister.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/api/data_persister.xml -------------------------------------------------------------------------------- /src/Resources/config/services/api/data_transformer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/api/data_transformer.xml -------------------------------------------------------------------------------- /src/Resources/config/services/api/doctrine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/api/doctrine.xml -------------------------------------------------------------------------------- /src/Resources/config/services/applicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/applicator.xml -------------------------------------------------------------------------------- /src/Resources/config/services/controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/controller.xml -------------------------------------------------------------------------------- /src/Resources/config/services/event_listener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/event_listener.xml -------------------------------------------------------------------------------- /src/Resources/config/services/factory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/factory.xml -------------------------------------------------------------------------------- /src/Resources/config/services/field_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/field_types.xml -------------------------------------------------------------------------------- /src/Resources/config/services/fixture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/fixture.xml -------------------------------------------------------------------------------- /src/Resources/config/services/form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/form.xml -------------------------------------------------------------------------------- /src/Resources/config/services/generator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/generator.xml -------------------------------------------------------------------------------- /src/Resources/config/services/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/menu.xml -------------------------------------------------------------------------------- /src/Resources/config/services/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/misc.xml -------------------------------------------------------------------------------- /src/Resources/config/services/modifier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/modifier.xml -------------------------------------------------------------------------------- /src/Resources/config/services/order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/order.xml -------------------------------------------------------------------------------- /src/Resources/config/services/order_processor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/order_processor.xml -------------------------------------------------------------------------------- /src/Resources/config/services/promotion_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/promotion_rule.xml -------------------------------------------------------------------------------- /src/Resources/config/services/provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/provider.xml -------------------------------------------------------------------------------- /src/Resources/config/services/renderer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/renderer.xml -------------------------------------------------------------------------------- /src/Resources/config/services/resolver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/resolver.xml -------------------------------------------------------------------------------- /src/Resources/config/services/serializer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/serializer.xml -------------------------------------------------------------------------------- /src/Resources/config/services/twig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/twig.xml -------------------------------------------------------------------------------- /src/Resources/config/services/validator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/validator.xml -------------------------------------------------------------------------------- /src/Resources/config/services/voter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/services/voter.xml -------------------------------------------------------------------------------- /src/Resources/config/state_machine/sylius_order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/state_machine/sylius_order.yaml -------------------------------------------------------------------------------- /src/Resources/config/state_machine/sylius_order_checkout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/state_machine/sylius_order_checkout.yaml -------------------------------------------------------------------------------- /src/Resources/config/state_machine/sylius_order_payment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/state_machine/sylius_order_payment.yaml -------------------------------------------------------------------------------- /src/Resources/config/sylius_ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/sylius_ui.yaml -------------------------------------------------------------------------------- /src/Resources/config/validation/AddGiftCardToOrderCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/AddGiftCardToOrderCommand.xml -------------------------------------------------------------------------------- /src/Resources/config/validation/AddToCardCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/AddToCardCommand.xml -------------------------------------------------------------------------------- /src/Resources/config/validation/AddToCardGiftCardInformation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/AddToCardGiftCardInformation.xml -------------------------------------------------------------------------------- /src/Resources/config/validation/CreateGiftCardConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/CreateGiftCardConfiguration.xml -------------------------------------------------------------------------------- /src/Resources/config/validation/GiftCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/GiftCard.xml -------------------------------------------------------------------------------- /src/Resources/config/validation/GiftCardChannelConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/GiftCardChannelConfiguration.xml -------------------------------------------------------------------------------- /src/Resources/config/validation/GiftCardConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/GiftCardConfiguration.xml -------------------------------------------------------------------------------- /src/Resources/config/validation/GiftCardConfigurationImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/GiftCardConfigurationImage.xml -------------------------------------------------------------------------------- /src/Resources/config/validation/GiftCardSearchCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/config/validation/GiftCardSearchCommand.xml -------------------------------------------------------------------------------- /src/Resources/fixtures/default_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/fixtures/default_background.png -------------------------------------------------------------------------------- /src/Resources/public/setono-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/public/setono-logo.png -------------------------------------------------------------------------------- /src/Resources/public/setono-sylius-gift-card-add-gift-card-to-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/public/setono-sylius-gift-card-add-gift-card-to-order.js -------------------------------------------------------------------------------- /src/Resources/public/setono-sylius-gift-card-live-pdf-rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/public/setono-sylius-gift-card-live-pdf-rendering.js -------------------------------------------------------------------------------- /src/Resources/public/setono-sylius-gift-card-send-notification-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/public/setono-sylius-gift-card-send-notification-email.js -------------------------------------------------------------------------------- /src/Resources/translations/flashes.da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/flashes.da.yml -------------------------------------------------------------------------------- /src/Resources/translations/flashes.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/flashes.en.yml -------------------------------------------------------------------------------- /src/Resources/translations/flashes.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/flashes.fr.yml -------------------------------------------------------------------------------- /src/Resources/translations/messages.da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/messages.da.yml -------------------------------------------------------------------------------- /src/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Resources/translations/messages.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/messages.fr.yml -------------------------------------------------------------------------------- /src/Resources/translations/validators.da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/validators.da.yml -------------------------------------------------------------------------------- /src/Resources/translations/validators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/validators.en.yml -------------------------------------------------------------------------------- /src/Resources/translations/validators.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/translations/validators.fr.yml -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Create/_javascripts.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Create/_javascripts.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Action/create.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Action/create.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Action/delete_conditional.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Action/delete_conditional.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Action/gift_card_balance.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Action/gift_card_balance.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Action/list_conditional.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Action/list_conditional.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Action/resend_email.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Action/resend_email.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Field/amount.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Field/amount.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Field/channel_configurations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Field/channel_configurations.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Field/customer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Field/customer.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/Grid/Field/item_units_order.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/Grid/Field/item_units_order.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/_form.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCard/create.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCard/create.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCardConfiguration/Create/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCardConfiguration/Create/_breadcrumb.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCardConfiguration/Index/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCardConfiguration/Index/_breadcrumb.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCardConfiguration/Update/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCardConfiguration/Update/_breadcrumb.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCardConfiguration/Update/_javascripts.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCardConfiguration/Update/_javascripts.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCardConfiguration/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCardConfiguration/_form.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/GiftCardConfiguration/_javascripts.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/GiftCardConfiguration/_javascripts.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/Order/Grid/Field/coveredByGiftCards.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/Order/Grid/Field/coveredByGiftCards.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/giftCardBalance.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Admin/giftCardBalance.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Cart/_giftCard.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Cart/_giftCard.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Email/giftCardToCustomer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Email/giftCardToCustomer.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Email/giftCardsFromOrder.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Email/giftCardsFromOrder.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Shop/Account/GiftCard/Grid/Field/amount.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Shop/Account/GiftCard/Grid/Field/amount.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Shop/Account/GiftCard/Grid/Field/initial_amount.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Shop/Account/GiftCard/Grid/Field/initial_amount.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Shop/Account/GiftCard/Index/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Shop/Account/GiftCard/Index/_breadcrumb.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Shop/Account/GiftCard/Index/_header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Shop/Account/GiftCard/Index/_header.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Shop/Account/GiftCard/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Shop/Account/GiftCard/index.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Shop/GiftCard/search.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Shop/GiftCard/search.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Shop/Product/Show/_addToCartGiftCardInformation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Shop/Product/Show/_addToCartGiftCardInformation.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Shop/addGiftCardToOrder.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/Shop/addGiftCardToOrder.html.twig -------------------------------------------------------------------------------- /src/Resources/views/templates/bundles/SyliusAdminBundle/Form/imagesTheme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/templates/bundles/SyliusAdminBundle/Form/imagesTheme.html.twig -------------------------------------------------------------------------------- /src/Resources/views/templates/bundles/SyliusAdminBundle/Order/Show/Summary/_totals.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/templates/bundles/SyliusAdminBundle/Order/Show/Summary/_totals.html.twig -------------------------------------------------------------------------------- /src/Resources/views/templates/bundles/SyliusShopBundle/Cart/Summary/_totals.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/templates/bundles/SyliusShopBundle/Cart/Summary/_totals.html.twig -------------------------------------------------------------------------------- /src/Resources/views/templates/bundles/SyliusShopBundle/Cart/summary.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/templates/bundles/SyliusShopBundle/Cart/summary.html.twig -------------------------------------------------------------------------------- /src/Resources/views/templates/bundles/SyliusShopBundle/Checkout/_summary.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/templates/bundles/SyliusShopBundle/Checkout/_summary.html.twig -------------------------------------------------------------------------------- /src/Resources/views/templates/bundles/SyliusShopBundle/Common/Order/Table/_totals.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Resources/views/templates/bundles/SyliusShopBundle/Common/Order/Table/_totals.html.twig -------------------------------------------------------------------------------- /src/Security/GiftCardVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Security/GiftCardVoter.php -------------------------------------------------------------------------------- /src/Serializer/Normalizer/GiftCardConfigurationNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Serializer/Normalizer/GiftCardConfigurationNormalizer.php -------------------------------------------------------------------------------- /src/Serializer/Normalizer/GiftCardNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Serializer/Normalizer/GiftCardNormalizer.php -------------------------------------------------------------------------------- /src/SetonoSyliusGiftCardPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/SetonoSyliusGiftCardPlugin.php -------------------------------------------------------------------------------- /src/Twig/Extension/PdfExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Twig/Extension/PdfExtension.php -------------------------------------------------------------------------------- /src/Twig/Extension/PdfRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Twig/Extension/PdfRuntime.php -------------------------------------------------------------------------------- /src/Validator/Constraints/DatePeriod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/DatePeriod.php -------------------------------------------------------------------------------- /src/Validator/Constraints/DatePeriodValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/DatePeriodValidator.php -------------------------------------------------------------------------------- /src/Validator/Constraints/DefaultGiftCardConfigurationMustExist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/DefaultGiftCardConfigurationMustExist.php -------------------------------------------------------------------------------- /src/Validator/Constraints/DefaultGiftCardConfigurationMustExistValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/DefaultGiftCardConfigurationMustExistValidator.php -------------------------------------------------------------------------------- /src/Validator/Constraints/GiftCardIsNotExpired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/GiftCardIsNotExpired.php -------------------------------------------------------------------------------- /src/Validator/Constraints/GiftCardIsNotExpiredValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/GiftCardIsNotExpiredValidator.php -------------------------------------------------------------------------------- /src/Validator/Constraints/HasBackgroundImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/HasBackgroundImage.php -------------------------------------------------------------------------------- /src/Validator/Constraints/HasBackgroundImageValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/HasBackgroundImageValidator.php -------------------------------------------------------------------------------- /src/Validator/Constraints/Pdf/ValidOrientation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/Pdf/ValidOrientation.php -------------------------------------------------------------------------------- /src/Validator/Constraints/Pdf/ValidOrientationValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/Pdf/ValidOrientationValidator.php -------------------------------------------------------------------------------- /src/Validator/Constraints/Pdf/ValidPageSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/Pdf/ValidPageSize.php -------------------------------------------------------------------------------- /src/Validator/Constraints/Pdf/ValidPageSizeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setono/SyliusGiftCardPlugin/HEAD/src/Validator/Constraints/Pdf/ValidPageSizeValidator.php --------------------------------------------------------------------------------