Linux webm002.cluster126.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
simple-history
/
inc
/
services
/
/home/ariannadhf/www/wp-content/plugins/simple-history/inc/services/class-dashboard-widget.php
<?php namespace Simple_History\Services; use Simple_History\Helpers; /** * Setup dashboard widget. */ class Dashboard_Widget extends Service { /** * @inheritdoc */ public function loaded() { add_action( 'wp_dashboard_setup', array( $this, 'add_dashboard_widget' ) ); } /** * Add a dashboard widget. * Requires current user to have view history capability * and a setting to show dashboard to be set. */ public function add_dashboard_widget() { // phpcs:ignore WordPress.WP.Capabilities.Undetermined -- Capability is filterable, defaults to 'read'. if ( ! Helpers::setting_show_on_dashboard() || ! current_user_can( Helpers::get_view_history_capability() ) ) { return; } /** * Filter to determine if history page should be added to page below dashboard or not * * @since 2.0.23 * * @param bool $show_dashboard_widget Show the page or not */ $show_dashboard_widget = apply_filters( 'simple_history/show_dashboard_widget', true ); if ( ! $show_dashboard_widget ) { return; } wp_add_dashboard_widget( 'simple_history_dashboard_widget', __( 'Simple History', 'simple-history' ), array( $this, 'dashboard_widget_output', ) ); } /** * Output html for the dashboard widget */ public function dashboard_widget_output() { do_action( 'simple_history/dashboard/before_gui', $this ); } }