| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/prosvasi/wp-content/plugins/wp-statistics/src/Service/Admin/ |
Upload File : |
<?php
namespace WP_Statistics\Service\Admin;
if (!defined('ABSPATH')) exit; // Exit if accessed directly
use WP_Statistics\Service\Admin\NoticeHandler\Notice;
class AdminManager
{
public function __construct()
{
$this->initFooterModifier();
$this->initNoticeHandler();
$this->initSiteHealthInfo();
$this->initAjaxOptionUpdater();
}
private function initFooterModifier()
{
add_filter('admin_footer_text', array($this, 'modifyAdminFooterText'), 999);
add_filter('update_footer', array($this, 'modifyAdminUpdateFooter'), 999);
}
private function initNoticeHandler()
{
add_action('admin_notices', [Notice::class, 'displayNotices']);
add_action('admin_init', [Notice::class, 'handleDismissNotice']);
add_action('admin_init', [Notice::class, 'handleGeneralNotices'], 11);
}
private function initSiteHealthInfo()
{
// Initialize Site Health Info and register its hooks
$siteHealthInfo = new SiteHealthInfo();
$siteHealthInfo->register();
}
/**
*
*/
private function initAjaxOptionUpdater()
{
$optionUpdater = new AjaxOptionUpdater();
$optionUpdater->init();
}
/**
* Include footer
*/
public function modifyAdminFooterText($text)
{
$screen = get_current_screen();
if (apply_filters('wp_statistics_enable_footer_text', true) && stripos($screen->id, 'wps_') !== false) {
$text = sprintf(
/* translators: %1$s: string value, %2$s: string value, %3$s: string value, %4$s: string value */
__('Please rate <strong>WP Statistics</strong> <a href="%1$s" aria-label="%2$s" title="%3$s" target="_blank">★★★★★ %4$s</a> to help us spread the word. Thank you!', 'wp-statistics'),
'https://wordpress.org/plugins/wp-statistics/#reviews',
esc_attr__('Rate WP Statistics with five stars on WordPress.org', 'wp-statistics'),
esc_attr__('Rate WP Statistics', 'wp-statistics'),
esc_html__('on WordPress.org', 'wp-statistics')
);
}
return $text;
}
public function modifyAdminUpdateFooter($content)
{
$screen = get_current_screen();
if (apply_filters('wp_statistics_enable_footer_text', true) && stripos($screen->id, 'wps_') !== false) {
global $wp_version;
$content = sprintf('<p id="footer-upgrade" class="alignright">%s | %s %s</p>',
esc_html__('WordPress', 'wp-statistics') . ' ' . esc_html($wp_version),
esc_html('WP Statistics'),
esc_attr(WP_STATISTICS_VERSION)
);
}
return $content;
}
}