thelia / delivery-exclude-date-module
Installs: 86
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 8
Forks: 1
Open Issues: 0
Type:thelia-module
Requires
- thelia/installer: ~1.1
This package is auto-updated.
Last update: 2024-10-14 22:29:58 UTC
README
Authors: Thelia info@thelia.net, Gilles Bourgeat gbourgeat@openstudio.fr
- This module manages excluding delivery dates.
- It manages a date list and test them by event.
- The developer competencies is required for use.
Compatibility
Thelia > 2.1
Installation
Manually
- Copy the module into
<thelia_root>/local/modules/
directory and be sure that the name of the module isDeliveryExcludeDate
. - Activate it in your thelia administration panel
Composer
Add it in your main thelia composer.json file
composer require thelia/delivery-exclude-date-module:~1.0
Usage
- Once activated, click on the configure button for add or edit dates.
Example in controller for one date
$event = new DateIsAvailableEvent(new \DateTime('2015-09-09')); $this->getDispatcher()->dispatch( DeliveryExcludeDateEvents::DATE_IS_AVAILABLE, $event ); if ($event->getIsAvailable()) { // date is available } else { // date is not available }
Example in controller for multiple dates
$date1 = new \DateTime('2015-09-09'); $date2 = new \DateTime('2015-10-09'); $date3 = new \DateTime('2015-11-09'); $event = new DatesIsAvailableEvent(array($date1, $date2, $date3)); $this->getDispatcher()->dispatch( DeliveryExcludeDateEvents::DATES_IS_AVAILABLE, $event ); if ($event->getIsAvailable($date1)) { // date 1 is available } else { // date 1 is not available } if ($event->getIsAvailable($date2)) { // date 1 is available } else { // date 1 is not available } if ($event->getIsAvailable($date3)) { // date 1 is available } else { // date 1 is not available }