Controller::register_filters()

Register filters.


Return

(void)


Top ↑

Source

File: src/Events/Integrations/Plugins/Tickets_Wallet_Plus/Controller.php

	public function register_filters() {
		add_filter( 'tec_tickets_wallet_plus_pdf_pass_template_vars', [ $this, 'filter_pdf_template_context' ] );
		add_filter( 'tec_tickets_wallet_plus_pdf_sample_template_context', [ $this, 'add_event_data_to_pdf_sample' ] );

		add_filter( 'tec_tickets_wallet_plus_apple_pass_data', [ $this, 'add_event_date_to_apple_pass_data' ], 10, 2 );
		add_filter( 'tec_tickets_wallet_plus_apple_pass_data', [ $this, 'add_venue_to_apple_pass_data' ], 10, 2 );
		add_filter( 'tec_tickets_wallet_plus_apple_preview_pass_data', [ $this, 'add_event_data_to_sample_apple_wallet_pass' ], 10, 2 );
	}

Top ↑

Changelog

Changelog
Version Description
6.2.8 Introduced.