# give/4.16.8.1/src/Framework/FieldsAPI/MultiSelect.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 46 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/FieldsAPI/MultiSelect.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Framework/FieldsAPI/MultiSelect.php
- Modified: 2024-08-14T19:11:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/FieldsAPI/MultiSelect.php#L10-L20`.

```php
<?php

namespace Give\Framework\FieldsAPI;

use InvalidArgumentException;

/**
 * @since 3.0.0
 */
class MultiSelect extends Field
{
    use Concerns\AllowMultiple;
    use Concerns\HasEmailTag;
    use Concerns\HasHelpText;
    use Concerns\HasLabel;
    use Concerns\HasOptions;
    use Concerns\HasPlaceholder;
    use Concerns\HasDescription;

    protected $fieldType;

    const TYPE = 'multiSelect';

    /**
     * @since 3.0.0
     */
    public function getFieldType(): string
    {
        return $this->fieldType;
    }

    /**
     * @since 3.0.0
     */
    public function fieldType(string $fieldType): MultiSelect
    {
        if (!in_array($fieldType, ['checkbox', 'dropdown'])) {
            throw new InvalidArgumentException(__('Field type must be either "checkbox" or "dropdown".', 'give'));
        }

        $this->fieldType = $fieldType;

        return $this;
    }
}

```
