Files
roi-theme/wp-content/plugins/thrive-ultimatum/thrive-dashboard/inc/auto-responder/views/setup/constant-contact.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- 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>
2025-11-03 21:04:30 -06:00

83 lines
3.5 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-dashboard
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
/** @var $this Thrive_Dash_List_Connection_ConstantContact */
?>
<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() ); ?>"/>
<div class="tvd-input-field">
<input id="tvd-cc-api-key" type="text" name="connection[api_key]"
value="<?php echo esc_attr( $this->param( 'api_key' ) ); ?>">
<label for="tvd-cc-api-key"><?php echo esc_html__( "API key", 'thrive-dash' ) ?></label>
<p><?php echo esc_html__( "To get an API Key you have to follow these steps:", 'thrive-dash' ) ?></p>
<ol>
<li>
<?php echo sprintf( __( "Register a new account %s", 'thrive-dash' ), '<a target="_blank" href="https://constantcontact.mashery.com/member/register">' . esc_html__( "here", 'thrive-dash' ) . '</a>' ) ?></li> <?php //phpcs:ignore ?>
<li>
<?php echo esc_html__( "Log in and create a new Application for which the API key will be automatically be generated.", 'thrive-dash' ) ?></li>
<li>
<?php echo esc_html__( "Copy+Paste the API Key into the field", 'thrive-dash' ) ?></li>
</ol>
</div>
<div class="tvd-row">
<div class="tvd-col tvd-s12">
<a id="btn-get-token" class="tvd-waves-effect tvd-waves-light tvd-btn tvd-btn-green tvd-full-btn" href="<?php echo esc_url( $this->getTokenUrl() ); ?>"><?php echo esc_html__( "Get Token", 'thrive-dash' ) ?></a>
</div>
</div>
<div class="tvd-row">
<div class="tvd-col tvd-s12">
<div class="tvd-input-field">
<input id="tvd-cc-api-token" type="text" name="connection[api_token]"
value="<?php echo esc_attr( $this->param( 'api_token' ) ); ?>">
<label for="tvd-cc-api-token"><?php echo esc_html__( "API token", 'thrive-dash' ) ?></label>
<p><?php echo esc_html__( "To get an API Token you have to follow these steps:", 'thrive-dash' ) ?></p>
<ol>
<li><?php echo esc_html__( "After you have completed the steps for getting an API Key you have to click the Get Token Button", 'thrive-dash' ) ?></li>
<li><?php echo esc_html__( "Follow the steps until you receive the token string", 'thrive-dash' ) ?></li>
<li><?php echo esc_html__( "Copy+Paste the token string into the field and click the Connect to Constant Contact button", 'thrive-dash' ) ?></li>
</ol>
</div>
</div>
</div>
<?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>
<script type="text/javascript">
(
function ( $ ) {
var _token_url = $( "#btn-get-token" ).attr( 'href' );
$( "#btn-get-token" ).click( function () {
var api_key = $( "#tvd-cc-api-key" ).val(),
$this = $( this );
if ( ! api_key ) {
alert( '<?php echo __( "Please enter the API Key in order to get the token !", 'thrive-dash' ) ?>' );
return false;
}
$this.attr( 'href', _token_url + api_key );
} );
}
)( jQuery );
</script>