richardhj / contao-notification_center_member_selectable
Member selectable messages for the notification_center extension for Contao Open Source CMS
Installs: 1 596
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 0
Type:contao-module
Requires
- php: ^5.6 || ^7.0
- codefog/contao-haste: ~4.11
- contao/core-bundle: ~4.4
- doctrine/dbal: ^2.7
- richardhj/contao-notification_center_checksendinterface: ~1.0
- symfony/config: ^3.3 || ^4.0 || ^5.0
- symfony/dependency-injection: ^3.3 || ^4.0 || ^5.0
- terminal42/notification_center: ~1.3
Requires (Dev)
- contao/manager-plugin: ^2.2
This package is auto-updated.
Last update: 2024-10-09 02:59:20 UTC
README
Member selectable messages for the notification_center extension for Contao Open Source CMS
Imagine, you provide nc messages (e.g. an order confirmation) with different gateways (like email or sms). This extension provides a front end module which lets the logged in member choose, which messages (e.g. only the sms message and/or only the email message) he wants to receive.
Usage
Modify the messages of a particular notifiaction and tick the box "Is member selectable" (All messages without this box ticked will be sent anyway). Create a new front end module "Manage messages" (can be found in the category "user"). Select the notifications, the member can manage with this module. Place the module in the front end (e.g. in the member area).
Demonstration front end module
Interface: MessageDraftCheckSendInterface
The Interface MessageDraftCheckSendInterface
can be added to any notification_center gateway and provides the function public function canSendDraft(Message $objMessage)
. This function will be called on saving the front end module (see below) and checks whether this message could be sent to this member.
For exemplary integration see richardhj/contao-notification_center_clockworsms
.
If you provide a notification_center gateway you can integrate the interface richardhj/contao-notification_center_checksendinterface
.