Page::get_page_arguments()

Gets the arguments passed to the template rendering of this page.


Return

(array)


Top ↑

Source

File: src/Tribe/Admin/Manager/Page.php

	public function get_page_arguments() {
		$this->set_user_post_counts();

		$messages = $this->get_bulk_action_messages( $_REQUEST );

		return [
			'page' => $this,
			'shortcode' => tribe( Shortcode::class ),
			'views' => $this->get_views(),
			'bulk_messages' => $messages['bulk_messages'],
			'bulk_counts' => $messages['bulk_counts'],
		];
	}

Top ↑

Changelog

Changelog
Version Description
5.9.0 Introduced.