BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
google-site-kit
/
includes
/
Core
/
Tracking
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Feature_Metrics.php
<?php /** * Class Google\Site_Kit\Core\Tracking\Feature_Metrics * * @package Google\Site_Kit * @copyright 2025 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com */ namespace Google\Site_Kit\Core\Tracking; /** * Class managing the collection of site-wide feature metrics. * * @since 1.162.0 * @access private * @ignore */ class Feature_Metrics { /** * Registers functionality through WordPress hooks. * * @since 1.162.0 */ public function register() { add_filter( 'googlesitekit_features_request_data', function ( $body ) { /** * Filters feature metrics data sent with the features request. * * @since 1.162.0 * * @param array $feature_metrics Feature metrics tracking data to be sent with the features request. */ $feature_metrics = apply_filters( 'googlesitekit_feature_metrics', array() ); $body['feature_metrics'] = $feature_metrics; return $body; } ); } }
Save
Cancel