| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-ui/Model/ColorPicker/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-ui/Model/ColorPicker/FullMode.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Ui\Model\ColorPicker;
/**
* Returns config parameters for full mode
*/
class FullMode implements ModeInterface
{
/**
* {@inheritdoc}
*
*/
public function getConfig(): array
{
return [
'showInput' => true,
'showInitial' => false,
'showPalette' => true,
'showAlpha' => true,
'showSelectionPalette' => true
];
}
}