authors
8 years ago
contact-info
5 years ago
eu-cookie-law
2 years ago
facebook-likebox
11 years ago
flickr
2 years ago
gallery
4 years ago
goodreads
5 years ago
google-translate
4 years ago
image-widget
8 years ago
instagram
6 years ago
internet-defense-league
3 years ago
migrate-to-core
3 years ago
milestone
2 years ago
my-community
8 years ago
simple-payments
4 years ago
social-icons
4 years ago
social-media-icons
5 years ago
top-posts
8 years ago
wordpress-post-widget
3 years ago
authors.php
3 years ago
blog-stats.php
2 years ago
class-jetpack-eu-cookie-law-widget.php
3 years ago
class-jetpack-instagram-widget.php
2 years ago
contact-info.php
2 years ago
customizer-controls.css
9 years ago
customizer-utils.js
6 years ago
facebook-likebox.php
3 years ago
flickr.php
3 years ago
gallery.php
3 years ago
goodreads.php
3 years ago
google-translate.php
2 years ago
gravatar-profile.css
10 years ago
gravatar-profile.php
3 years ago
image-widget.php
3 years ago
internet-defense-league.php
3 years ago
mailchimp.php
3 years ago
milestone.php
5 years ago
my-community.php
2 years ago
rsslinks-widget.php
3 years ago
simple-payments.php
2 years ago
social-icons.php
2 years ago
social-media-icons.php
3 years ago
top-posts.php
2 years ago
twitter-timeline-admin.js
6 years ago
twitter-timeline.php
3 years ago
upcoming-events.php
3 years ago
wordpress-post-widget.php
4 years ago
blog-stats.php
178 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileNam |
| 2 | /** |
| 3 | * Blog Stats Widget. |
| 4 | * |
| 5 | * @since 4.5.0 |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files. |
| 11 | |
| 12 | use Automattic\Jetpack\Stats\WPCOM_Stats; |
| 13 | |
| 14 | // Disable direct access/execution to/of the widget code. |
| 15 | if ( ! defined( 'ABSPATH' ) ) { |
| 16 | exit; |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * Blog Stats Widget. |
| 21 | * |
| 22 | * Displays all time stats for that site. |
| 23 | * |
| 24 | * @since 4.5.0 |
| 25 | */ |
| 26 | class Jetpack_Blog_Stats_Widget extends WP_Widget { |
| 27 | |
| 28 | /** |
| 29 | * Constructor |
| 30 | */ |
| 31 | public function __construct() { |
| 32 | $widget_ops = array( |
| 33 | 'classname' => 'blog-stats', |
| 34 | 'description' => esc_html__( 'Show a hit counter for your blog.', 'jetpack' ), |
| 35 | 'customize_selective_refresh' => true, |
| 36 | ); |
| 37 | parent::__construct( |
| 38 | 'blog-stats', |
| 39 | /** This filter is documented in modules/widgets/facebook-likebox.php */ |
| 40 | apply_filters( 'jetpack_widget_name', esc_html__( 'Blog Stats', 'jetpack' ) ), |
| 41 | $widget_ops |
| 42 | ); |
| 43 | $this->alt_option_name = 'widget_statscounter'; |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Return an associative array of default values |
| 48 | * |
| 49 | * These values are used in new widgets. |
| 50 | * |
| 51 | * @return array Array of default values for the Widget's options |
| 52 | */ |
| 53 | public function defaults() { |
| 54 | return array( |
| 55 | 'title' => esc_html__( 'Blog Stats', 'jetpack' ), |
| 56 | /* Translators: Number of views, plural */ |
| 57 | 'hits' => esc_html__( 'hits', 'jetpack' ), |
| 58 | ); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Return All Time Stats for that blog. |
| 63 | * |
| 64 | * We query the WordPress.com Stats REST API endpoint. |
| 65 | * |
| 66 | * @uses Automattic\Jetpack\Stats\WPCOM_Stats->get_stats. That function caches data locally for 5 minutes. |
| 67 | * |
| 68 | * @return string|false $views All Time Stats for that blog. |
| 69 | */ |
| 70 | public function get_stats() { |
| 71 | // Get data from the WordPress.com Stats REST API endpoint. |
| 72 | $stats = convert_stats_array_to_object( ( new WPCOM_Stats() )->get_stats( array( 'fields' => 'stats' ) ) ); |
| 73 | |
| 74 | if ( isset( $stats->stats->views ) ) { |
| 75 | return $stats->stats->views; |
| 76 | } else { |
| 77 | return false; |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Back end widget form. |
| 83 | * |
| 84 | * @see WP_Widget::form() |
| 85 | * |
| 86 | * @param array $instance Previously saved values from database. |
| 87 | * |
| 88 | * @return void |
| 89 | */ |
| 90 | public function form( $instance ) { |
| 91 | $instance = wp_parse_args( $instance, $this->defaults() ); |
| 92 | ?> |
| 93 | |
| 94 | <p> |
| 95 | <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'jetpack' ); ?></label> |
| 96 | <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $instance['title'] ); ?>" /> |
| 97 | </p> |
| 98 | <p> |
| 99 | <label for="<?php echo esc_attr( $this->get_field_id( 'hits' ) ); ?>"><?php esc_html_e( 'Pageview Description:', 'jetpack' ); ?></label> |
| 100 | <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'hits' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'hits' ) ); ?>" type="text" value="<?php echo esc_attr( $instance['hits'] ); ?>" /> |
| 101 | </p> |
| 102 | <p><?php esc_html_e( 'Hit counter is delayed by up to 60 seconds.', 'jetpack' ); ?></p> |
| 103 | |
| 104 | <?php |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Sanitize widget form values as they are saved. |
| 109 | * |
| 110 | * @see WP_Widget::update() |
| 111 | * |
| 112 | * @param array $new_instance Values just sent to be saved. |
| 113 | * @param array $old_instance Previously saved values from database. |
| 114 | * |
| 115 | * @return array Updated safe values to be saved. |
| 116 | */ |
| 117 | public function update( $new_instance, $old_instance ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 118 | $instance = array(); |
| 119 | $instance['title'] = wp_kses( $new_instance['title'], array() ); |
| 120 | $instance['hits'] = wp_kses( $new_instance['hits'], array() ); |
| 121 | |
| 122 | return $instance; |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Front-end display of widget. |
| 127 | * |
| 128 | * @see WP_Widget::widget() |
| 129 | * |
| 130 | * @param array $args Widget arguments. |
| 131 | * @param array $instance Saved values from database. |
| 132 | */ |
| 133 | public function widget( $args, $instance ) { |
| 134 | $instance = wp_parse_args( $instance, $this->defaults() ); |
| 135 | |
| 136 | /** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */ |
| 137 | $title = apply_filters( 'widget_title', $instance['title'] ); |
| 138 | |
| 139 | echo $args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 140 | |
| 141 | if ( ! empty( $title ) ) { |
| 142 | echo $args['before_title'] . $title . $args['after_title']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 143 | } |
| 144 | |
| 145 | // Get the Site Stats. |
| 146 | $views = $this->get_stats(); |
| 147 | |
| 148 | if ( 0 === $views ) { |
| 149 | esc_html_e( 'There is nothing to display yet', 'jetpack' ); |
| 150 | } elseif ( $views ) { |
| 151 | printf( |
| 152 | '<ul><li>%1$s %2$s</li></ul>', |
| 153 | esc_html( number_format_i18n( $views ) ), |
| 154 | isset( $instance['hits'] ) ? esc_html( $instance['hits'] ) : '' |
| 155 | ); |
| 156 | } else { |
| 157 | esc_html_e( 'There was an issue retrieving stats. Please try again later.', 'jetpack' ); |
| 158 | } |
| 159 | |
| 160 | echo $args['after_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 161 | |
| 162 | /** This action is already documented in modules/widgets/gravatar-profile.php */ |
| 163 | do_action( 'jetpack_stats_extra', 'widget_view', 'blog_stats' ); |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * If the Stats module is active in a recent version of Jetpack, register the widget. |
| 169 | * |
| 170 | * @since 4.5.0 |
| 171 | */ |
| 172 | function jetpack_blog_stats_widget_init() { |
| 173 | if ( Jetpack::is_module_active( 'stats' ) ) { |
| 174 | register_widget( 'Jetpack_Blog_Stats_Widget' ); |
| 175 | } |
| 176 | } |
| 177 | add_action( 'widgets_init', 'jetpack_blog_stats_widget_init' ); |
| 178 |