PluginProbe
Code Engine – PHP Snippets, AI Functions & Automation for WordPress / trunk
Code Engine – PHP Snippets, AI Functions & Automation for WordPress vtrunk
0.5.7 0.5.6 0.5.5 0.5.4 0.5.3 0.5.2 0.5.1 0.5.0 0.4.9 0.4.8 0.4.7 0.4.6 trunk 0.0.1 0.0.2 0.2.8 0.2.9 0.3.0 0.3.1 0.3.2 0.3.3 0.3.4 0.3.5 0.3.6 0.3.7 All 33 releases
← All changes | common/news.php +128 -120 0.3.0trunk View file →
@@ -1,140 +1,148 @@
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 + // 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%;">';
77 85
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>' ) );
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 ) );
80 88
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/' );
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/' );
83 91
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>';
92 + $news_nonce = esc_attr( wp_create_nonce( 'meowapps_news' ) );
100 93
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 - }
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 + }
138 148 }
139 -
140 -?>