jetpack
Last commit date
3rd-party
3 years ago
_inc
3 years ago
css
3 years ago
extensions
3 years ago
images
3 years ago
jetpack_vendor
3 years ago
json-endpoints
3 years ago
modules
1 year ago
sal
3 years ago
src
4 years ago
vendor
3 years ago
views
4 years ago
CHANGELOG.md
3 years ago
LICENSE.txt
5 years ago
SECURITY.md
5 years ago
class-jetpack-connection-status.php
5 years ago
class-jetpack-connection-widget.php
3 years ago
class-jetpack-gallery-settings.php
4 years ago
class-jetpack-pre-connection-jitms.php
4 years ago
class-jetpack-recommendations-banner.php
3 years ago
class-jetpack-stats-dashboard-widget.php
3 years ago
class-jetpack-wizard-banner.php
5 years ago
class-jetpack-xmlrpc-methods.php
3 years ago
class.frame-nonce-preview.php
4 years ago
class.jetpack-admin.php
3 years ago
class.jetpack-affiliate.php
4 years ago
class.jetpack-autoupdate.php
3 years ago
class.jetpack-bbpress-json-api.compat.php
5 years ago
class.jetpack-cli.php
3 years ago
class.jetpack-client-server.php
4 years ago
class.jetpack-connection-banner.php
3 years ago
class.jetpack-data.php
5 years ago
class.jetpack-gutenberg.php
3 years ago
class.jetpack-heartbeat.php
4 years ago
class.jetpack-idc.php
4 years ago
class.jetpack-modules-list-table.php
3 years ago
class.jetpack-network-sites-list-table.php
4 years ago
class.jetpack-network.php
3 years ago
class.jetpack-plan.php
3 years ago
class.jetpack-post-images.php
3 years ago
class.jetpack-twitter-cards.php
3 years ago
class.jetpack-user-agent.php
3 years ago
class.jetpack.php
3 years ago
class.json-api-endpoints.php
3 years ago
class.json-api.php
3 years ago
class.photon.php
3 years ago
composer.json
3 years ago
enhanced-open-graph.php
3 years ago
functions.compat.php
3 years ago
functions.cookies.php
5 years ago
functions.global.php
3 years ago
functions.is-mobile.php
3 years ago
functions.opengraph.php
3 years ago
functions.photon.php
3 years ago
jetpack.php
1 year ago
json-api-config.php
3 years ago
json-endpoints.php
3 years ago
load-jetpack.php
3 years ago
locales.php
4 years ago
readme.txt
1 year ago
require-lib.php
3 years ago
uninstall.php
5 years ago
wpml-config.xml
3 years ago
class-jetpack-stats-dashboard-widget.php
183 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Adds the Jetpack stats widget to the WordPress admin dashboard. |
| 4 | * |
| 5 | * @package jetpack |
| 6 | */ |
| 7 | |
| 8 | use Automattic\Jetpack\Assets; |
| 9 | use Automattic\Jetpack\Assets\Logo as Jetpack_Logo; |
| 10 | use Automattic\Jetpack\Redirect; |
| 11 | use Automattic\Jetpack\Status; |
| 12 | |
| 13 | /** |
| 14 | * Class that adds the Jetpack stats widget to the WordPress admin dashboard. |
| 15 | */ |
| 16 | class Jetpack_Stats_Dashboard_Widget { |
| 17 | |
| 18 | /** |
| 19 | * Indicates whether the class initialized or not. |
| 20 | * |
| 21 | * @var bool |
| 22 | */ |
| 23 | private static $initialized = false; |
| 24 | |
| 25 | /** |
| 26 | * Initialize the class by calling the setup static function. |
| 27 | * |
| 28 | * @return void |
| 29 | */ |
| 30 | public static function init() { |
| 31 | if ( ! self::$initialized ) { |
| 32 | self::$initialized = true; |
| 33 | self::wp_dashboard_setup(); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Sets up the Jetpack Stats widget in the WordPress admin dashboard. |
| 39 | */ |
| 40 | public static function wp_dashboard_setup() { |
| 41 | if ( Jetpack::is_connection_ready() ) { |
| 42 | add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 ); |
| 43 | } |
| 44 | |
| 45 | if ( has_action( 'jetpack_dashboard_widget' ) ) { |
| 46 | $widget_title = sprintf( |
| 47 | __( 'Jetpack Stats', 'jetpack' ) |
| 48 | ); |
| 49 | |
| 50 | wp_add_dashboard_widget( |
| 51 | 'jetpack_summary_widget', |
| 52 | $widget_title, |
| 53 | array( __CLASS__, 'dashboard_widget' ) |
| 54 | ); |
| 55 | wp_enqueue_style( |
| 56 | 'jetpack-dashboard-widget', |
| 57 | Assets::get_file_url_for_environment( |
| 58 | 'css/dashboard-widget.min.css', |
| 59 | 'css/dashboard-widget.css' |
| 60 | ), |
| 61 | array(), |
| 62 | JETPACK__VERSION |
| 63 | ); |
| 64 | wp_style_add_data( 'jetpack-dashboard-widget', 'rtl', 'replace' ); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Fires dashboard widget action. |
| 70 | * Both the footer from this file and the stats graph from modules/stats.php hook into this action. |
| 71 | */ |
| 72 | public static function dashboard_widget() { |
| 73 | /** |
| 74 | * Fires when the dashboard is loaded. |
| 75 | * |
| 76 | * @since 3.4.0 |
| 77 | */ |
| 78 | do_action( 'jetpack_dashboard_widget' ); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Load the widget footer showing Akismet stats. |
| 83 | */ |
| 84 | public static function dashboard_widget_footer() { |
| 85 | ?> |
| 86 | <footer> |
| 87 | <div class="blocked-container"> |
| 88 | <div class="protect"> |
| 89 | <h3><?php esc_html_e( 'Brute force attack protection', 'jetpack' ); ?></h3> |
| 90 | <?php if ( Jetpack::is_module_active( 'protect' ) ) : ?> |
| 91 | <p class="blocked-count"> |
| 92 | <?php echo esc_html( number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ) ); ?> |
| 93 | </p> |
| 94 | <p><?php echo esc_html_x( 'Blocked malicious login attempts', '{#} Blocked malicious login attempts -- number is on a prior line, text is a caption.', 'jetpack' ); ?></p> |
| 95 | <?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! ( new Status() )->is_offline_mode() ) : ?> |
| 96 | <a href=" |
| 97 | <?php |
| 98 | echo esc_url( |
| 99 | wp_nonce_url( |
| 100 | Jetpack::admin_url( |
| 101 | array( |
| 102 | 'action' => 'activate', |
| 103 | 'module' => 'protect', |
| 104 | ) |
| 105 | ), |
| 106 | 'jetpack_activate-protect' |
| 107 | ) |
| 108 | ); |
| 109 | ?> |
| 110 | " class="button button-jetpack" title="<?php esc_attr_e( 'Protect helps to keep you secure from brute-force login attacks.', 'jetpack' ); ?>"> |
| 111 | <?php esc_html_e( 'Activate brute force attack protection', 'jetpack' ); ?> |
| 112 | </a> |
| 113 | <?php else : ?> |
| 114 | <?php esc_html_e( 'Brute force attack protection is inactive.', 'jetpack' ); ?> |
| 115 | <?php endif; ?> |
| 116 | </div> |
| 117 | |
| 118 | <div class="akismet"> |
| 119 | <h3><?php esc_html_e( 'Akismet Anti-spam', 'jetpack' ); ?></h3> |
| 120 | <?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?> |
| 121 | <p class="blocked-count"> |
| 122 | <?php echo esc_html( number_format_i18n( get_option( 'akismet_spam_count', 0 ) ) ); ?> |
| 123 | </p> |
| 124 | <p><?php echo esc_html_x( 'Blocked spam comments.', '{#} Spam comments blocked by Akismet -- number is on a prior line, text is a caption.', 'jetpack' ); ?></p> |
| 125 | <?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?> |
| 126 | <a href=" |
| 127 | <?php |
| 128 | echo esc_url( |
| 129 | wp_nonce_url( |
| 130 | add_query_arg( |
| 131 | array( |
| 132 | 'action' => 'activate', |
| 133 | 'plugin' => 'akismet/akismet.php', |
| 134 | ), |
| 135 | admin_url( 'plugins.php' ) |
| 136 | ), |
| 137 | 'activate-plugin_akismet/akismet.php' |
| 138 | ) |
| 139 | ); |
| 140 | ?> |
| 141 | " class="button button-jetpack"> |
| 142 | <?php esc_html_e( 'Activate Anti-spam', 'jetpack' ); ?> |
| 143 | </a> |
| 144 | <?php else : ?> |
| 145 | <p><a href="<?php echo esc_url( 'https://akismet.com/?utm_source=jetpack&utm_medium=link&utm_campaign=Jetpack%20Dashboard%20Widget%20Footer%20Link' ); ?>"><?php esc_html_e( 'Anti-spam can help to keep your blog safe from spam!', 'jetpack' ); ?></a></p> |
| 146 | <?php endif; ?> |
| 147 | </div> |
| 148 | </div> |
| 149 | <div class="footer-links"> |
| 150 | <?php |
| 151 | $jetpack_logo = new Jetpack_Logo(); |
| 152 | echo $jetpack_logo->get_jp_emblem( true );// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 153 | |
| 154 | if ( Jetpack::is_module_active( 'stats' ) ) : |
| 155 | ?> |
| 156 | <span> |
| 157 | <?php |
| 158 | if ( current_user_can( 'jetpack_manage_modules' ) ) : |
| 159 | $i18n_headers = jetpack_get_module_i18n( 'stats' ); |
| 160 | ?> |
| 161 | <a href="<?php echo esc_url( admin_url( 'admin.php?page=jetpack#/settings?term=' . rawurlencode( $i18n_headers['name'] ) ) ); ?>" |
| 162 | > |
| 163 | <?php |
| 164 | esc_html_e( 'Configure Jetpack Stats', 'jetpack' ); |
| 165 | ?> |
| 166 | </a> |
| 167 | | |
| 168 | <?php |
| 169 | endif; |
| 170 | ?> |
| 171 | <a href="<?php echo esc_url( Redirect::get_url( 'jetpack-support-wordpress-com-stats' ) ); ?>" target="_blank"><?php esc_html_e( 'Learn more', 'jetpack' ); ?></a> |
| 172 | </span> |
| 173 | <?php |
| 174 | endif; |
| 175 | ?> |
| 176 | |
| 177 | </div> |
| 178 | </footer> |
| 179 | |
| 180 | <?php |
| 181 | } |
| 182 | } |
| 183 |