Tribe__Events__Aggregator__Page::action_request( WP_Screen $screen )

Hooked to current_screen allow tabs and other parts of the plugin to hook to aggregator before rendering any headers


Parameters

$screen

(WP_Screen) (Required) Variable from current_screen


Top ↑

Return

(bool)


Top ↑

Source

File: src/Tribe/Aggregator/Page.php

	public function action_request( $screen ) {
		if ( ! $this->is_screen() ) {
			return false;
		}

		/**
		 * Fires an Action to allow Form actions to be hooked to
		 */
		return do_action( 'tribe_aggregator_page_request' );
	}