1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Backpack\CRUD\PanelTraits; |
4
|
|
|
|
5
|
|
|
trait Tabs |
6
|
|
|
{ |
7
|
|
|
public $tabs = []; |
8
|
|
|
public $tabsHorizontal = true; |
9
|
|
|
|
10
|
|
|
private function initTabs() |
11
|
|
|
{ |
12
|
|
|
if (is_array($this->tabs)) { |
13
|
|
|
$this->tabs = collect([]); |
|
|
|
|
14
|
|
|
$this->tabsHorizontal = config('backpack.crud.tabs_horizontal', true); |
15
|
|
|
} |
16
|
|
|
} |
17
|
|
|
|
18
|
|
|
public function enableVerticalTabs() |
19
|
|
|
{ |
20
|
|
|
$this->tabsHorizontal = false; |
21
|
|
|
|
22
|
|
|
return $this->tabsHorizontal; |
23
|
|
|
} |
24
|
|
|
|
25
|
|
|
public function disableVerticalTabs() |
26
|
|
|
{ |
27
|
|
|
$this->tabsHorizontal = true; |
28
|
|
|
|
29
|
|
|
return $this->tabsHorizontal; |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
public function enableHorizontalTabs() |
33
|
|
|
{ |
34
|
|
|
$this->tabsHorizontal = true; |
35
|
|
|
|
36
|
|
|
return $this->tabsHorizontal; |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
public function disableHorizontalTabs() |
40
|
|
|
{ |
41
|
|
|
$this->tabsHorizontal = false; |
42
|
|
|
|
43
|
|
|
return $this->tabsHorizontal; |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
public function clearTabs() |
47
|
|
|
{ |
48
|
|
|
$this->tabs = collect([]); |
|
|
|
|
49
|
|
|
|
50
|
|
|
return $this->tabs; |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
public function getTabs() |
|
|
|
|
54
|
|
|
{ |
55
|
|
|
$this->initTabs(); |
56
|
|
|
|
57
|
|
|
return $this->tabs; |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
public function addTab($label) |
|
|
|
|
61
|
|
|
{ |
62
|
|
|
$this->initTabs(); |
63
|
|
|
|
64
|
|
|
$newTab = (object) [ |
65
|
|
|
'label' => $label, |
66
|
|
|
'name' => snake_case($label), |
67
|
|
|
'fields' => collect([]), |
68
|
|
|
'horizontal' => $this->tabsHorizontal, |
69
|
|
|
]; |
70
|
|
|
|
71
|
|
|
$this->tabs->push($newTab); |
72
|
|
|
|
73
|
|
|
return $newTab; |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
public function removeTab($label) |
|
|
|
|
77
|
|
|
{ |
78
|
|
|
$this->initTabs(); |
79
|
|
|
|
80
|
|
|
$this->tabs = $this->tabs->reject(function ($tab) use ($label) { |
81
|
|
|
return $tab->label == $label; |
82
|
|
|
}); |
83
|
|
|
|
84
|
|
|
return $this->tabs; |
85
|
|
|
} |
86
|
|
|
|
87
|
|
View Code Duplication |
public function getCreateTabs() |
|
|
|
|
88
|
|
|
{ |
89
|
|
|
return $this->tabs->filter(function (&$tab) { |
90
|
|
|
|
91
|
|
|
$tab->fields = $tab->fields->reject(function ($field) { |
92
|
|
|
return $field['method'] == 'update'; |
93
|
|
|
}); |
94
|
|
|
|
95
|
|
|
return $tab->fields->count(); |
96
|
|
|
}); |
97
|
|
|
} |
98
|
|
|
|
99
|
|
View Code Duplication |
public function getUpdateTabs() |
|
|
|
|
100
|
|
|
{ |
101
|
|
|
return $this->tabs->filter(function (&$tab) { |
102
|
|
|
|
103
|
|
|
$tab->fields = $tab->fields->reject(function ($field) { |
104
|
|
|
return $field['method'] == 'create'; |
105
|
|
|
}); |
106
|
|
|
|
107
|
|
|
return $tab->fields->count(); |
108
|
|
|
}); |
109
|
|
|
} |
110
|
|
|
} |
111
|
|
|
|
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..