1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Dynamic\Foxy\Model; |
4
|
|
|
|
5
|
|
|
use Bummzack\SortableFile\Forms\SortableUploadField; |
6
|
|
|
use Dynamic\Products\Page\Product; |
|
|
|
|
7
|
|
|
use SilverStripe\Assets\File; |
8
|
|
|
use SilverStripe\Forms\FieldList; |
9
|
|
|
use SilverStripe\ORM\DataObject; |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* Class Variation |
13
|
|
|
* @package Dynamic\Foxy\Model |
14
|
|
|
*/ |
15
|
|
|
class Variation extends DataObject |
16
|
|
|
{ |
17
|
|
|
/** |
18
|
|
|
* @var string |
19
|
|
|
*/ |
20
|
|
|
private static $table_name = 'Variation'; |
|
|
|
|
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @var string |
24
|
|
|
*/ |
25
|
|
|
private static $singular_name = 'Variation'; |
|
|
|
|
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* @var string |
29
|
|
|
*/ |
30
|
|
|
private static $plural_name = 'Variations'; |
|
|
|
|
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* @var string[] |
34
|
|
|
*/ |
35
|
|
|
private static $db = [ |
|
|
|
|
36
|
|
|
'Title' => 'Varchar(255)', |
37
|
|
|
'Content' => 'HTMLText', |
38
|
|
|
'WeightModifier' => 'Decimal(9,3)', |
39
|
|
|
'CodeModifier' => 'Text', |
40
|
|
|
'PriceModifier' => 'Currency', |
41
|
|
|
'WeightModifierAction' => "Enum('Add,Subtract,Set', null)", |
42
|
|
|
'CodeModifierAction' => "Enum('Add,Subtract,Set', null)", |
43
|
|
|
'PriceModifierAction' => "Enum('Add,Subtract,Set', null)", |
44
|
|
|
'Available' => 'Boolean', |
45
|
|
|
'Type' => 'Int', |
46
|
|
|
'OptionModifierKey' => 'Varchar(255)', |
47
|
|
|
'SortOrder' => 'Int', |
48
|
|
|
]; |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @var array |
52
|
|
|
*/ |
53
|
|
|
private static $many_many = [ |
|
|
|
|
54
|
|
|
'Images' => File::class, |
55
|
|
|
]; |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* @var \string[][] |
59
|
|
|
*/ |
60
|
|
|
private static $many_many_extraFields = [ |
|
|
|
|
61
|
|
|
'Images' => [ |
62
|
|
|
'SortOrder' => 'Int', |
63
|
|
|
], |
64
|
|
|
]; |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* @var string[] |
68
|
|
|
*/ |
69
|
|
|
private static $owns = [ |
|
|
|
|
70
|
|
|
'Images', |
71
|
|
|
]; |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* The relation name was established before requests for videos. |
75
|
|
|
* The relation has subsequently been updated from Image::class to File::class |
76
|
|
|
* to allow for additional file types such as mp4 |
77
|
|
|
* |
78
|
|
|
* @var array |
79
|
|
|
*/ |
80
|
|
|
private static $allowed_images_extensions = [ |
|
|
|
|
81
|
|
|
'gif', |
82
|
|
|
'jpeg', |
83
|
|
|
'jpg', |
84
|
|
|
'png', |
85
|
|
|
'bmp', |
86
|
|
|
'ico', |
87
|
|
|
'mp4', |
88
|
|
|
]; |
89
|
|
|
|
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* @return FieldList |
93
|
|
|
*/ |
94
|
|
|
public function getCMSFields() |
95
|
|
|
{ |
96
|
|
|
$this->beforeUpdateCMSFields(function (FieldList $fields) { |
97
|
|
|
// Images tab |
98
|
|
|
$images = SortableUploadField::create('Images') |
99
|
|
|
->setSortColumn('SortOrder') |
100
|
|
|
->setIsMultiUpload(true) |
101
|
|
|
->setAllowedExtensions($this->config()->get('allowed_images_extensions')) |
102
|
|
|
->setFolderName('Uploads/Products/Images'); |
103
|
|
|
|
104
|
|
|
$fields->addFieldsToTab('Root.Images', [ |
105
|
|
|
$images, |
106
|
|
|
]); |
107
|
|
|
}); |
108
|
|
|
|
109
|
|
|
return parent::getCMSFields(); |
110
|
|
|
} |
111
|
|
|
} |
112
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths