PluginProbe
SEO Engine – Smart SEO with AI, Schema & Redirection for WordPress / 0.9.4
SEO Engine – Smart SEO with AI, Schema & Redirection for WordPress v0.9.4
0.9.4 0.9.3 0.9.2 0.9.1 0.9.0 0.8.9 0.8.8 0.8.7 0.8.6 0.8.5 0.8.4 0.8.2 0.8.1 0.7.9 0.8.0 0.7.7 0.7.8 0.7.6 0.7.5 0.7.4 0.7.3 0.7.2 0.7.1 0.7.0 0.6.5 All 88 releases
seo-engine / common / news.php

news.php in SEO Engine – Smart SEO with AI, Schema & Redirection for WordPress 0.9.4, at common/news.php

149 lines 6.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( !class_exists( 'MeowKit_MWSEO_News' ) ) {
4
5 class MeowKit_MWSEO_News {
6 private $domain = null;
7 private $topic = null;
8 private $fromDate = null;
9 private $toDate = null;
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
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 }
23
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 );
31
32 // Other constraint for the news.
33 $mwai_options = get_option( 'mwai_options' );
34 if ( !empty( $mwai_options ) ) {
35 return;
36 }
37
38 // Check the news date.
39 $news_date = $this->retrieve_news_date();
40
41 // THIS FROM PROD:
42 if ( !empty( $news_date ) && time() > $news_date ) {
43 add_action( 'admin_notices', [ $this, 'admin_notices_news' ] );
44 add_filter( 'safe_style_css', function ( $styles ) {
45 $styles[] = 'display';
46 return $styles;
47 } );
48 }
49 }
50 }
51
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 }
64
65 public function admin_notices_news() {
66 // Verify the nonce before acting on the news-notice buttons (CSRF protection).
67 $nonce_ok = isset( $_POST['meowapps_news_nonce'] )
68 && wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['meowapps_news_nonce'] ) ), 'meowapps_news' );
69 if ( $nonce_ok && isset( $_POST['meowapps_remind_me'] ) ) {
70 $news = get_option( 'meowapps_news' );
71 $twelve_hours = strtotime( '+12 hours' );
72 $thirtysix_hours = strtotime( '+36 hours' );
73 $news['date'] = mt_rand( $twelve_hours, $thirtysix_hours );
74 update_option( 'meowapps_news', $news, false );
75 return;
76 }
77 else if ( $nonce_ok && isset( $_POST['meowapps_done_it'] ) ) {
78 $news = get_option( 'meowapps_news' );
79 $news['date'] = '';
80 update_option( 'meowapps_news', $news, false );
81 return;
82 }
83 $html = wp_kses_post( '<div class="notice notice-success" style="margin: 20px 0;">' );
84 $html .= '<p style="font-size: 100%;">';
85
86 // Title
87 $html .= sprintf( __( '<h2 style="margin: 0 0 10px 0" class="title">AI Engine by Meow Apps: The Power of AI into WordPress 💫</h2>', $this->domain ) );
88
89 // Content
90 $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/' );
91
92 $news_nonce = esc_attr( wp_create_nonce( 'meowapps_news' ) );
93
94 // Buttons
95 $html .= '<div style="padding: 10px 0 12px 0; display: flex; align-items: center;">';
96 $html .= '<a href="https://wordpress.org/plugins/ai-engine/" target="_blank" class="button button-primary" style="margin-right: 10px;">'
97 . __( '👉 AI Engine at WordPress.org', $this->domain ) . '</a>';
98 $html .= '<form method="post" action="" style="margin-right: 10px;">
99 <input type="hidden" name="meowapps_remind_me" value="true"><input type="hidden" name="meowapps_news_nonce" value="' . $news_nonce . '">
100 <input type="submit" name="submit" id="submit" class="button button-primary" value="'
101 . __( '⏰ Remind me later', $this->domain ) . '"></form>';
102 $html .= '<div style="flex: auto;"></div>';
103 $html .= '<form method="post" action="">
104 <input type="hidden" name="meowapps_done_it" value="true"><input type="hidden" name="meowapps_news_nonce" value="' . $news_nonce . '">
105 <input type="submit" name="submit" id="submit" class="button" value="'
106 . __( '❌ Delete', $this->domain ) . '">
107 </form>
108 </div>';
109 $html .= '</div>';
110
111 // Escape the output
112 echo wp_kses( $html, [
113 'div' => [
114 'class' => [],
115 'style' => [],
116 ],
117 'p' => [
118 'style' => [],
119 ],
120 'h2' => [
121 'class' => [],
122 'style' => []
123 ],
124 'b' => [],
125 'br' => [],
126 'a' => [
127 'href' => [],
128 'target' => [],
129 'class' => [],
130 'style' => [],
131 ],
132 'form' => [
133 'method' => [],
134 'action' => [],
135 'class' => [],
136 'style' => [],
137 ],
138 'input' => [
139 'type' => [],
140 'name' => [],
141 'value' => [],
142 'id' => [],
143 'class' => [],
144 ],
145 ] );
146 }
147 }
148 }
149