Exclude delivery dates

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 is DeliveryExcludeDate.
  • 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
    }

Loop

delivery_exclude_date

Output arguments

Variable Description
$ID Int Value
TITLE String value
DESCRIPTION String value
ACTIVE Int value
DATE Date value
Download
exclude-delivery-dates.jpg Download

Exclude delivery dates

This module allows you to exclude delivery dates

Author :

Say Hi & Get in Touch

info@thelia.net - +33(0)4 44 05 31 00

Thelia Network English
E-commerce solution

E-commerce software, useful to create and manage online stores, published under a free license. Discover our new version, based on many modern technologies !

Download Thelia
Business

A team of experts at your service.

Showcase

Over 7000 online stores powered by Thelia

Modules

Customize your Thelia.

Openstudio

Thelia editor