Tribe__Tickets__Shortcodes__User_Event_Confirmation_List::__construct()

Registers a user event confirmation list shortcode

Contents


Source

File: src/Tribe/Shortcodes/User_Event_Confirmation_List.php

	public function __construct( ) {
		/**
		 * Provides an opportunity to modify the registered shortcode name
		 * for the frontend attendee list.
		 *
		 * @param string $shortcode_name
		 */
		$this->shortcode_name = apply_filters( 'tribe_tickets_shortcodes_attendee_list_name', $this->shortcode_name );

		add_shortcode( $this->shortcode_name, array( $this, 'generate' ) );
	}

Top ↑

Changelog

Changelog
Version Description
4.5.2 Introduced.