Service_Provider

Class Service_Provider


Source

File: src/Tribe/Integrations/Divi/Service_Provider.php

class Service_Provider extends \tad_DI52_ServiceProvider {

	/**
	 * Binds and sets up implementations.
	 *
	 * @since 6.0.1
	 */
	public function register() {
		$this->container->singleton( static::class, $this );

		$theme = wp_get_theme();

		if ( 'divi' !== strtolower( $theme->name ) && 'divi' !== strtolower( $theme->parent_theme ) ) {
			return;
		}

	}

	/**
	 * Hooks the filters and actions required for this integration to work.
	 *
	 * @since 6.0.1
	 */
	protected function hooks(): void {
		add_filter( 'tribe_post_id', [ $this, 'filter_tribe_post_id' ] );
	}

	/**
	 * Unregisters the filters and actions required for this integration to work.
	 *
	 * @since 6.0.2
	 *
	 * @return void
	 */
	public function unregister(): void {
		remove_filter( 'tribe_post_id', [ $this, 'filter_tribe_post_id' ] );
	}

	/**
	 * Get the $event_id using get_queried_object_id() for Divi users who aren't using the Default Events Template.
	 *
	 * @since 6.0.1
	 *
	 * @param int $event_id The event ID.
	 */
	public function filter_tribe_post_id( $event_id ) {
		// Try the "normal" way first.
		if ( empty( $event_id ) ) {
			$event_id = get_the_ID();
		}

		// Look for a post in the query variables.
		if ( ! tribe_is_event( $event_id ) && tribe_get_request_var( 'et_post_id' ) ) {
			$event_id = tribe_get_request_var( 'et_post_id' );
		}

		if ( ! tribe_is_event( $event_id ) ) {
			$event_id = get_queried_object_id();
		}

		return $event_id;
	}
}

Top ↑

Changelog

Changelog
Version Description
6.0.1 Introduced.

Top ↑

Methods

  • filter_tribe_post_id — Get the $event_id using get_queried_object_id() for Divi users who aren't using the Default Events Template.
  • register — Binds and sets up implementations.
  • unregister — Unregisters the filters and actions required for this integration to work.