39341-vm/wp-content/plugins/stripe-payments/admin/includes/class-asp-admin-user-feedback.php
2026-03-26 12:55:30 +00:00

188 lines
5.9 KiB
PHP

<?php
/**
* Asking users for their experience with the plugin.
*/
class ASP_Admin_User_Feedback {
/**
* The wp option for notice dismissal data.
*/
const OPTION_NAME = 'asp_plugin_user_feedback_notice';
/**
* How many days after activation it should display the user feedback notice.
*/
const DELAY_NOTICE = 14;
/**
* Initialize user feedback notice functionality.
*/
public function init() {
add_action( 'admin_notices', array( $this, 'maybe_display' ) );
add_action( 'wp_ajax_asp_feedback_notice_dismiss', array( $this, 'feedback_notice_dismiss' ) );
}
/**
* Maybe display the user feedback notice.
*/
public function maybe_display() {
// Only admin users should see the feedback notice.
if ( ! is_super_admin() ) {
return;
}
$options = get_option( self::OPTION_NAME );
// Set default options.
if ( empty( $options ) ) {
$options = array(
'time' => time(),
'dismissed' => false,
);
update_option( self::OPTION_NAME, $options );
}
// Check if the feedback notice was not dismissed already.
if ( isset( $options['dismissed'] ) && ! $options['dismissed'] ) {
$this->display();
}
}
/**
* Display the user feedback notice.
*/
private function display() {
// Skip if plugin is not being utilized.
if ( ! $this->is_plugin_configured() ) {
return;
}
// Fetch when plugin was initially activated.
$activated = get_option( 'asp_plugin_activated_time' );
if(empty($activated)){
add_option( 'asp_plugin_activated_time', time() );
}
// Skip if the plugin is active for less than a defined number of days.
if ( empty( $activated ) || ( $activated + ( DAY_IN_SECONDS * self::DELAY_NOTICE ) ) > time() ) {
// Not enough time;
return;
}
?>
<div class="notice notice-info is-dismissible asp-plugin-review-notice">
<div class="asp-plugin-review-step asp-plugin-review-step-1">
<p><?php esc_html_e( 'Are you enjoying the Accept Stripe Payments plugin?', 'stripe-payments' ); ?></p>
<p>
<a href="#" class="asp-plugin-review-switch-step" data-step="3"><?php esc_html_e( 'Yes', 'stripe-payments' ); ?></a><br />
<a href="#" class="asp-plugin-review-switch-step" data-step="2"><?php esc_html_e( 'Not Really', 'stripe-payments' ); ?></a>
</p>
</div>
<div class="asp-plugin-review-step asp-plugin-review-step-2" style="display: none">
<p><?php esc_html_e( 'We\'re sorry to hear you aren\'t enjoying the Accept Stripe Payments plugin. We would love a chance to improve. Could you take a minute and let us know what we can do better by using our contact form? ', 'stripe-payments' ); ?></p>
<p>
<?php
printf(
'<a href="https://s-plugins.com/contact-us/" class="asp-plugin-dismiss-review-notice asp-plugin-review-out" target="_blank" rel="noopener noreferrer">%s</a>',
esc_html__( 'Give Feedback', 'stripe-payments' )
);
?>
<br>
<a href="#" class="asp-plugin-dismiss-review-notice" target="_blank" rel="noopener noreferrer">
<?php esc_html_e( 'No thanks', 'stripe-payments' ); ?>
</a>
</p>
</div>
<div class="asp-plugin-review-step asp-plugin-review-step-3" style="display: none">
<p><?php esc_html_e( 'That\'s great! Could you please do me a big favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'stripe-payments' ); ?></p>
<p><strong><?php esc_html_e( '~ Accept Stripe Payments Plugin Team', 'stripe-payments' ) ?></strong></p>
<p>
<a href="https://wordpress.org/support/plugin/stripe-payments/reviews/?filter=5#new-post" class="asp-plugin-dismiss-review-notice asp-plugin-review-out" target="_blank" rel="noopener noreferrer">
<?php esc_html_e( 'OK, you deserve it', 'stripe-payments' ); ?>
</a><br>
<a href="#" class="asp-plugin-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Nope, maybe later', 'stripe-payments' ); ?></a><br>
<a href="#" class="asp-plugin-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'I already did', 'stripe-payments' ); ?></a>
</p>
</div>
</div>
<script type="text/javascript">
jQuery( document ).ready( function ( $ ) {
$( document ).on( 'click', '.asp-plugin-dismiss-review-notice, .asp-plugin-review-notice button', function( e ) {
if ( ! $( this ).hasClass( 'asp-plugin-review-out' ) ) {
e.preventDefault();
}
$.post( ajaxurl, { action: 'asp_feedback_notice_dismiss' } );
$( '.asp-plugin-review-notice' ).remove();
} );
$( document ).on( 'click', '.asp-plugin-review-switch-step', function( e ) {
e.preventDefault();
var target = parseInt( $( this ).attr( 'data-step' ), 10 );
if ( target ) {
var $notice = $( this ).closest( '.asp-plugin-review-notice' );
var $review_step = $notice.find( '.asp-plugin-review-step-' + target );
if ( $review_step.length > 0 ) {
$notice.find( '.asp-plugin-review-step:visible' ).fadeOut( function() {
$review_step.fadeIn();
} );
}
}
} );
} );
</script>
<?php
}
/**
* Check if the crucial plugin setting are configured.
*
* @return bool
*/
public function is_plugin_configured() {
$loop = new WP_Query(
array(
'post_type' => ASPMain::$products_slug,
'post_status' => 'publish',
'posts_per_page' => -1,
)
);
if( $loop->have_posts() ){
//Products have been configured.
return true;
}
return false;
}
/**
* Dismiss the user feedback admin notice.
*/
public function feedback_notice_dismiss() {
$options = get_option( self::OPTION_NAME, array() );
$options['time'] = time();
$options['dismissed'] = true;
update_option( self::OPTION_NAME, $options );
if ( is_super_admin() && is_multisite() ) {
$site_list = get_sites();
foreach ( (array) $site_list as $site ) {
switch_to_blog( $site->blog_id );
update_option( self::OPTION_NAME, $options );
restore_current_blog();
}
}
wp_send_json_success();
}
}