|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /html/KMU-CSR-PLANER/wp-content/plugins/matomo/classes/WpMatomo/Admin/ |
Upload File : |
<?php
/**
* @package matomo
*/
namespace WpMatomo\Admin;
use WpMatomo\Feature;
if ( ! defined( 'ABSPATH' ) ) {
exit; // if accessed directly
}
class Chart extends Feature {
public function register_hooks() {
add_action( 'matomo_load_chartjs', [ $this, 'load_chartjs' ] );
}
public function load_chartjs() {
wp_enqueue_script( 'chart.js', plugins_url( 'node_modules/chart.js/dist/chart.min.js', MATOMO_ANALYTICS_FILE ), [], \WpMatomo::VERSION, true );
wp_enqueue_script( 'matomo_chart.js', plugins_url( 'assets/chart.js', MATOMO_ANALYTICS_FILE ), [], \WpMatomo::VERSION, true );
}
public function is_active() {
return is_admin();
}
}