Event_Single_Dynamic

Class Event_Single_Dynamic

Represents a custom Elementor document for TEC, tailored for Elementor Pro users. It integrates with Elementor’s Theme Builder, offering advanced features such as dynamic tags and conditional display settings for Single Event templates.


Source

File: src/Events/Integrations/Plugins/Elementor/Template/Documents/Event_Single_Dynamic.php

class Event_Single_Dynamic extends Single_Base {
	/**
	 * Retrieves the properties for the Event_Single_Dynamic document.
	 *
	 * @since 6.4.0
	 *
	 * @return array The Event_Single_Dynamic document properties.
	 */
	public static function get_properties(): array {
		$properties              = parent::get_properties();
		$properties['post_type'] = \Tribe__Events__Main::POSTTYPE;

		return $properties;
	}

	/**
	 * The document icon.
	 *
	 * @since 6.4.0
	 *
	 * @return string Document icon.
	 */
	protected static function get_site_editor_icon(): string {
		return 'eicon-calendar';
	}

	/**
	 * The document title.
	 *
	 * @since 6.4.0
	 *
	 * @return string Document title.
	 */
	public static function get_title(): string {
		return __( 'Single Event', 'the-events-calendar' );
	}

	/**
	 * The document name.
	 *
	 * @since 6.4.0
	 *
	 * @return string Document name.
	 */
	public function get_name(): string {
		return static::get_type();
	}

	/**
	 * The document type.
	 *
	 * @since 6.4.0
	 *
	 * @return string Document type.
	 */
	public static function get_type(): string {
		return 'tec_event_single_dynamic';
	}

	/**
	 * Modify the template data before importing.
	 *
	 * @since 6.4.0
	 *
	 * @param array $data The template data.
	 *
	 * @return array
	 */
	public static function prepare_template_data( $data ): array {
		// Do not translate this string.
		$data['title'] = 'The Events Calendar - Dynamic template';

		return $data;
	}
}

Top ↑

Changelog

Changelog
Version Description
6.4.0 Introduced.

Top ↑

Methods