|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Sco\Admin\Form\Elements; |
|
4
|
|
|
|
|
5
|
|
|
class Upload extends Element |
|
6
|
|
|
{ |
|
7
|
|
|
protected $type = 'upload'; |
|
8
|
|
|
|
|
9
|
|
|
protected $actionUrl; |
|
10
|
|
|
|
|
11
|
|
|
protected $multiple = false; |
|
12
|
|
|
|
|
13
|
|
|
protected $showFileList = true; |
|
14
|
|
|
|
|
15
|
|
|
protected $withCredentials = false; |
|
16
|
|
|
|
|
17
|
|
|
public function getValue() |
|
18
|
|
|
{ |
|
19
|
|
|
$value = parent::getValue(); |
|
20
|
|
|
if (empty($value)) { |
|
21
|
|
|
return []; |
|
22
|
|
|
} |
|
23
|
|
|
|
|
24
|
|
|
return [ |
|
25
|
|
|
[ |
|
26
|
|
|
'name' => '', |
|
27
|
|
|
'url' => asset('vendor/admin/images/1200.jpg'), |
|
28
|
|
|
], |
|
29
|
|
|
]; |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
public function getActionUrl() |
|
33
|
|
|
{ |
|
34
|
|
|
if ($this->actionUrl) { |
|
35
|
|
|
return $this->actionUrl; |
|
36
|
|
|
} |
|
37
|
|
|
route('admin.dashboard'); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
public function setActionUrl($value) |
|
41
|
|
|
{ |
|
42
|
|
|
$this->actionUrl = $value; |
|
43
|
|
|
|
|
44
|
|
|
return $this; |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* Allow multiple selection files |
|
49
|
|
|
* |
|
50
|
|
|
* @return $this |
|
51
|
|
|
*/ |
|
52
|
|
|
public function isMultiple() |
|
53
|
|
|
{ |
|
54
|
|
|
$this->multiple = true; |
|
55
|
|
|
|
|
56
|
|
|
return $this; |
|
57
|
|
|
} |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* Do not show file list |
|
61
|
|
|
* |
|
62
|
|
|
* @return $this |
|
63
|
|
|
*/ |
|
64
|
|
|
public function hideFileList() |
|
65
|
|
|
{ |
|
66
|
|
|
$this->showFileList = true; |
|
67
|
|
|
|
|
68
|
|
|
return $this; |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* Indicates whether or not cross-site Access-Control requests |
|
73
|
|
|
* should be made using credentials |
|
74
|
|
|
* |
|
75
|
|
|
* @return $this |
|
76
|
|
|
*/ |
|
77
|
|
|
public function withCredentials() |
|
78
|
|
|
{ |
|
79
|
|
|
$this->withCredentials = true; |
|
80
|
|
|
|
|
81
|
|
|
return $this; |
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
|
|
public function setMax($value) |
|
85
|
|
|
{ |
|
86
|
|
|
parent::setMax($value); |
|
|
|
|
|
|
87
|
|
|
$this->addValidationRule('max:' . $value); |
|
|
|
|
|
|
88
|
|
|
|
|
89
|
|
|
return $this; |
|
90
|
|
|
} |
|
91
|
|
|
|
|
92
|
|
|
public function toArray() |
|
93
|
|
|
{ |
|
94
|
|
|
return parent::toArray() + [ |
|
95
|
|
|
'action' => $this->getActionUrl(), |
|
96
|
|
|
'showFileList' => $this->showFileList, |
|
97
|
|
|
'multiple' => $this->multiple, |
|
98
|
|
|
]; |
|
99
|
|
|
} |
|
100
|
|
|
} |
|
101
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different sub-classes of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the parent class: