first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* File that define P24_Product_Simple class.
*
* @package Przelewy24
*/
defined( 'ABSPATH' ) || exit;
/**
* The class add to parent awareness of multiple currencies.
*/
class P24_Product_Simple extends WC_Product_Simple implements P24_MC_Product_Common_Interface {
use P24_Product_Trait;
/**
* P24_Product_Simple constructor.
*
* @param int $product Id of product.
*/
public function __construct( $product = 0 ) {
$this->populate_internal_data();
parent::__construct( $product );
}
}