- 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>
66 lines
3.0 KiB
PHP
Executable File
66 lines
3.0 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package thrive-dashboard
|
|
*/
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
$admin_email = get_option( 'admin_email' ); ?>
|
|
<?php $mandirll_key = $this->param( 'mandrill-key' ) ?>
|
|
<h2 class="tvd-card-title"><?php echo esc_html( $this->get_title() ); ?></h2>
|
|
<div class="tvd-row">
|
|
<p class="card-mb-10">
|
|
<strong><?php echo esc_html__( 'Notification:', 'thrive-dash' ) ?> </strong><?php echo esc_html__( 'If you would like to use Transactional emails. You should fill in the Mandrill API Key and Mandrill-approved email address optional fields.', 'thrive-dash' ) ?>
|
|
</p>
|
|
<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-mm-api-key" type="text" name="connection[key]"
|
|
value="<?php echo esc_attr( $this->param( 'key' ) ); ?>">
|
|
<label for="tvd-mm-api-key"><?php echo esc_html__( "API key", 'thrive-dash' ) ?></label>
|
|
</div>
|
|
<input type="checkbox" id="tvd-show-mandrill-options" class="tvd-api-show-extra-options" name="connection[show_mandrill]"
|
|
<?php echo ! empty( $mandirll_key ) ? 'checked' : '' ?> >
|
|
<label for="tvd-show-mandrill-options">Add Mandrill Connection</label>
|
|
<a href="#">Link</a>
|
|
<div class="tvd-hide tvd-extra-options">
|
|
<h4><strong><?php echo esc_html__( 'Mandrill:', 'thrive-dash' ) ?> </strong></h4>
|
|
<div class="tvd-input-field">
|
|
<input id="tvd-pm-api-email" type="text" name="connection[email]"
|
|
value="<?php echo esc_attr( $this->param( 'email', $admin_email ) ); ?>">
|
|
<label for="tvd-pm-api-email">
|
|
<?php echo esc_html__( "Mandrill-approved email address", 'thrive-dash' ) ?>
|
|
</label>
|
|
</div>
|
|
<div class="tvd-input-field">
|
|
<input id="tvd-mandrill-api-key" type="text" name="connection[mandrill-key]"
|
|
value="<?php echo esc_attr( $this->param( 'mandrill-key' ) ); ?>">
|
|
<label for="tvd-mandrill-api-key"><?php echo esc_html__( "Mandrill API key", 'thrive-dash' ) ?></label>
|
|
</div>
|
|
</div>
|
|
<div class="tvd-row tvd-hide tvd-extra-options">
|
|
<div class="tvd-col tvd-s12">
|
|
<p class="tvd-form-description tvd-note-text">
|
|
<?php echo esc_html__( 'Note: sending from Mandrill only works if the email you enter has been verified in Mandrill.', 'thrive-dash' ) ?>
|
|
<a href="https://mandrillapp.com/settings/sending-domains" target="_blank"><?php echo esc_html__( 'Learn more', 'thrive-dash' ) ?></a>.
|
|
</p>
|
|
</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>
|
|
|