/home/techb158/l2hypotheques.com/wp-content/plugins/woocommerce/src/Internal
NameSizeModeActions
Abilities/-0755rm
AbilitiesApi/-0755rm
AddressProvider/-0755rm
Admin/-0755rm
Agentic/-0755rm
BatchProcessing/-0755rm
Caches/-0755rm
CLI/-0755rm
ComingSoon/-0755rm
CostOfGoodsSold/-0755rm
Customers/-0755rm
DataStores/-0755rm
DependencyManagement/-0755rm
Email/-0755rm
EmailEditor/-0755rm
Features/-0755rm
Fulfillments/-0755rm
Integrations/-0755rm
Jetpack/-0755rm
Logging/-0755rm
MCP/-0755rm
Orders/-0755rm
ProductAttributesLookup/-0755rm
ProductDownloads/-0755rm
ProductFeed/-0755rm
ProductFilters/-0755rm
ProductImage/-0755rm
PushNotifications/-0755rm
ReceiptRendering/-0755rm
RestApi/-0755rm
Settings/-0755rm
StockNotifications/-0755rm
Traits/-0755rm
TransientFiles/-0755rm
Utilities/-0755rm
WCCom/-0755rm
AssignDefaultCategory.php20010644editdlrm
Brands.php13000644editdlrm
DownloadPermissionsAdjuster.php66780644editdlrm
McStats.php21490644editdlrm
OrderCouponDataMigrator.php85280644editdlrm
RegisterHooksInterface.php5040644editdlrm
RestApiControllerBase.php82070644editdlrm
RestApiParameterUtil.php58540644editdlrm
RestockRefundedItemsAdjuster.php21290644editdlrm
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/woocommerce/src/Internal/McStats.php (2149B)
get_current_stats(); if ( isset( $stats[ $group_name ] ) && ! empty( $stats[ $group_name ] ) ) { return array( "x_woocommerce-{$group_name}" => implode( ',', $stats[ $group_name ] ) ); } return array(); } /** * Outputs the tracking pixels for the current stats and empty the stored stats from the object * * @return void */ public function do_stats() { if ( ! \WC_Site_Tracking::is_tracking_enabled() ) { return; } parent::do_stats(); } /** * Runs stats code for a one-off, server-side. * * @param string $url string The URL to be pinged. Should include `x_woocommerce-{$group}={$stats}` or whatever we want to store. * * @return bool If it worked. */ public function do_server_side_stat( $url ) { if ( ! \WC_Site_Tracking::is_tracking_enabled() ) { return false; } return parent::do_server_side_stat( $url ); } /** * Pings the stats server for the current stats and empty the stored stats from the object * * @return void */ public function do_server_side_stats() { if ( ! \WC_Site_Tracking::is_tracking_enabled() ) { return; } parent::do_server_side_stats(); } }