File "iframe-content.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/admin-views/help-hub/support/iframe-content.php
File size: 2.53 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * The template that displays the support hub iframe content.
 *
 * @var Tribe__Main $main             The main common object.
 * @var Hub         $help_hub         The Help Hub class.
 * @var string      $template_variant The template variant, determining which template to display.
 */

use TEC\Common\Admin\Help_Hub\Hub;

$opted_in = tribe_is_truthy( $help_hub->get_license_and_opt_in_status()['is_opted_in'] ) ? '1' : '0';

?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title><?php esc_html_e( 'Iframe Content', 'tribe-common' ); ?></title>
	<?php
	/**
	 * Fires in the <head> section of the Help Hub iframe template.
	 *
	 * This action allows developers to hook into the iframe's header and add additional styles, scripts,
	 * or metadata specific to the Help Hub iframe content.
	 *
	 * @since 6.4.2
	 */
	do_action( 'tec_help_hub_iframe_header' );
	wp_print_styles();
	wp_print_scripts();
	?>
</head>
<body id="help-hub-page" data-opted-in="<?php echo esc_attr( $opted_in ); ?>">

<!-- Docsbot section-->
<div class="docsbot-widget-background"></div>
<div id="docsbot-widget-embed"></div>


<div class="tec-help-hub-iframe-opt-out-message hide">
	<div class="tec-help-hub-iframe-opt-out-message__image">
		<img src="<?php echo esc_url( $help_hub->get_icon_url( 'stars_icon' ) ); ?>" alt="<?php esc_attr_e( 'Star Icon', 'tribe-common' ); ?>">
	</div>
	<div class="tec-help-hub-iframe-opt-out-message__content">
		<h2><?php esc_html_e( 'Our AI Chatbot can help you find solutions quickly.', 'tribe-common' ); ?></h2>
		<p>
			<?php esc_html_e( 'To enhance your experience, we require your consent to collect and share some of your website’s data with our AI chatbot.', 'tribe-common' ); ?>
		</p>
		<p>
			<?php
			printf(
			// translators: 1: the opening tag to the chatbot link, 2: the closing tag.
				esc_html_x(
					'If you do not wish to consent, you could chat with the bot on %1$sThe Events Calendar’s Knowledgebase%2$s.',
					'Text for opting out of chatbot and linking to The Events Calendar’s Knowledgebase',
					'tribe-common'
				),
				'<a target="_parent" href="https://theeventscalendar.com/knowledgebase/">',
				'</a>'
			);
			?>
		</p>
		<a target="_parent" href="<?php echo esc_url( $help_hub::get_telemetry_opt_in_link() ); ?>" class="button button-secondary"><?php esc_html_e( 'Manage my data sharing consent', 'tribe-common' ); ?></a>
	</div>
</div>
<?php wp_print_footer_scripts(); ?>
</body>
</html>