t_fonts_usage(); return $params; } public function register_system_info_reporters() { System_Info::add_report( 'features', [ 'file_name' => __DIR__ . '/features-reporter.php', 'class_name' => __NAMESPACE__ . '\Features_Reporter', ] ); System_Info::add_report( 'integrations', [ 'file_name' => __DIR__ . '/integrations-reporter.php', 'class_name' => __NAMESPACE__ . '\Integrations_Reporter', ] ); } /** * Usage module constructor. * * Initializing Elementor usage module. * * @access public */ public function __construct() { add_filter( 'elementor/tracker/send_tracking_data_params', [ $this, 'add_tracking_data' ] ); add_action( 'admin_init', [ $this, 'register_system_info_reporters' ], 60 ); } }