File "Event_Venue.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Editor/Blocks/Event_Venue.php
File size: 4.34 KB
MIME-type: text/x-php
Charset: utf-8

<?php
class Tribe__Events__Editor__Blocks__Event_Venue
extends Tribe__Editor__Blocks__Abstract {
	use TEC\Events\Traits\Block_Trait;

	/**
	 * The ID of the venue to display.
	 *
	 * @since 6.2.0
	 *
	 * @var ?int
	 */
	protected static ?int $venue_id = null;

	/**
	 * Which is the name/slug of this block
	 *
	 * @since 4.7
	 *
	 * @return string
	 */
	public function slug() {
		return 'event-venue';
	}

	/**
	 * Since we are dealing with a Dynamic type of Block we need a PHP method to render it
	 *
	 * @since 4.7
	 *
	 * @param  array $attributes
	 *
	 * @return string
	 */
	public function render( $attributes = [] ) {
		$args['attributes'] = $this->attributes( $attributes );

		$args['show_map_link'] = $this->should_show_map_link( $args['attributes'] );
		$args['show_map']      = $this->should_show_map( $args['attributes'] );
		$args['venue_id']      = $this->get_venue_id( $args['attributes'] );

		// Add the rendering attributes into global context
		tribe( 'events.editor.template' )->add_template_globals( $args );

		return tribe( 'events.editor.template' )->template( [ 'blocks', $this->slug() ], $args, false );
	}

	/**
	 * Determines if assets should be enqueued.
	 *
	 * @since 6.2.0
	 *
	 * @return bool
	 */
	public function should_enqueue_assets(): bool {
		$should_enqueue = false;

		if ( $this->has_block() ) {
			$should_enqueue = true;
		}

		/**
		 * Filters whether or not assets should be enqueued for the event venue block.
		 *
		 * @since 6.2.0
		 *
		 * @param bool $should_enqueue Whether or not assets should be enqueued.
		 * @param Tribe__Events__Editor__Blocks__Event_Venue $block The block instance.
		 */
		return apply_filters( 'tec_events_blocks_event_venue_should_enqueue_assets', $should_enqueue, $this );
	}

	/**
	 * Gets the venue ID from the block.
	 *
	 * @since 6.2.0
	 *
	 * @param array $attributes Array of attributes for the block.
	 *
	 * @return ?int
	 */
	public function get_venue_id( array $attributes ): ?int {
		$venue_id = static::$venue_id;

		if ( $venue_id === null && isset( $attributes['venue'] ) ) {
			$venue_id = $attributes['venue'];
		}

		/**
		 * Filters the venue ID for the event venue block.
		 *
		 * @since 6.2.0
		 *
		 * @param ?int  $venue_id  The venue ID.
		 * @param array $attributes Array of attributes for the block.
		 * @param Tribe__Events__Editor__Blocks__Event_Venue $block The block instance.
		 */
		$venue_id = apply_filters( 'tec_events_blocks_event_venue_id', $venue_id, $attributes, $this );

		if ( $venue_id !== null && ! is_int( $venue_id ) ) {
			$venue_id = (int) $venue_id;
		}

		static::$venue_id = $venue_id;

		return static::$venue_id;
	}

	/**
	 * Should we show the map?
	 *
	 * @since 6.2.0
	 *
	 * @param array $attributes Array of attributes for the block.
	 *
	 * @return bool
	 */
	public function should_show_map( array $attributes ): bool {
		$show_map = true;

		if ( isset( $attributes['showMap'] ) ) {
			$show_map = (bool) $attributes['showMap'];
		} elseif ( ! tribe_embed_google_map( $this->get_venue_id( $attributes ) ) ) {
			$show_map = false;
		}

		/**
		 * Filters whether the map should be shown for the event venue block.
		 *
		 * @since 6.2.0
		 *
		 * @param bool  $show_map   Whether the map should be shown.
		 * @param array $attributes Array of attributes for the block.
		 * @param Tribe__Events__Editor__Blocks__Event_Venue $block The block instance.
		 */
		return (bool) apply_filters( 'tec_events_blocks_event_venue_should_show_map', $show_map, $attributes, $this );
	}

	/**
	 * Should we show the map link?
	 *
	 * @since 6.2.0
	 *
	 * @param array $attributes Array of attributes for the block.
	 *
	 * @return bool
	 */
	public function should_show_map_link( array $attributes ): bool {
		$show_map_link = true;

		if ( isset( $attributes['showMapLink'] ) ) {
			$show_map_link = (bool) $attributes['showMapLink'];
		} elseif ( ! tribe_embed_google_map( $this->get_venue_id( $attributes ) ) ) {
			$show_map_link = false;
		}

		/**
		 * Filters whether the map link should be shown for the event venue block.
		 *
		 * @since 6.2.0
		 *
		 * @param bool  $show_map_link Whether the map link should be shown.
		 * @param array $attributes    Array of attributes for the block.
		 * @param Tribe__Events__Editor__Blocks__Event_Venue $block The block instance.
		 */
		return (bool) apply_filters( 'tec_events_blocks_event_venue_should_show_map_link', $show_map_link, $attributes, $this );
	}
}