C:\xampp\htdocs\landing\wp-content\plugins\google-analytics-for-wordpress\includes\admin\review.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php
/**
 * Ask for some love.
 *
 * @package    MonsterInsights
 * @author     MonsterInsights
 * @since      7.0.7
 * @license    GPL-2.0+
 * @copyright  Copyright (c) 2018, MonsterInsights LLC
 */
class MonsterInsights_Review {
    
/**
     * Primary class constructor.
     *
     * @since 7.0.7
     */
    
public function __construct() {
        
// Admin notice requesting review.
        
add_action'admin_notices', array( $this'review_request' ) );
        
add_action'wp_ajax_monsterinsights_review_dismiss', array( $this'review_dismiss' ) );
    }
    
/**
     * Add admin notices as needed for reviews.
     *
     * @since 7.0.7
     */
    
public function review_request() {
        
// Only consider showing the review request to admin users.
        
if ( ! is_super_admin() ) {
            return;
        }

        
// If the user has opted out of product annoucement notifications, don't
        // display the review request.
        
if ( monsterinsights_get_option'hide_am_notices'false ) || monsterinsights_get_option'network_hide_am_notices'false ) ) {
            return;
        }
        
// Verify that we can do a check for reviews.
        
$review get_option'monsterinsights_review' );
        
$time   time();
        
$load   false;

        if ( ! 
$review ) {
            
$review = array(
                
'time'      => $time,
                
'dismissed' => false,
            );
            
update_option'monsterinsights_review'$review );
        } else {
            
// Check if it has been dismissed or not.
            
if ( ( isset( $review['dismissed'] ) && ! $review['dismissed'] ) && ( isset( $review['time'] ) && ( ( $review['time'] + DAY_IN_SECONDS ) <= $time ) ) ) {
                
$load true;
            }
        }

        
// If we cannot load, return early.
        
if ( ! $load ) {
            return;
        }

        
$this->review();
    }

    
/**
     * Maybe show review request.
     *
     * @since 7.0.7
     */
    
public function review() {
        
// Fetch when plugin was initially installed.
        
$activated get_option'monsterinsights_over_time', array() );
        
$ua_code   monsterinsights_get_ua();

        if ( ! empty( 
$activated['connected_date'] ) ) {
            
// Only continue if plugin has been tracking for at least 14 days.
            
$days 14;
            if ( 
monsterinsights_get_option'gadwp_migrated') > ) {
                
$days 21;
            }
            if ( ( 
$activated['connected_date'] + ( DAY_IN_SECONDS $days ) ) > time() ) {
                return;
            }
        } else {
            if ( empty( 
$activated ) ) {
                
$data = array(
                    
'installed_version' => MONSTERINSIGHTS_VERSION,
                    
'installed_date'    => time(),
                    
'installed_pro'     => monsterinsights_is_pro_version(),
                );
            } else {
                
$data $activated;
            }
            
// If already has a UA code mark as connected now.
            
if ( ! empty( $ua_code ) ) {
                
$data['connected_date'] = time();
            }

            
update_option'monsterinsights_over_time'$data );
            return;
        }

        
// Only proceed with displaying if the user is tracking.
        
if ( empty( $ua_code ) ) {
            return;
        }

        
$feedback_url add_query_arg( array(
            
'wpf192157_24' => untrailingslashithome_url() ),
            
'wpf192157_26' => monsterinsights_get_license_key(),
            
'wpf192157_27' => monsterinsights_is_pro_version() ? 'pro' 'lite',
            
'wpf192157_28' => MONSTERINSIGHTS_VERSION,
        ), 
'https://www.monsterinsights.com/plugin-feedback/' );
        
$feedback_url monsterinsights_get_url'review-notice''feedback'$feedback_url );
        
// We have a candidate! Output a review message.
        
?>
        <div class="notice notice-info is-dismissible monsterinsights-review-notice">
            <div class="monsterinsights-review-step monsterinsights-review-step-1">
                <p><?php esc_html_e'Are you enjoying MonsterInsights?''google-analytics-for-wordpress' ); ?></p>
                <p>
                    <a href="#" class="monsterinsights-review-switch-step" data-step="3"><?php esc_html_e'Yes''google-analytics-for-wordpress' ); ?></a><br />
                    <a href="#" class="monsterinsights-review-switch-step" data-step="2"><?php esc_html_e'Not Really''google-analytics-for-wordpress' ); ?></a>
                </p>
            </div>
            <div class="monsterinsights-review-step monsterinsights-review-step-2" style="display: none">
                <p><?php esc_html_e'We\'re sorry to hear you aren\'t enjoying MonsterInsights. We would love a chance to improve. Could you take a minute and let us know what we can do better?''google-analytics-for-wordpress' ); ?></p>
                <p>
                    <a href="<?php echo esc_url$feedback_url ); ?>" class="monsterinsights-dismiss-review-notice monsterinsights-review-out"><?php esc_html_e'Give Feedback''google-analytics-for-wordpress' ); ?></a><br>
                    <a href="#" class="monsterinsights-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e'No thanks''google-analytics-for-wordpress' ); ?></a>
                </p>
            </div>
            <div class="monsterinsights-review-step monsterinsights-review-step-3" style="display: none">
                <p><?php esc_html_e'That’s awesome! 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?''google-analytics-for-wordpress' ); ?></p>
                <p><strong><?php echo wp_kses__'~ Syed Balkhi<br>Co-Founder of MonsterInsights''google-analytics-for-wordpress' ), array( 'br' => array() ) ); ?></strong></p>
                <p>
                    <a href="https://wordpress.org/support/plugin/google-analytics-for-wordpress/reviews/?filter=5#new-post" class="monsterinsights-dismiss-review-notice monsterinsights-review-out" target="_blank" rel="noopener noreferrer"><?php esc_html_e'Ok, you deserve it''google-analytics-for-wordpress' ); ?></a><br>
                    <a href="#" class="monsterinsights-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e'Nope, maybe later''google-analytics-for-wordpress' ); ?></a><br>
                    <a href="#" class="monsterinsights-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e'I already did''google-analytics-for-wordpress' ); ?></a>
                </p>
            </div>
        </div>
        <script type="text/javascript">
            jQuery( document ).ready( function ( $ ) {
                $( document ).on( 'click', '.monsterinsights-dismiss-review-notice, .monsterinsights-review-notice button', function ( event ) {
                    if ( ! $( this ).hasClass( 'monsterinsights-review-out' ) ) {
                        event.preventDefault();
                    }
                    $.post( ajaxurl, {
                        action: 'monsterinsights_review_dismiss'
                    } );
                    $( '.monsterinsights-review-notice' ).remove();
                } );

                $( document ).on( 'click', '.monsterinsights-review-switch-step', function ( e ) {
                    e.preventDefault();
                    var target = $( this ).attr( 'data-step' );
                    if ( target ) {
                        var notice = $( this ).closest( '.monsterinsights-review-notice' );
                        var review_step = notice.find( '.monsterinsights-review-step-' + target );
                        if ( review_step.length > 0 ) {
                            notice.find( '.monsterinsights-review-step:visible').fadeOut( function (  ) {
                                review_step.fadeIn();
                            });
                        }
                    }
                })
            } );
        </script>
        <?php
    
}
    
/**
     * Dismiss the review admin notice
     *
     * @since 7.0.7
     */
    
public function review_dismiss() {
        
$review              get_option'monsterinsights_review', array() );
        
$review['time']      = time();
        
$review['dismissed'] = true;
        
update_option'monsterinsights_review'$review );

        if ( 
is_super_admin() && is_multisite() ) {
            
$site_list get_sites();
            foreach ( (array) 
$site_list as $site ) {
                
switch_to_blog$site->blog_id );

                
update_option'monsterinsights_review'$review );

                
restore_current_blog();
            }
        }

        die;
    }
}

new 
MonsterInsights_Review();
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586