JTicketing Development Plugin Triggers

JTicketing Development Plugin Triggers from JTicketing 1.5.1

We recommend you to have a look at the jticketing_j3 Plugin(Type is System) (jticketing_j3),
We have provided some  basic trigger if you want any other trigger, let us know we will add in

    jt_OnBeforeEventCreate($order) :
     This function will be triggered by JTicketing Before an Event is created. You will get Event Data in to this.

    jt_OnAfterEventCreate($order) :
     This function will be triggered by JTicketing after an Event is created. You will get Event Data in to this.

    jt_OnAfterDeleteEvent($order) :
     This function will be triggered by JTicketing after an Event is deleted. You will get Event Data in to this.

    jt_OnBeforeTicketEmail($toemail, $subject,$message) :
     This function will be triggered before ticket Email. You will get email addressses, Subject and message html.

    jt_OnBeforeProcessPayment($post,$order_id,$pg_plugin)
     This function will be triggered before order is proceessed. You will get all post data,order id and payment plugin name

    jt_OnAfterProcessPayment($post,$order_id,$pg_plugin)
     This function will be triggered after order is proceessed. You will get all post data,order id and payment plugin name

    jt_OnBeforeInvoiceEmail($billemail,$subject,$invoicehtml)
     This function will be triggered before ticket Email. You will get email addressses, Subject and invoice html.