Tribe__Tickets__Metabox::hook()
Configure all action and filters user by this Class
Return
(void)
Source
File: src/Tribe/Metabox.php
public function hook() {
add_action( 'add_meta_boxes', array( $this, 'configure' ) );
add_action( 'tribe_events_tickets_bottom_right', array( $this, 'get_ticket_controls' ), 10, 2 );
add_action( 'wp_ajax_tribe-ticket-panels', array( $this, 'ajax_panels' ) );
add_action( 'wp_ajax_tribe-ticket-add', array( $this, 'ajax_ticket_add' ) );
add_action( 'wp_ajax_tribe-ticket-edit', array( $this, 'ajax_ticket_edit' ) );
add_action( 'wp_ajax_tribe-ticket-delete', array( $this, 'ajax_ticket_delete' ) );
add_action( 'wp_ajax_tribe-ticket-checkin', array( $this, 'ajax_attendee_checkin' ) );
add_action( 'wp_ajax_tribe-ticket-uncheckin', array( $this, 'ajax_attendee_uncheckin' ) );
}