| @@ -1,140 +1,143 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if ( !class_exists( 'MeowCommon_News' ) ) { | |
| 3 | +if ( !class_exists( 'MeowKit_MWCODE_News' ) ) { | |
| 4 | 4 | |
| 5 | - class MeowCommon_News { | |
| 6 | - private $domain = null; | |
| 7 | - private $topic = null; | |
| 8 | - private $fromDate = null; | |
| 9 | - private $toDate = null; | |
| 5 | + class MeowKit_MWCODE_News { | |
| 6 | + private $domain = null; | |
| 7 | + private $topic = null; | |
| 8 | + private $fromDate = null; | |
| 9 | + private $toDate = null; | |
| 10 | 10 | |
| 11 | - public function __construct( $domain ) { | |
| 12 | - $this->domain = $domain; | |
| 13 | - $this->topic = "mwai-1.0"; | |
| 14 | - $this->fromDate = new DateTime( '2023-02-01' ); | |
| 15 | - $this->toDate = new DateTime( '2023-06-01' ); | |
| 16 | - | |
| 11 | + public function __construct( $domain ) { | |
| 12 | + $this->domain = $domain; | |
| 13 | + $this->topic = 'mwai-1.0'; | |
| 14 | + $this->fromDate = new DateTime( '2023-02-01' ); | |
| 15 | + $this->toDate = new DateTime( '2023-06-01' ); | |
| 16 | + | |
| 17 | 17 | if ( is_admin() ) { |
| 18 | - // Time constraint for the news. | |
| 19 | - $now = new DateTime(); | |
| 20 | - if ( $now < $this->fromDate || $now > $this->toDate ) { | |
| 21 | - return; | |
| 22 | - } | |
| 18 | + // Time constraint for the news. | |
| 19 | + $now = new DateTime(); | |
| 20 | + if ( $now < $this->fromDate || $now > $this->toDate ) { | |
| 21 | + return; | |
| 22 | + } | |
| 23 | 23 | |
| 24 | - if ( isset( $_SESSION['meowapps_news_displayed'] ) ) { return; } | |
| 25 | - $_SESSION['meowapps_news_displayed'] = true; | |
| 24 | + // Use transient instead of session for better compatibility | |
| 25 | + $user_id = get_current_user_id(); | |
| 26 | + $transient_key = 'meowapps_news_displayed_' . $user_id; | |
| 27 | + if ( get_transient( $transient_key ) ) { | |
| 28 | + return; | |
| 29 | + } | |
| 30 | + set_transient( $transient_key, true, 12 * HOUR_IN_SECONDS ); | |
| 26 | 31 | |
| 27 | - // Other constraint for the news. | |
| 28 | - $mwai_options = get_option( 'mwai_options' ); | |
| 29 | - if ( !empty( $mwai_options ) ) { | |
| 30 | - return; | |
| 31 | - } | |
| 32 | + // Other constraint for the news. | |
| 33 | + $mwai_options = get_option( 'mwai_options' ); | |
| 34 | + if ( !empty( $mwai_options ) ) { | |
| 35 | + return; | |
| 36 | + } | |
| 32 | 37 | |
| 33 | - // Check the news date. | |
| 38 | + // Check the news date. | |
| 34 | 39 | $news_date = $this->retrieve_news_date(); |
| 35 | 40 | |
| 36 | - // THIS FROM PROD: | |
| 41 | + // THIS FROM PROD: | |
| 37 | 42 | if ( !empty( $news_date ) && time() > $news_date ) { |
| 38 | - add_action( 'admin_notices', array( $this, 'admin_notices_news' ) ); | |
| 39 | - add_filter( 'safe_style_css', function( $styles ) { | |
| 40 | - $styles[] = 'display'; | |
| 41 | - return $styles; | |
| 42 | - } ); | |
| 43 | + add_action( 'admin_notices', [ $this, 'admin_notices_news' ] ); | |
| 44 | + add_filter( 'safe_style_css', function ( $styles ) { | |
| 45 | + $styles[] = 'display'; | |
| 46 | + return $styles; | |
| 47 | + } ); | |
| 43 | 48 | } |
| 44 | 49 | } |
| 45 | - } | |
| 50 | + } | |
| 46 | 51 | |
| 47 | - function retrieve_news_date() { | |
| 48 | - $news = get_option( 'meowapps_news', [ 'topic' => $this->topic, 'date' => null ] ); | |
| 49 | - // New Topic or Fresh Option => Plan the news. | |
| 50 | - if ( $news['topic'] !== $this->topic || $news['date'] === null ) { | |
| 51 | - $two_days = strtotime( '+3 days' ); | |
| 52 | - $seven_days = strtotime( '+7 days' ); | |
| 53 | - $news['topic'] = $this->topic; | |
| 54 | - $news['date'] = mt_rand( $two_days, $seven_days ); | |
| 55 | - update_option( 'meowapps_news', $news, false ); | |
| 56 | - } | |
| 57 | - return $news['date']; | |
| 58 | - } | |
| 52 | + public function retrieve_news_date() { | |
| 53 | + $news = get_option( 'meowapps_news', [ 'topic' => $this->topic, 'date' => null ] ); | |
| 54 | + // New Topic or Fresh Option => Plan the news. | |
| 55 | + if ( $news['topic'] !== $this->topic || $news['date'] === null ) { | |
| 56 | + $two_days = strtotime( '+3 days' ); | |
| 57 | + $seven_days = strtotime( '+7 days' ); | |
| 58 | + $news['topic'] = $this->topic; | |
| 59 | + $news['date'] = mt_rand( $two_days, $seven_days ); | |
| 60 | + update_option( 'meowapps_news', $news, false ); | |
| 61 | + } | |
| 62 | + return $news['date']; | |
| 63 | + } | |
| 59 | 64 | |
| 60 | - function admin_notices_news() { | |
| 61 | - if ( isset( $_POST['meowapps_remind_me'] ) ) { | |
| 62 | - $news = get_option( 'meowapps_news' ); | |
| 63 | - $twelve_hours = strtotime( '+12 hours' ); | |
| 64 | - $thirtysix_hours = strtotime( '+36 hours' ); | |
| 65 | - $news['date'] = mt_rand( $twelve_hours, $thirtysix_hours ); | |
| 66 | - update_option( 'meowapps_news', $news, false ); | |
| 67 | - return; | |
| 68 | - } | |
| 69 | - else if ( isset( $_POST['meowapps_done_it'] ) ) { | |
| 70 | - $news = get_option( 'meowapps_news' ); | |
| 71 | - $news['date'] = ""; | |
| 72 | - update_option( 'meowapps_news', $news, false ); | |
| 73 | - return; | |
| 74 | - } | |
| 75 | - $html = wp_kses_post( '<div class="notice notice-success" style="margin: 20px 0;">' ); | |
| 76 | - $html .= '<p style="font-size: 100%;">'; | |
| 65 | + public function admin_notices_news() { | |
| 66 | + if ( isset( $_POST['meowapps_remind_me'] ) ) { | |
| 67 | + $news = get_option( 'meowapps_news' ); | |
| 68 | + $twelve_hours = strtotime( '+12 hours' ); | |
| 69 | + $thirtysix_hours = strtotime( '+36 hours' ); | |
| 70 | + $news['date'] = mt_rand( $twelve_hours, $thirtysix_hours ); | |
| 71 | + update_option( 'meowapps_news', $news, false ); | |
| 72 | + return; | |
| 73 | + } | |
| 74 | + else if ( isset( $_POST['meowapps_done_it'] ) ) { | |
| 75 | + $news = get_option( 'meowapps_news' ); | |
| 76 | + $news['date'] = ''; | |
| 77 | + update_option( 'meowapps_news', $news, false ); | |
| 78 | + return; | |
| 79 | + } | |
| 80 | + $html = wp_kses_post( '<div class="notice notice-success" style="margin: 20px 0;">' ); | |
| 81 | + $html .= '<p style="font-size: 100%;">'; | |
| 77 | 82 | |
| 78 | - // Title | |
| 79 | - $html .= sprintf( __( '<h2 style="margin: 0 0 10px 0" class="title">AI Engine by Meow Apps: The Power of AI into WordPress 💫</h2>' ) ); | |
| 83 | + // Title | |
| 84 | + $html .= sprintf( __( '<h2 style="margin: 0 0 10px 0" class="title">AI Engine by Meow Apps: The Power of AI into WordPress 💫</h2>' ) ); | |
| 80 | 85 | |
| 81 | - // Content | |
| 82 | - $html .= sprintf( __( '<p style="font-size: 14px;">Since the end of 2022, I worked a lot to craft <b>the perfect AI plugin for WordPress</b>. Since March 2023, it\'s perfectly stable and packed with features. You\'ll get chatbots, AI forms, easy model training, content and images generation, a template system that will allow you to create your personal assistants for various tasks and much more! Here it is: <a href="%s" target="_blank">AI Engine</a>. Believe me, you will enjoy this. Have fun, and let me know how it goes! 🥳</p>', $this->domain ), 'https://wordpress.org/plugins/ai-engine/' ); | |
| 86 | + // Content | |
| 87 | + $html .= sprintf( __( '<p style="font-size: 14px;">Since the end of 2022, I worked a lot to craft <b>the perfect AI plugin for WordPress</b>. Since March 2023, it\'s perfectly stable and packed with features. You\'ll get chatbots, AI forms, easy model training, content and images generation, a template system that will allow you to create your personal assistants for various tasks and much more! Here it is: <a href="%s" target="_blank">AI Engine</a>. Believe me, you will enjoy this. Have fun, and let me know how it goes! 🥳</p>', $this->domain ), 'https://wordpress.org/plugins/ai-engine/' ); | |
| 83 | 88 | |
| 84 | - // Buttons | |
| 85 | - $html .= '<div style="padding: 10px 0 12px 0; display: flex; align-items: center;">'; | |
| 86 | - $html .= '<a href="https://wordpress.org/plugins/ai-engine/" target="_blank" class="button button-primary" style="margin-right: 10px;">' | |
| 87 | - . __( '👉 AI Engine at WordPress.org', $this->domain ) . '</a>'; | |
| 88 | - $html .= '<form method="post" action="" style="margin-right: 10px;"> | |
| 89 | - <input type="hidden" name="meowapps_remind_me" value="true"> | |
| 90 | - <input type="submit" name="submit" id="submit" class="button button-primary" value="' | |
| 91 | - . __( '⏰ Remind me later', $this->domain ) . '"></form>'; | |
| 92 | - $html .= '<div style="flex: auto;"></div>'; | |
| 93 | - $html .= '<form method="post" action=""> | |
| 94 | - <input type="hidden" name="meowapps_done_it" value="true"> | |
| 95 | - <input type="submit" name="submit" id="submit" class="button" value="' | |
| 96 | - . __( '❌ Delete', $this->domain ) . '"> | |
| 97 | - </form> | |
| 98 | - </div>'; | |
| 99 | - $html .= '</div>'; | |
| 89 | + // Buttons | |
| 90 | + $html .= '<div style="padding: 10px 0 12px 0; display: flex; align-items: center;">'; | |
| 91 | + $html .= '<a href="https://wordpress.org/plugins/ai-engine/" target="_blank" class="button button-primary" style="margin-right: 10px;">' | |
| 92 | + . __( '👉 AI Engine at WordPress.org', $this->domain ) . '</a>'; | |
| 93 | + $html .= '<form method="post" action="" style="margin-right: 10px;"> | |
| 94 | + <input type="hidden" name="meowapps_remind_me" value="true"> | |
| 95 | + <input type="submit" name="submit" id="submit" class="button button-primary" value="' | |
| 96 | + . __( '⏰ Remind me later', $this->domain ) . '"></form>'; | |
| 97 | + $html .= '<div style="flex: auto;"></div>'; | |
| 98 | + $html .= '<form method="post" action=""> | |
| 99 | + <input type="hidden" name="meowapps_done_it" value="true"> | |
| 100 | + <input type="submit" name="submit" id="submit" class="button" value="' | |
| 101 | + . __( '❌ Delete', $this->domain ) . '"> | |
| 102 | + </form> | |
| 103 | + </div>'; | |
| 104 | + $html .= '</div>'; | |
| 100 | 105 | |
| 101 | - // Escape the output | |
| 102 | - echo wp_kses( $html, array( | |
| 103 | - 'div' => array( | |
| 104 | - 'class' => array(), | |
| 105 | - 'style' => array(), | |
| 106 | - ), | |
| 107 | - 'p' => array( | |
| 108 | - 'style' => array(), | |
| 109 | - ), | |
| 110 | - 'h2' => array( | |
| 111 | - 'class' => array(), | |
| 112 | - 'style' => array() | |
| 113 | - ), | |
| 114 | - 'b' => array(), | |
| 115 | - 'br' => array(), | |
| 116 | - 'a' => array( | |
| 117 | - 'href' => array(), | |
| 118 | - 'target' => array(), | |
| 119 | - 'class' => array(), | |
| 120 | - 'style' => array(), | |
| 121 | - ), | |
| 122 | - 'form' => array( | |
| 123 | - 'method' => array(), | |
| 124 | - 'action' => array(), | |
| 125 | - 'class' => array(), | |
| 126 | - 'style' => array(), | |
| 127 | - ), | |
| 128 | - 'input' => array( | |
| 129 | - 'type' => array(), | |
| 130 | - 'name' => array(), | |
| 131 | - 'value' => array(), | |
| 132 | - 'id' => array(), | |
| 133 | - 'class' => array(), | |
| 134 | - ), | |
| 135 | - ) ); | |
| 136 | - } | |
| 137 | - } | |
| 106 | + // Escape the output | |
| 107 | + echo wp_kses( $html, [ | |
| 108 | + 'div' => [ | |
| 109 | + 'class' => [], | |
| 110 | + 'style' => [], | |
| 111 | + ], | |
| 112 | + 'p' => [ | |
| 113 | + 'style' => [], | |
| 114 | + ], | |
| 115 | + 'h2' => [ | |
| 116 | + 'class' => [], | |
| 117 | + 'style' => [] | |
| 118 | + ], | |
| 119 | + 'b' => [], | |
| 120 | + 'br' => [], | |
| 121 | + 'a' => [ | |
| 122 | + 'href' => [], | |
| 123 | + 'target' => [], | |
| 124 | + 'class' => [], | |
| 125 | + 'style' => [], | |
| 126 | + ], | |
| 127 | + 'form' => [ | |
| 128 | + 'method' => [], | |
| 129 | + 'action' => [], | |
| 130 | + 'class' => [], | |
| 131 | + 'style' => [], | |
| 132 | + ], | |
| 133 | + 'input' => [ | |
| 134 | + 'type' => [], | |
| 135 | + 'name' => [], | |
| 136 | + 'value' => [], | |
| 137 | + 'id' => [], | |
| 138 | + 'class' => [], | |
| 139 | + ], | |
| 140 | + ] ); | |
| 141 | + } | |
| 142 | + } | |
| 138 | 143 | } |
| 139 | - | |
| 140 | -?> | |