• I’d like to add two statuses to bookings.

    Not Going and Maybe

    Should I just keep going with the count:

    $this->status_array = array(
    0 => __(‘Pending’,’dbem’),
    1 => __(‘Approved’,’dbem’),
    2 => __(‘Rejected’,’dbem’),
    3 => __(‘Cancelled’,’dbem’),
    4 => __(‘Awaiting Online Payment’,’dbem’),
    5 => __(‘Awaiting Payment’,’dbem’),
    6 => __(‘Not Going’,’dbem’),
    7 => __(‘Maybe’),’dbem’)
    );

    or start at 10 or higher

    $this->status_array = array(
    0 => __(‘Pending’,’dbem’),
    1 => __(‘Approved’,’dbem’),
    2 => __(‘Rejected’,’dbem’),
    3 => __(‘Cancelled’,’dbem’),
    4 => __(‘Awaiting Online Payment’,’dbem’),
    5 => __(‘Awaiting Payment’,’dbem’),
    10 => __(‘Not Going’,’dbem’),
    11 => __(‘Maybe’),’dbem’)
    );

    https://www.ads-software.com/extend/plugins/events-manager/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Maybe I don’t get the greater picture, but the booking states you want to add sound more like user decisions (I attend, not attend, possibly attend) in contrast to the system’s values that are status values after someone intended to attend ,no question about “Not going” nor “Maybe”.
    Nonetheless, “Not Going” might be usable here, but if you “book” as MayBe, how can the admin process status steps 1-5 ?? The original information, that the attendee MIGHT come is then gone or has to stay static…..
    Sorry for confusing you folks ??

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    I’d start at ten just to be safe ??

    that could be a way to go about it if you make a button for logged in users similar to the one click booking, although when we do look at the maybe/no social type statuses for events, we might even make another table for that sort of thing

    Thread Starter glennbennett

    (@glennbennett)

    Marcus,

    Thanks!

    I think I’ll stick to adding the status to this table as I’m hoping there is a chance of having this table managed by the rest of the plugin.

    G

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    sure, need to sit on a rock and think about that one for a bit….

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Events Manager] Not Going & Maybe’ is closed to new replies.