Passed
Pull Request — 2.x (#1360)
by Harings
14:11
created

MultiSelect   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 52
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 25
c 1
b 0
f 0
dl 0
loc 52
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A render() 0 5 1
A __construct() 0 40 1
1
<?php
2
3
namespace A17\Twill\View\Components;
4
5
class MultiSelect extends FieldWithOptions
6
{
7
    public $min;
8
    public $max;
9
10
    public function __construct(
11
        $name,
12
        $label,
13
        $renderForBlocks = false,
14
        $renderForModal = false,
15
        $options = [],
16
        $unpack = false,
17
        $columns = 0,
18
        $searchable = false,
19
        $note = null,
20
        $placeholder = null,
21
        $disabled = false,
22
        $addNew = false,
23
        $moduleName = null,
24
        $default = false,
25
        $storeUrl = null,
26
        $fieldsInModal = false,
27
        $min = null,
28
        $max = null
29
    ) {
30
        parent::__construct(
31
            $name,
32
            $label,
33
            $renderForBlocks,
34
            $renderForModal,
35
            $options,
36
            $unpack,
37
            $columns,
38
            $searchable,
39
            $note,
40
            $placeholder,
41
            $disabled,
42
            $addNew,
43
            $moduleName,
44
            $storeUrl,
45
            $default,
46
            $fieldsInModal
47
        );
48
        $this->min = $min;
49
        $this->max = $max;
50
    }
51
52
    public function render()
53
    {
54
        return view('twill::partials.form._multi_select', [
55
            'options' => $this->options,
56
            'inModal' => $this->isInModal()
57
        ]);
58
    }
59
}
60