- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
51 lines
3.1 KiB
PHP
Executable File
51 lines
3.1 KiB
PHP
Executable File
<h2 class="tvd-card-title"><?php echo esc_html( $this->get_title() ); ?></h2>
|
|
<div class="tvd-row">
|
|
<form class="tvd-col tvd-s12">
|
|
<input type="hidden" name="api" value="<?php echo esc_attr( $this->get_key() ); ?>"/>
|
|
<?php $version = $this->param( 'version' );
|
|
$is_v1 = empty( $version ) || $version == 1;
|
|
$is_v2 = ! empty( $version ) && $version == 2;
|
|
|
|
?>
|
|
<div class="tvd-input-field">
|
|
<input id="tvd-hs-api-key" type="text" name="connection[key]" value="<?php echo esc_attr( $this->param( 'key' ) ); ?>">
|
|
<label for="tvd-hs-api-key" class="tvd-toggle-version-1 <?php echo $is_v1 ? '' : 'tvd-hide' ?>"><?php echo esc_html__( "API key", 'thrive-dash' ); ?></label>
|
|
<label for="tvd-hs-api-key" class="tvd-toggle-version-2 <?php echo ( empty( $this->get_key() ) && empty( $version ) ) || $is_v2 ? '' : 'tvd-hide' ?>"><?php echo esc_html__( "Access token", 'thrive-dash' ); ?></label>
|
|
</div>
|
|
<div class="tvd-col tvd-s12 tvd-m6 tvd-no-padding tvd-margin-bottom">
|
|
<p>
|
|
<input class="tvd-version-1 tvd-change-version" name="connection[version]" type="radio" value="1"
|
|
id="tvd-version-1" <?php echo ! empty( $this->get_key() ) && $is_v1 ? 'checked="checked"' : ''; ?> />
|
|
<label for="tvd-version-1"><?php echo esc_html__( 'Version 1', 'thrive-dash' ); ?></label>
|
|
</p>
|
|
</div>
|
|
<div class="tvd-col tvd-s12 tvd-m6 tvd-no-padding tvd-margin-bottom">
|
|
<p>
|
|
<input class="tvd-version-2 tvd-change-version" name="connection[version]" type="radio" value="2"
|
|
id="tvd-version-2" <?php echo ( empty( $this->get_key() ) && empty( $version ) ) || $is_v2 ? 'checked="checked"' : ''; ?> />
|
|
<label for="tvd-version-2"><?php echo esc_html__( 'Version 2', 'thrive-dash' ); ?></label>
|
|
</p>
|
|
</div>
|
|
<p class="tvd-toggle-version-1 tvd-margin-top-normal <?php echo ! empty( $version ) || $version == 2 ? 'tvd-hide' : ''; ?>">
|
|
<strong><?php echo esc_html__( 'Notification:', 'thrive-dash' ) ?> </strong>
|
|
<?php echo esc_html__( 'Starting November 30, 2022, HubSpot API keys will no longer work. Instead, you\'ll need to switch to Version 2 that uses a Private App access token.', 'thrive-dash' ) ?>
|
|
</p>
|
|
<p class="tvd-toggle-version-2 tvd-margin-top-normal <?php echo $version == 2 ? '' : 'tvd-hide'; ?>">
|
|
<?php echo esc_html__( 'Please make sure you set Read and Write permissions for Contacts and Lists in order for your connection to work. ', 'thrive-dash' ) ?>
|
|
<a href="https://help.thrivethemes.com/en/articles/4647663-how-to-set-up-and-use-an-api-connection-with-hubspot/"
|
|
target="_blank"><?php echo esc_html__( 'Learn more', 'thrive-dash' ) ?></a>
|
|
</p>
|
|
<?php $this->display_video_link(); ?>
|
|
</form>
|
|
</div>
|
|
<div class="tvd-card-action">
|
|
<div class="tvd-row tvd-no-margin">
|
|
<div class="tvd-col tvd-s12 tvd-m6">
|
|
<a class="tvd-api-cancel tvd-btn-flat tvd-btn-flat-secondary tvd-btn-flat-dark tvd-full-btn tvd-waves-effect"><?php echo esc_html__( "Cancel", 'thrive-dash' ) ?></a>
|
|
</div>
|
|
<div class="tvd-col tvd-s12 tvd-m6">
|
|
<a class="tvd-api-connect tvd-waves-effect tvd-waves-light tvd-btn tvd-btn-green tvd-full-btn"><?php echo esc_html__( "Connect", 'thrive-dash' ) ?></a>
|
|
</div>
|
|
</div>
|
|
</div>
|