true ), 'objects' ); $all_post_types = array(); foreach ( $all_post_type_objects as $post_type => $post_type_object ) { $should_ignore = false; foreach ( $post_types_to_ignore as $ignore ) { if ( preg_match( '/' . preg_quote( $ignore ) . '/', $post_type ) ) { $should_ignore = true; break; } } if ( $should_ignore ) { continue; } $all_post_types[ $post_type ] = $post_type_object->labels->singular_name; } $all_post_types = apply_filters( 'tribe_tickets_settings_post_types', $all_post_types ); $options = get_option( Tribe__Main::OPTIONNAME, array() ); /** * List of ticketing solutions that support login requirements (ie, disabling or * enabling the ticket form according to whether a user is logged in or not). * * @param array $ticket_systems */ $ticket_addons = apply_filters( 'tribe_tickets_settings_systems_supporting_login_requirements', array( 'event-tickets_rsvp' => __( 'Require users to log in before they RSVP', 'event-tickets' ), ) ); $tickets_fields = array( 'tribe-form-content-start' => array( 'type' => 'html', 'html' => '
', ), 'tickets-title' => array( 'type' => 'html', 'html' => '

' . esc_html__( 'Ticket Settings', 'event-tickets' ) . '

', ), 'ticket-enabled-post-types' => array( 'type' => 'checkbox_list', 'label' => esc_html__( 'Post types that can have tickets', 'event-tickets' ), // only set the default to tribe_events if the ticket-endabled-post-types index has never been saved 'default' => array_key_exists( 'ticket-enabled-post-types', $options ) ? false : 'tribe_events', 'options' => $all_post_types, 'can_be_empty' => false, 'validation_type' => 'options_multi', ) ); /** * If The Events Calendar is active let's add an option to control the position * of the ticket forms in the events view. */ if ( class_exists( 'Tribe__Events__Main' ) ) { $ticket_form_location_options = array( 'tribe_events_single_event_after_the_meta' => __( 'Below the event details [default]', 'event-tickets' ), 'tribe_events_single_event_before_the_meta' => __( 'Above the event details', 'event-tickets' ), 'tribe_events_single_event_after_the_content' => __( 'Below the event description', 'event-tickets' ), 'tribe_events_single_event_before_the_content' => __( 'Above the event description', 'event-tickets' ), ); $tickets_fields = array_merge( $tickets_fields, array( 'ticket-rsvp-form-location' => array( 'type' => 'dropdown', 'label' => esc_html__( 'Location of RSVP form', 'event-tickets' ), 'options' => $ticket_form_location_options, 'validation_type' => 'options', 'parent_option' => Tribe__Events__Main::OPTIONNAME, 'default' => reset( $ticket_form_location_options ), ), 'ticket-commerce-form-location' => array( 'type' => 'dropdown', 'label' => esc_html__( 'Location of Tickets form', 'event-tickets' ), 'options' => $ticket_form_location_options, 'validation_type' => 'options', 'parent_option' => Tribe__Events__Main::OPTIONNAME, 'default' => reset( $ticket_form_location_options ), ), ) ); } $tickets_fields = array_merge( $tickets_fields, array( 'ticket-authentication-requirements-heading' => array( 'type' => 'html', 'html' => '

' . __( 'Login requirements', 'event-tickets' ) . '

', ), 'ticket-authentication-requirements-advice' => array( 'type' => 'html', 'html' => '

' . sprintf( __( 'You can require that users log into your site before they are able to RSVP (or buy tickets). Please review your WordPress Membership option (via the General Settings admin screen) before adjusting this setting.', 'event-tickets' ), '', '' ) . '

', ), 'ticket-authentication-requirements' => array( 'type' => 'checkbox_list', 'options' => $ticket_addons, 'validation_type' => 'options_multi', 'can_be_empty' => true, ), 'tribe-form-content-end' => array( 'type' => 'html', 'html' => '
', ), ) ); // If Events Tickets Plus is not active there remove the related field. if ( ! class_exists( 'Tribe__Tickets_Plus__Main' ) ) { unset( $tickets_fields['ticket-commerce-form-location'] ); } /** * Filters the fields to be registered in the Events > Settings > Tickets tab. * * A field definition is one suitable to be consumed by the `Tribe__Settings_Tab` class. * * @see Tribe__Settings_Tab * @see Tribe__Field * * @param array $tickets_fields An associative array of fields definitions to register. */ $tickets_fields = apply_filters( 'tribe_tickets_settings_tab_fields', $tickets_fields ); $tickets_tab = array( 'priority' => 20, 'fields' => $tickets_fields, );