Coder Social home page Coder Social logo

Ticket element - overwrite rules about events HOT 3 CLOSED

anchovy avatar anchovy commented on July 28, 2024
Ticket element - overwrite rules

from events.

Comments (3)

anchovy avatar anchovy commented on July 28, 2024

Or - maybe another option is to only verify the availableTo against the availableFrom and de-couple them from the event endDate. This way users/admins have flexibility to set ticket dates that work for their use case.

from events.

engram-design avatar engram-design commented on July 28, 2024

Yii rules are a little difficult to "unset", but it certainly is possible! You'll want to loop through any of the rules configured for the element and remove it, adding your own.

use craft\events\DefineRulesEvent;
use verbb\events\elements\Ticket;
use yii\base\Event;

Event::on(Ticket::class, Ticket::EVENT_DEFINE_RULES, function(DefineRulesEvent $event) {
    foreach ($event->rules as $key => $rule) {
        [$attribute, $validator] = $rule;

        if ($attribute === ['availableFrom', 'availableTo']) {
            unset($event->rules[$key]);
        }

        if ($attribute === ['availableFrom']) {
            unset($event->rules[$key]);
        }
    }
});

But you'll need to get on the latest craft-4 branch for that as well.

And yeah, I'll consider that. I was just thinking that there's no point in offering tickets for sale once the end date of the event is over, but this is purely a validation step.

from events.

anchovy avatar anchovy commented on July 28, 2024

Hi, thanks for that. We've started the upgrade to craft-v4, so I'll get that finished and hook into unsetting these rules. Thanks.

from events.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.