ID; if ($postId <= 0) { return false; } WordpressDb::getInstance()->getDb()->insert( WordpressDb::getInstance()->getDb()->prefix . AEIDN_TABLE_STATS, ['date' => date('Y-m-d'), 'product_id' => $postId] ); } } public function addToCart($cartItemKey = '', $productId = 0, $quantity = 0) { if (!is_admin()) { $postId = $productId; if ($postId <= 0) { return false; } WordpressDb::getInstance()->getDb()->insert( WordpressDb::getInstance()->getDb()->prefix . AEIDN_TABLE_STATS, ['date' => date('Y-m-d'), 'product_id' => $postId, 'quantity' => $quantity] ); return true; } } }