Tribe__Tickets_Plus__Meta__Storage::get_hash_cookie_key()


Source

File: src/Tribe/Meta/Storage.php

	public static function get_hash_cookie_key(): string {
		/**
		 * Filters hash cookie key in case a hosting sites require certain cookie naming patterns
		 *
		 * @since 5.7.4
		 *
		 * @param string $hash_cookie_key The filterable cookie key.
		 */
		$hash_cookie_key = apply_filters( 'tec_tickets_plus_meta_get_hash_cookie_key', static::HASH_COOKIE_KEY );

		return $hash_cookie_key;
	}