nowa-panda/plugins/pandaGadzety/controller/panda-product-details-loader.php
2025-07-07 09:51:16 +02:00

34 lines
714 B
PHP

<?php
namespace Foxstudio\Plugins\Template\Controller;
use Foxstudio\Plugins\Template\Utils as Utils;
class ProductDetailsController {
private $productBaseInfo;
private $labeling;
private $inventory;
public function __construct() {
// $this->load();
// \add_action('woocommerce_before_single_product', [$this, 'load']);
new Utils\DeliveryTab();
new Utils\LabelingTab();
new Utils\LabelingDescriptionTab();
new Utils\ProductDescriptionTab();
new Utils\PriceCalculator();
}
public function load() {
// global $product;
// $sku = $product->get_sku();
// if(!empty($sku)) {
// }
}
}