![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog/Model/Product/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** * Cart product configuration model */ namespace Magento\Catalog\Model\Product; class CartConfiguration { /** * Decide whether product has been configured for cart or not * * @param \Magento\Catalog\Model\Product $product * @param array $config * @return bool */ public function isProductConfigured(\Magento\Catalog\Model\Product $product, $config) { // If below POST fields were submitted - this is product's options, it has been already configured switch ($product->getTypeId()) { case \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE: case \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL: return isset($config['options']); case \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE: return isset($config['bundle_option']); } return false; } }