Preview: Review.php
Size: 9.84 KB
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/tlp-team/app/Controllers/Admin/Notices/Review.php
<?php
/**
* Review Notice Class.
*
* @package RT_Team
*/
namespace RT\Team\Controllers\Admin\Notices;
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( 'This script cannot be accessed directly.' );
}
/**
* Review Notice Class.
*/
class Review {
use \RT\Team\Traits\SingletonTrait;
/**
* Class Init.
*
* @return void
*/
protected function init() {
add_action( 'admin_init', [ __CLASS__, 'rtteam_check_installation_time' ] );
add_action( 'admin_init', [ __CLASS__, 'rtteam_spare_me' ], 5 );
}
/**
* Check if review notice should be shown or not
*
* @return void
*/
public static function rtteam_check_installation_time() {
// Added Lines Start
$nobug = get_option( 'rtteam_spare_me', '0' );
if ( $nobug == '1' || $nobug == '3' ) {
return;
}
$install_date = get_option( 'rtteam_plugin_activation_time' );
$past_date = strtotime( '-10 days' );
$remind_time = get_option( 'rtteam_remind_me' );
$remind_due = strtotime( '+15 days', $remind_time );
$now = strtotime( 'now' );
if ( $now >= $remind_due ) {
add_action( 'admin_notices', [ __CLASS__, 'rtteam_display_admin_notice' ] );
} elseif ( ( $past_date >= $install_date ) && $nobug !== '2' ) {
add_action( 'admin_notices', [ __CLASS__, 'rtteam_display_admin_notice' ] );
}
}
/**
* Remove the notice for the user if review already done or if the user does not want to
*
* @return void
*/
public static function rtteam_spare_me() {
if ( ! isset( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['_wpnonce'] ) ), 'rtteam_notice_nonce' ) ) {
return;
}
if ( isset( $_GET['rtteam_spare_me'] ) && ! empty( $_GET['rtteam_spare_me'] ) ) {
$spare_me = absint( $_GET['rtteam_spare_me'] );
if ( 1 == $spare_me ) {
update_option( 'rtteam_spare_me', '1' );
}
}
if ( isset( $_GET['rtteam_remind_me'] ) && ! empty( $_GET['rtteam_remind_me'] ) ) {
$remind_me = absint( $_GET['rtteam_remind_me'] );
if ( 1 == $remind_me ) {
$get_activation_time = strtotime( 'now' );
update_option( 'rtteam_remind_me', $get_activation_time );
update_option( 'rtteam_spare_me', '2' );
}
}
if ( isset( $_GET['rtteam_rated'] ) && ! empty( $_GET['rtteam_rated'] ) ) {
$rtteam_rated = absint( $_GET['rtteam_rated'] );
if ( 1 == $rtteam_rated ) {
update_option( 'rtteam_rated', 'yes' );
update_option( 'rtteam_spare_me', '3' );
}
}
}
/**
* Current admin URL
*
* @return string
*/
protected static function rtteam_current_admin_url() {
$uri = isset($_SERVER['REQUEST_URI']) ? esc_url_raw(wp_unslash($_SERVER['REQUEST_URI'])) : '';
if ($uri) {
$uri = preg_replace('|^.*/wp-admin/|i', '', $uri);
}
if (!$uri) {
return '';
}
return remove_query_arg(
['_wpnonce', '_wc_notice_nonce', 'wc_db_update', 'wc_db_update_nonce', 'wc-hide-notice'], admin_url($uri)
);
}
/**
* Display Admin Notice, asking for a review
**/
public static function rtteam_display_admin_notice() {
// WordPress global variable.
global $pagenow;
$exclude = [ 'themes.php', 'users.php', 'tools.php', 'options-general.php', 'options-writing.php', 'options-reading.php', 'options-discussion.php', 'options-media.php', 'options-permalink.php', 'options-privacy.php', 'edit-comments.php', 'upload.php', 'media-new.php', 'admin.php', 'import.php', 'export.php', 'site-health.php', 'export-personal-data.php', 'erase-personal-data.php' ];
if ( ! in_array( $pagenow, $exclude ) ) {
$args = [ '_wpnonce' => wp_create_nonce( 'rtteam_notice_nonce' ) ];
$dont_disturb = add_query_arg( $args + [ 'rtteam_spare_me' => '1' ], self::rtteam_current_admin_url() );
$remind_me = add_query_arg( $args + [ 'rtteam_remind_me' => '1' ], self::rtteam_current_admin_url() );
$rated = add_query_arg( $args + [ 'rtteam_rated' => '1' ], self::rtteam_current_admin_url() );
$reviewurl = 'https://wordpress.org/support/plugin/tlp-team/reviews/?filter=5#new-post'; ?>
<div class="notice rtteam-review-notice rtteam-review-notice--extended">
<div class="rtteam-review-notice_content">
<h3>Enjoying Team – WordPress Team Members Showcase Plugin ?</h3>
<p>Thank you for choosing Team plugin. If you have found our plugin useful and makes you smile, please consider giving us a 5-star rating on WordPress.org. It will help us to grow.</p>
<div class="rtteam-review-notice_actions">
<a href="<?php echo esc_url( $reviewurl ); ?>" class="rtteam-review-button rtteam-review-button--cta" target="_blank"><span>⭐ Yes, You Deserve It!</span></a>
<a href="<?php echo esc_url( $rated ); ?>" class="rtteam-review-button rtteam-review-button--cta rtteam-review-button--outline"><span>😀 Already Rated!</span></a>
<a href="<?php echo esc_url( $remind_me ); ?>" class="rtteam-review-button rtteam-review-button--cta rtteam-review-button--outline"><span>🔔 Remind Me Later</span></a>
<a href="<?php echo esc_url( $dont_disturb ); ?>" class="rtteam-review-button rtteam-review-button--cta rtteam-review-button--error rtteam-review-button--outline"><span>😐 No Thanks</span></a>
</div>
</div>
</div>
<style>
.rtteam-review-button--cta {
--e-button-context-color: #5d3dfd;
--e-button-context-color-dark: #5d3dfd;
--e-button-context-tint: rgb(75 47 157/4%);
--e-focus-color: rgb(75 47 157/40%);
}
.rtteam-review-notice {
position: relative;
margin: 5px 20px 5px 2px;
border: 1px solid #ccd0d4;
background: #fff;
box-shadow: 0 1px 4px rgba(0,0,0,0.15);
font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
border-inline-start-width: 4px;
}
.rtteam-review-notice.notice {
padding: 0;
}
.rtteam-review-notice:before {
position: absolute;
top: -1px;
bottom: -1px;
left: -4px;
display: block;
width: 4px;
background: -webkit-linear-gradient(bottom, #5d3dfd 0%, #6939c6 100%);
background: linear-gradient(0deg, #5d3dfd 0%, #6939c6 100%);
content: "";
}
.rtteam-review-notice_content {
padding: 20px;
}
.rtteam-review-notice_actions > * + * {
margin-inline-start: 8px;
-webkit-margin-start: 8px;
-moz-margin-start: 8px;
}
.rtteam-review-notice p {
margin: 0;
padding: 0;
line-height: 1.5;
}
p + .rtteam-review-notice_actions {
margin-top: 1rem;
}
.rtteam-review-notice h3 {
margin: 0;
font-size: 1.0625rem;
line-height: 1.2;
}
.rtteam-review-notice h3 + p {
margin-top: 8px;
}
.rtteam-review-button {
display: inline-block;
padding: 0.4375rem 0.75rem;
border: 0;
border-radius: 3px;;
background: var(--e-button-context-color);
color: #fff;
vertical-align: middle;
text-align: center;
text-decoration: none;
white-space: nowrap;
}
.rtteam-review-button:active {
background: var(--e-button-context-color-dark);
color: #fff;
text-decoration: none;
}
.rtteam-review-button:focus {
outline: 0;
background: var(--e-button-context-color-dark);
box-shadow: 0 0 0 2px var(--e-focus-color);
color: #fff;
text-decoration: none;
}
.rtteam-review-button:hover {
background: var(--e-button-context-color-dark);
color: #fff;
text-decoration: none;
}
.rtteam-review-button.focus {
outline: 0;
box-shadow: 0 0 0 2px var(--e-focus-color);
}
.rtteam-review-button--error {
--e-button-context-color: #d72b3f;
--e-button-context-color-dark: #ae2131;
--e-button-context-tint: rgba(215,43,63,0.04);
--e-focus-color: rgba(215,43,63,0.4);
}
.rtteam-review-button.rtteam-review-button--outline {
border: 1px solid;
background: 0 0;
color: var(--e-button-context-color);
}
.rtteam-review-button.rtteam-review-button--outline:focus {
background: var(--e-button-context-tint);
color: var(--e-button-context-color-dark);
}
.rtteam-review-button.rtteam-review-button--outline:hover {
background: var(--e-button-context-tint);
color: var(--e-button-context-color-dark);
}
</style>
<?php
}
}
}
Directory Contents
Dirs: 0 × Files: 3