Download the PHP package remp/crm-gifts-module without Composer

On this page you can find all versions of the php package remp/crm-gifts-module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package crm-gifts-module

CRM GiftsModule

Translation status @ Weblate

This module provides gift option to SalesFunnelModule.

Installing module

We recommend using Composer for installation and update management.

Enabling module

Add installed extension to your app/config/config.neon file:

Run service commands to generate CRM internals:

SalesFunnelModule integration

  1. Add to your sales funnel payment_metadata fields (have to be sent together with other required sales funnel's fields; see SalesFunnelModule README):

    • payment_metadata[gift] (boolean) - if true, indicates that this purchase is gift.
    • payment_metadata[gift_email] (string) - email of customer for which is gift purchased. This can be email of existing or new customer. Gift process handles creation of new accounts.
    • payment_metadata[gift_starts_at] (string) - date when should gifted subscription start. Use DateTimeInterface::RFC3339.

    All three fields are mandatory.

  2. Put php bin/command.php gifts:activate_purchased_gift_coupons into cron. We recommend running it every 5 to 10 minutes.

  3. Create event listeners for these NotificationEvents if you want to inform customers about gift related events:

    • created_payment_gift_coupon - emitted when payment for gift subscription for confirmed (paid). Send to donor.
    • welcome_email_gift_coupon - emitted when gift subscription was created _(gift subscription is created by command from previous step at gift_starts_at datetime) and donee's account was created in CRM. Send to donee (email from gift_email field)_.
    • new_subscription_gift - emitted when gift subscription was created _(gift subscription is created by command from previous step at gift_starts_at datetime) and donee's account already existed in CRM. Send to donee (email from gift_email field)_.
  4. Set gift coupon attachment which should be attached to notification event sent to donor. See application config gift_subscription_coupon_attachment, can be found in web administration under category Subscriptions.

How it works

  1. PaymentItemContainerReadyEventHandler listens to PaymentItemContainerReadyEvent.

    • If payment_metadata contains valid gift fields (see above), it switches SubscriptionTypePaymentItem to GiftPaymentItem.
  2. CreateGiftCouponNewPaymentEventHandler listens to NewPaymentEvent (payment is created; not paid).

    • If payment_meta contains valid gift fields, it removes subscription_type_id from Payment (to prevent creation of subscription for donor's account).
    • Afterwords it creates payment_gift_coupons entry from gift fields.
      • This is created before payment is confirmed for legacy reasons. This helps helpdesk to search and to pair payment with gifts.
  3. GiftPaymentStatusChangeHandler listens to PaymentChangeStatusEvent.

    • If payment is PAID and it is gift subscription purchase (payment's meta contains gift === 1), NotificationEvent(created_payment_gift_coupon) with coupon attached (see integration) is emitted.
  4. Command php bin/command.php gifts:activate_purchased_gift_coupons is running in background and activating gift subscriptions when time >= gift_starts_at.

    • Donee account:
      • If account with gift_email exists, it is used for gift.
      • Otherwise new account is created with user.source = PaymentGiftCouponsRepository::USER_SOURCE_GIFT_COUPON.
    • New subscription is attached to donee's account with subscription.type = SubscriptionsRepository::TYPE_GIFT.
    • You can configure subscription extension method by calling setExtendMethod in your configuration file like this:
  5. SendWelcomeEmailHandler listens to UserRegisteredEvent.

    • If created user has source === PaymentGiftCouponsRepository::USER_SOURCE_GIFT_COUPON, NotificationEvent(welcome_email_gift_coupon) is emitted.
  6. SubscriptionsStartsEventHandler listens to SubscriptionStartsEvent.
    • If subscription has type === SubscriptionsRepository::TYPE_GIFT and account wasn't created in last 15 minutes (by command), NotificationEvent(new_subscription_gift) is emitted.

Notification email after the payment

Both of the following options require REMP Mailer integration, or other custom implementation handling NotificationEvent.

Default email

If you want to just use the defaults provided by the module, you can enable the event handler responsible for sending the notification email. In one of your custom (internal) modules, add this snippet:

GiftsModule will try to send an email with template code created_payment_gift_coupon. You can use these variables in your template:

You can also configure gift_subscription_coupon_attachment option in the CRM admin configuration. If it's present, the email will use the attachment provided in the config (e.g. with PDF coupon). The attachment is static and not personalized.

ScenariosModule

If you don't want to use the defaults, you can configure custom scenario to send the emails.

To differentiate gift emails from the regular ones, you need to add a scenario condition that matches your implementation. The two most common are:

You're free to extend the scenario and your own conditions. Read more in the ScenariosModule README.

DataProviders

SubscriptionFormDataProvider - validation within subscription's update form

SubscriptionFormDataProvider was added to validate update of start time for gifted subscriptions against parent payment's paid_at date. For accounting reasons, the subscription must not start before the payment confirmation date.



All versions of crm-gifts-module with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package remp/crm-gifts-module contains the following files

Loading the files please wait ....