- 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>
62 lines
2.9 KiB
PHP
Executable File
62 lines
2.9 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_Awsses */
|
|
$admin_email = get_option( 'admin_email' );
|
|
?>
|
|
<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-aw-api-email" type="text" name="connection[email]"
|
|
value="<?php echo esc_attr( $this->param( 'email', $admin_email ) ) ?>">
|
|
<label for="tvd-aw-api-email"><?php echo esc_html__( "Email", 'thrive-dash' ) ?></label>
|
|
</div>
|
|
<div class="tvd-input-field">
|
|
<input id="tvd-aw-api-secret" type="text" name="connection[secretkey]"
|
|
value="<?php echo esc_attr( $this->param( 'secretkey' ) ) ?>">
|
|
<label for="tvd-aw-api-secret"><?php echo esc_html__( "Secret key", 'thrive-dash' ) ?></label>
|
|
</div>
|
|
<div class="tvd-input-field">
|
|
<input id="tvd-aw-api-key" type="text" name="connection[key]" value="<?php echo esc_attr( $this->param( 'key' ) ) ?>">
|
|
<label for="tvd-aw-api-key"><?php echo esc_html__( "Access key", 'thrive-dash' ) ?></label>
|
|
</div>
|
|
<div class="tvd-input-field">
|
|
<select id="tvd-aw-api-country" class="tvd-browser-default" type="text" name="connection[country]">
|
|
<option value="ireland" <?php echo $this->param( 'country' ) == "ireland" ? 'selected="selected"' : '' ?> >Ireland</option>
|
|
<option value="useast" <?php echo $this->param( 'country' ) == "useast" ? 'selected="selected"' : '' ?> >US East (N. Virginia)</option>
|
|
<option value="uswest" <?php echo $this->param( 'country' ) == "uswest" ? 'selected="selected"' : '' ?> >US West (N. Oregon)</option>
|
|
</select>
|
|
<label for="tvd-aw-api-country"><?php echo esc_html__( "Email Zone", 'thrive-dash' ) ?></label>
|
|
</div>
|
|
<?php $this->display_video_link(); ?>
|
|
</form>
|
|
</div>
|
|
<div class="tvd-row">
|
|
<div class="tvd-col tvd-s12">
|
|
<p class="tve-form-description tvd-note-text">
|
|
<?php echo esc_html__( 'Note: sending email through SES will only work if your email address has been verified and you are not in sandbox mode.', 'thrive-dash' ) ?>
|
|
<a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/request-production-access.html"
|
|
target="_blank"><?php echo esc_html__( 'Learn more', 'thrive-dash' ) ?></a>.
|
|
</p>
|
|
</div>
|
|
</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>
|