Page::add_tec_tickets_attendees_page()

Adds the Event Tickets Attendees page.

Contents


Source

File: src/Tickets/Admin/Attendees/Page.php

	public function add_tec_tickets_attendees_page() {
		$admin_pages = tribe( 'admin.pages' );

		$attendees_page = $admin_pages->register_page(
			[
				'id'       => static::$slug,
				'path'     => static::$slug,
				'parent'   => static::$parent_slug,
				'title'    => esc_html__( 'Attendees', 'event-tickets' ),
				'position' => 1.5,
				'callback' => [
					$this,
					'render_tec_tickets_attendees_page',
				],
			]
		);
	}

Top ↑

Changelog

Changelog
Version Description
5.9.1 Introduced.