Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
the-events-calendar
/
common
/
src
/
admin-views
/
power-automate
/
api
:
intro-text.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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>