/home/vianto5/distritosatelite.mx/wp-content/plugins/wp-mail-smtp/src/Admin
NameSizeModeActions
DebugEvents/-0755rm
EmailSendingErrors/-0755rm
Pages/-0755rm
Recommendations/-0755rm
AdminBarMenu.php38960644editdlrm
Area.php528080644editdlrm
ConnectionSettings.php180230644editdlrm
DashboardWidget.php224050644editdlrm
DomainChecker.php45910644editdlrm
Education.php29400644editdlrm
FlyoutMenu.php42180644editdlrm
Notifications.php136080644editdlrm
PageAbstract.php31740644editdlrm
PageInterface.php5510644editdlrm
ParentPageAbstract.php76190644editdlrm
PluginsInstallSkin.php12170644editdlrm
Review.php69940644editdlrm
SetupWizard.php639060644editdlrm
WooCommerceActiveLayerEducation.php116980644editdlrm
Edit: /home/vianto5/distritosatelite.mx/wp-content/plugins/wp-mail-smtp/src/Admin/Review.php (6994B)
$time, 'dismissed' => false, ]; update_option( self::NOTICE_OPTION, $review ); } else { // Check if it has been dismissed or not. if ( isset( $review['dismissed'] ) && ! $review['dismissed'] ) { $load = true; } } // If we cannot load, return early. if ( ! $load ) { return; } $this->review(); } /** * Maybe show review request. * * @since 2.1.0 */ private function review() { // Get the currently selected mailer. $mailer = Options::init()->get( 'mail', 'mailer' ); // Skip if no or the default mailer is selected. if ( empty( $mailer ) || $mailer === 'mail' ) { return; } // Fetch when plugin was initially activated. $activated = get_option( 'wp_mail_smtp_activated_time' ); // Skip if the plugin activated time is not set. if ( empty( $activated ) ) { return; } $mailer_object = wp_mail_smtp() ->get_providers() ->get_mailer( $mailer, wp_mail_smtp()->get_processor()->get_phpmailer() ); // Check if mailer setup is complete. $mailer_setup_complete = ! empty( $mailer_object ) ? $mailer_object->is_mailer_complete() : false; // Skip if the mailer is not set or the plugin is active for less then a defined number of days. if ( ! $mailer_setup_complete || ( $activated + ( DAY_IN_SECONDS * self::WAIT_PERIOD ) ) > time() ) { return; } // We have a candidate! Output a review message. ?>

 • 

blog_id ); update_option( self::NOTICE_OPTION, $review ); restore_current_blog(); } } wp_send_json_success(); } }