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