admin.php
2 years ago
helpers.php
1 year ago
issues.php
2 years ago
news.php
3 years ago
ratings.php
1 year ago
releases.txt
2 years ago
rest.php
2 years ago
ratings.php
185 lines
| 1 | <?php |
| 2 | |
| 3 | if ( !class_exists( 'MeowCommon_Ratings' ) ) { |
| 4 | |
| 5 | class MeowCommon_Ratings { |
| 6 | |
| 7 | public $mainfile; // plugin main file (media-file-renamer.php) |
| 8 | public $domain; // domain used for translation (media-file-renamer) |
| 9 | public $prefix; // used for many things (filters, options, etc) |
| 10 | public $ignored_domains = [ 'mwai-*' ]; |
| 11 | |
| 12 | public function __construct( $prefix, $mainfile, $domain ) { |
| 13 | $this->mainfile = $mainfile; |
| 14 | $this->domain = $domain; |
| 15 | $this->prefix = $prefix; |
| 16 | |
| 17 | if ( array_search( $this->domain, $this->ignored_domains ) !== false ) { |
| 18 | return; |
| 19 | } |
| 20 | foreach ( $this->ignored_domains as $ignored_domain ) { |
| 21 | if ( strpos( $ignored_domain, '*' ) !== false ) { |
| 22 | $ignored_domain = str_replace( '*', '', $ignored_domain ); |
| 23 | if ( strpos( $this->domain, $ignored_domain ) !== false ) { |
| 24 | return; |
| 25 | } |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | // Add the hooks |
| 30 | register_activation_hook( $mainfile, array( $this, 'show_meowapps_create_rating_date' ) ); |
| 31 | if ( is_admin() ) { |
| 32 | $rating_date = $this->create_rating_date(); |
| 33 | if ( time() > $rating_date ) { |
| 34 | add_action( 'admin_notices', array( $this, 'admin_notices_rating' ) ); |
| 35 | add_filter( 'safe_style_css', function( $styles ) { |
| 36 | $styles[] = 'display'; |
| 37 | return $styles; |
| 38 | } ); |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | function show_meowapps_create_rating_date() { |
| 44 | delete_option( 'meowapps_hide_meowapps' ); |
| 45 | $this->create_rating_date(); |
| 46 | } |
| 47 | |
| 48 | function create_rating_date() { |
| 49 | $rating_date = get_option( $this->prefix . '_rating_date' ); |
| 50 | if ( empty( $rating_date ) ) { |
| 51 | $two_weeks = strtotime( '+2 weeks' ); |
| 52 | $three_weeks = strtotime( '+3 weeks' ); |
| 53 | $rating_date = mt_rand( $two_weeks, $three_weeks ); |
| 54 | update_option( $this->prefix . '_rating_date', $rating_date, false ); |
| 55 | } |
| 56 | return $rating_date; |
| 57 | } |
| 58 | |
| 59 | function admin_notices_rating() { |
| 60 | if ( isset( $_POST[$this->prefix . '_remind_me'] ) ) { |
| 61 | $two_weeks = strtotime( '+2 weeks' ); |
| 62 | $six_weeks = strtotime( '+6 weeks' ); |
| 63 | $future_date = mt_rand( $two_weeks, $six_weeks ); |
| 64 | update_option( $this->prefix . '_rating_date', $future_date, false ); |
| 65 | return; |
| 66 | } |
| 67 | else if ( isset( $_POST[$this->prefix . '_never_remind_me'] ) ) { |
| 68 | $twenty_years = strtotime( '+5 years' ); |
| 69 | update_option( $this->prefix . '_rating_date', $twenty_years, false ); |
| 70 | return; |
| 71 | } |
| 72 | else if ( isset( $_POST[$this->prefix . '_did_it'] ) ) { |
| 73 | $twenty_years = strtotime( '+100 years' ); |
| 74 | update_option( $this->prefix . '_rating_date', $twenty_years, false ); |
| 75 | return; |
| 76 | } |
| 77 | $rating_date = get_option( $this->prefix . '_rating_date' ); |
| 78 | $html = wp_kses_post( '<div class="notice notice-success" data-rating-date="' . |
| 79 | date( 'Y-m-d', $rating_date ) . '">' ); |
| 80 | $esc_nice_name = esc_attr( $this->nice_name_from_file( $this->mainfile ) ); |
| 81 | if ( $esc_nice_name === 'Wp Retina 2x Pro' ) { |
| 82 | $esc_nice_name = "Perfect Images"; |
| 83 | } |
| 84 | else if ( $esc_nice_name === 'Wp Retina 2x' ) { |
| 85 | $esc_nice_name = "Perfect Images"; |
| 86 | } |
| 87 | else if ( $esc_nice_name === 'Ai Engine Pro' ) { |
| 88 | $esc_nice_name = "AI Engine"; |
| 89 | } |
| 90 | $esc_short_url = esc_attr( $this->nice_short_url_from_file( $this->mainfile ) ); |
| 91 | $escaped_prefix = $this->prefix; |
| 92 | $html .= '<p style="font-size: 100%;">'; |
| 93 | // Translators: %1$s is a plugin nicename, %2$s is a short url (slug) |
| 94 | $url = 'https://wordpress.org/support/plugin/' . $esc_short_url . '/reviews/?rate=5#new-post'; |
| 95 | $html .= sprintf( |
| 96 | __( '<h2 style="margin: 0" class="title">You have been using <b>%1$s</b> for some time now. Thank you! 💕</h2><p>If you have a minute, can you write a <b><a target="_blank" href="' . $url . '">little review</a></b> for me? That would <b>really</b> bring me joy and motivation! 💫 <br />Don\'t hesitate to <b>share your feature requests</b> with the review, I always check them and try my best.</p> |
| 97 | ', $this->domain ), $esc_nice_name |
| 98 | ); |
| 99 | $html .= '<div style="padding: 5px 0 12px 0; display: flex; align-items: center;">'; |
| 100 | $html .= '<a target="_blank" class="button button-primary" style="margin-right: 10px;" href="' . $url . '"> |
| 101 | ✏️ Write Review |
| 102 | </a> |
| 103 | <form method="post" action="" style="margin-right: 10px;"> |
| 104 | <input type="hidden" name="' . $escaped_prefix . '_did_it" value="true"> |
| 105 | <input type="submit" name="submit" id="submit" class="button button-secondary" value="' |
| 106 | . __( '✌️ Done!', $this->domain ) . '"> |
| 107 | </form> |
| 108 | |
| 109 | <div style="flex: auto;"></div> |
| 110 | |
| 111 | <form method="post" action="" style="margin-right: 10px;"> |
| 112 | <input type="hidden" name="' . $escaped_prefix . '_remind_me" value="true"> |
| 113 | <input type="submit" name="submit" id="submit" class="button button-secondary" value="' |
| 114 | . __( '⏰ Remind me later', $this->domain ) . '"> |
| 115 | </form> |
| 116 | |
| 117 | <form method="post" action=""> |
| 118 | <input type="hidden" name="' . $escaped_prefix . '_never_remind_me" value="true"> |
| 119 | <input type="submit" name="submit" id="submit" class="button-link" style="font-size: small;" value="' |
| 120 | . __( 'Hide', $this->domain ) . '"> |
| 121 | </form> |
| 122 | </div>'; |
| 123 | $html .= '</div>'; |
| 124 | echo wp_kses( $html, array( |
| 125 | 'div' => array( |
| 126 | 'class' => array(), |
| 127 | 'data-rating-date' => array(), |
| 128 | 'style' => array(), |
| 129 | ), |
| 130 | 'p' => array( |
| 131 | 'style' => array(), |
| 132 | ), |
| 133 | 'h2' => array( |
| 134 | 'class' => array(), |
| 135 | 'style' => array() |
| 136 | ), |
| 137 | 'b' => array(), |
| 138 | 'br' => array(), |
| 139 | 'a' => array( |
| 140 | 'href' => array(), |
| 141 | 'target' => array(), |
| 142 | 'class' => array(), |
| 143 | 'style' => array(), |
| 144 | ), |
| 145 | 'form' => array( |
| 146 | 'method' => array(), |
| 147 | 'action' => array(), |
| 148 | 'class' => array(), |
| 149 | 'style' => array(), |
| 150 | ), |
| 151 | 'input' => array( |
| 152 | 'type' => array(), |
| 153 | 'name' => array(), |
| 154 | 'value' => array(), |
| 155 | 'id' => array(), |
| 156 | 'class' => array(), |
| 157 | ), |
| 158 | ) ); |
| 159 | } |
| 160 | |
| 161 | function nice_short_url_from_file( $file ) { |
| 162 | $info = pathinfo( $file ); |
| 163 | if ( !empty( $info ) ) { |
| 164 | $info['filename'] = str_replace( '-pro', '', $info['filename'] ); |
| 165 | return $info['filename']; |
| 166 | } |
| 167 | return ""; |
| 168 | } |
| 169 | |
| 170 | function nice_name_from_file( $file ) { |
| 171 | $info = pathinfo( $file ); |
| 172 | if ( !empty( $info ) ) { |
| 173 | if ( $info['filename'] == 'wplr-sync' ) { |
| 174 | return "Photo Engine"; |
| 175 | } |
| 176 | $info['filename'] = str_replace( '-', ' ', $info['filename'] ); |
| 177 | $file = ucwords( $info['filename'] ); |
| 178 | } |
| 179 | return $file; |
| 180 | } |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | ?> |
| 185 |