| 1 |
<?php |
| 2 |
|
| 3 |
if ( !class_exists( 'MeowCommon_News' ) ) { |
| 4 |
|
| 5 |
class MeowCommon_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 |
if ( isset( $_SESSION['meowapps_news_displayed'] ) ) { return; } |
| 25 |
$_SESSION['meowapps_news_displayed'] = true; |
| 26 |
|
| 27 |
// Other constraint for the news. |
| 28 |
$mwai_options = get_option( 'mwai_options' ); |
| 29 |
if ( !empty( $mwai_options ) ) { |
| 30 |
return; |
| 31 |
} |
| 32 |
|
| 33 |
// Check the news date. |
| 34 |
$news_date = $this->retrieve_news_date(); |
| 35 |
|
| 36 |
// THIS FROM PROD: |
| 37 |
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 |
} |
| 44 |
} |
| 45 |
} |
| 46 |
|
| 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 |
} |
| 59 |
|
| 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%;">'; |
| 77 |
|
| 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>' ) ); |
| 80 |
|
| 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/' ); |
| 83 |
|
| 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>'; |
| 100 |
|
| 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 |
} |
| 138 |
} |
| 139 |
|
| 140 |
?> |
| 141 |
|