![]() 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/cartforge.co/vendor/magento/module-customer/Model/Metadata/Form/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; use Magento\Customer\Model\Metadata\ElementFactory; use Magento\Framework\App\RequestInterface; /** * Form Element Multiselect Data Model */ class Multiselect extends Select { /** * @inheritdoc */ public function extractValue(RequestInterface $request) { $values = $this->_getRequestValue($request); if ($values !== false && !is_array($values)) { $values = [$values]; } return $values; } /** * @inheritdoc */ public function compactValue($value) { if (is_array($value)) { foreach ($value as $key => $val) { $value[$key] = parent::compactValue($val); } $value = implode(',', $value); } return parent::compactValue($value); } /** * @inheritdoc */ public function outputValue($format = ElementFactory::OUTPUT_FORMAT_TEXT) { $values = $this->_value; if (!is_array($values)) { $values = explode(',', (string)$values); } if (ElementFactory::OUTPUT_FORMAT_ARRAY === $format || ElementFactory::OUTPUT_FORMAT_JSON === $format) { return $values; } $output = []; foreach ($values as $value) { if (!$value) { continue; } $output[] = $this->_getOptionText($value); } $output = implode(', ', $output); return $output; } }