File "intro-text.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/admin-views/power-automate/api/intro-text.php
File size: 1.56 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* View: Power Automate Integration API Keys intro text.
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/admin-views/power-automate/api/intro-text.php
*
* See more documentation about our views templating system.
*
* @since 1.4.0
* @since 1.4.0 - Add loader template.
*
* @version 1.4.0
*
* @link http://evnt.is/1aiy
*
* @var array $allowed_html Which HTML elements are used for wp_kses.
*/
?>
<div class="tec-settings-form__header-block tec-settings-form__header-block--horizontal tec-settings-form__header-block--no-border">
<?php $this->template( '/components/loader' ); ?>
<h3 id="tec-power-automate-application-credentials" class="tec-settings-power-automate-application__title tec-settings-form__section-header tec-settings-form__section-header--sub">
<?php echo esc_html_x( 'Power Automate', 'API connection header', 'tribe-common' ); ?>
</h3>
<p class="tec-settings-power-automate-application__description tec-settings-form__section-description">
<?php
$echo = sprintf(
/* Translators: %1$s: URL to the Power Automate API documentation */
_x(
'Please generate a connection for each of our applications you are using with Power Automate to enable its integrations. i.e.: one connection for The Events Calendar and one connection for Event Tickets. <a href="%1$s" target="_blank">Read more about adding and managing access.</a>',
'Settings help text and link for Power Automate API.',
'tribe-common'
),
esc_url( 'https://evnt.is/1bc8' )
);
echo wp_kses_post( $echo );
?>
</p>
</div>