|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* describes the buyable classes |
|
4
|
|
|
* CONTENT: |
|
5
|
|
|
* //GROUPS AND SIBLINGS |
|
6
|
|
|
* //IMAGES |
|
7
|
|
|
* //VERSIONING |
|
8
|
|
|
* //ORDER ITEM |
|
9
|
|
|
* //LINKS |
|
10
|
|
|
* //TEMPLATE STUFF |
|
11
|
|
|
* //CRUD SETTINGS. |
|
12
|
|
|
* |
|
13
|
|
|
* |
|
14
|
|
|
* @authors: Nicolaas [at] Sunny Side Up .co.nz |
|
15
|
|
|
* @package: ecommerce |
|
16
|
|
|
* @sub-package: buyables |
|
17
|
|
|
* @inspiration: Silverstripe Ltd, Jeremy |
|
18
|
|
|
**/ |
|
19
|
|
|
interface BuyableModel |
|
20
|
|
|
{ |
|
21
|
|
|
|
|
22
|
|
|
|
|
23
|
|
|
//GROUPS AND SIBLINGS |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* Returns the direct parent (group) for the product. |
|
27
|
|
|
**/ |
|
28
|
|
|
public function MainParentGroup(); |
|
|
|
|
|
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Returns Buybales in the same group. |
|
32
|
|
|
* |
|
33
|
|
|
* @return DataList (Products) |
|
34
|
|
|
**/ |
|
35
|
|
|
public function Siblings(); |
|
36
|
|
|
|
|
37
|
|
|
//IMAGES |
|
38
|
|
|
/** |
|
39
|
|
|
* returns a "BestAvailable" image if the current one is not available |
|
40
|
|
|
* In some cases this is appropriate and in some cases this is not. |
|
41
|
|
|
* For example, consider the following setup |
|
42
|
|
|
* - product A with three variations |
|
43
|
|
|
* - Product A has an image, but the variations have no images |
|
44
|
|
|
* With this scenario, you want to show ONLY the product image |
|
45
|
|
|
* on the product page, but if one of the variations is added to the |
|
46
|
|
|
* cart, then you want to show the product image. |
|
47
|
|
|
* This can be achieved bu using the BestAvailable image. |
|
48
|
|
|
* |
|
49
|
|
|
* @return Image | Null |
|
50
|
|
|
*/ |
|
51
|
|
|
public function BestAvailableImage(); |
|
52
|
|
|
|
|
53
|
|
|
/** |
|
54
|
|
|
* Little hack to show thumbnail in summary fields in modeladmin in CMS. |
|
55
|
|
|
* |
|
56
|
|
|
* @return string (HTML = formatted image) |
|
57
|
|
|
*/ |
|
58
|
|
|
public function CMSThumbnail(); |
|
59
|
|
|
|
|
60
|
|
|
/** |
|
61
|
|
|
* returns a link to the standard image. |
|
62
|
|
|
* |
|
63
|
|
|
* @return string |
|
64
|
|
|
*/ |
|
65
|
|
|
public function DefaultImageLink(); |
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* returns a product image for use in templates |
|
69
|
|
|
* e.g. $DummyImage.Width();. |
|
70
|
|
|
* |
|
71
|
|
|
* @return Product_Image |
|
72
|
|
|
*/ |
|
73
|
|
|
public function DummyImage(); |
|
74
|
|
|
|
|
75
|
|
|
// VERSIONING |
|
76
|
|
|
|
|
77
|
|
|
/** |
|
78
|
|
|
* Action to return specific version of a product. |
|
79
|
|
|
* This can be any product to enable the retrieval of deleted products. |
|
80
|
|
|
* This is really useful for sold products where you want to retrieve the actual version that you sold. |
|
81
|
|
|
* |
|
82
|
|
|
* @param int $id |
|
83
|
|
|
* @param int $version |
|
84
|
|
|
* |
|
85
|
|
|
* @return DataObject | Null |
|
86
|
|
|
*/ |
|
87
|
|
|
public function getVersionOfBuyable($id = 0, $version = 0); |
|
88
|
|
|
|
|
89
|
|
|
//ORDER ITEM |
|
90
|
|
|
|
|
91
|
|
|
/** |
|
92
|
|
|
* returns the order item associated with the buyable. |
|
93
|
|
|
* ALWAYS returns one, even if there is none in the cart. |
|
94
|
|
|
* Does not write to database. |
|
95
|
|
|
* |
|
96
|
|
|
* @return OrderItem (no kidding) |
|
97
|
|
|
**/ |
|
98
|
|
|
public function OrderItem(); |
|
99
|
|
|
|
|
100
|
|
|
/** |
|
101
|
|
|
* @var string |
|
102
|
|
|
*/ |
|
103
|
|
|
//protected $defaultClassNameForOrderItem; |
|
104
|
|
|
|
|
105
|
|
|
/** |
|
106
|
|
|
* you can overwrite this function in your buyable items (such as Product). |
|
107
|
|
|
* |
|
108
|
|
|
* @return string |
|
109
|
|
|
**/ |
|
110
|
|
|
public function classNameForOrderItem(); |
|
111
|
|
|
|
|
112
|
|
|
/** |
|
113
|
|
|
* You can set an alternative class name for order item using this method. |
|
114
|
|
|
* |
|
115
|
|
|
* @param string $ClassName |
|
|
|
|
|
|
116
|
|
|
**/ |
|
117
|
|
|
public function setAlternativeClassNameForOrderItem($className); |
|
|
|
|
|
|
118
|
|
|
|
|
119
|
|
|
/** |
|
120
|
|
|
* This is used when you add a product to your cart |
|
121
|
|
|
* if you set it to 1 then you can add 0.1 product to cart. |
|
122
|
|
|
* If you set it to -1 then you can add 10, 20, 30, etc.. products to cart. |
|
123
|
|
|
* |
|
124
|
|
|
* @return int |
|
125
|
|
|
**/ |
|
126
|
|
|
public function QuantityDecimals(); |
|
127
|
|
|
|
|
128
|
|
|
/** |
|
129
|
|
|
* Has it been sold? |
|
130
|
|
|
* |
|
131
|
|
|
* @return bool |
|
132
|
|
|
*/ |
|
133
|
|
|
public function HasBeenSold(); |
|
134
|
|
|
|
|
135
|
|
|
//LINKS |
|
136
|
|
|
|
|
137
|
|
|
/** |
|
138
|
|
|
* passing on shopping cart links ...is this necessary?? ...why not just pass the cart? |
|
139
|
|
|
* |
|
140
|
|
|
* @return string |
|
141
|
|
|
*/ |
|
142
|
|
|
public function AddLink(); |
|
143
|
|
|
|
|
144
|
|
|
/** |
|
145
|
|
|
* link use to add (one) to cart. |
|
146
|
|
|
* |
|
147
|
|
|
*@return string |
|
148
|
|
|
*/ |
|
149
|
|
|
public function IncrementLink(); |
|
150
|
|
|
|
|
151
|
|
|
/** |
|
152
|
|
|
* Link used to remove one from cart |
|
153
|
|
|
* we can do this, because by default remove link removes one. |
|
154
|
|
|
* |
|
155
|
|
|
* @return string |
|
156
|
|
|
*/ |
|
157
|
|
|
public function DecrementLink(); |
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* remove one buyable's orderitem from cart. |
|
161
|
|
|
* |
|
162
|
|
|
* @return string (Link) |
|
163
|
|
|
*/ |
|
164
|
|
|
public function RemoveLink(); |
|
165
|
|
|
|
|
166
|
|
|
/** |
|
167
|
|
|
* remove all of this buyable's orderitem from cart. |
|
168
|
|
|
* |
|
169
|
|
|
* @return string (Link) |
|
170
|
|
|
*/ |
|
171
|
|
|
public function RemoveAllLink(); |
|
172
|
|
|
|
|
173
|
|
|
/** |
|
174
|
|
|
* remove all of this buyable's orderitem from cart and go through to this buyble to add alternative selection. |
|
175
|
|
|
* |
|
176
|
|
|
* @return string (Link) |
|
177
|
|
|
*/ |
|
178
|
|
|
public function RemoveAllAndEditLink(); |
|
179
|
|
|
|
|
180
|
|
|
/** |
|
181
|
|
|
* set new specific new quantity for buyable's orderitem. |
|
182
|
|
|
* |
|
183
|
|
|
* @param float |
|
184
|
|
|
* |
|
185
|
|
|
* @return string (Link) |
|
186
|
|
|
*/ |
|
187
|
|
|
public function SetSpecificQuantityItemLink($quantity); |
|
188
|
|
|
|
|
189
|
|
|
/** |
|
190
|
|
|
* @return string |
|
191
|
|
|
*/ |
|
192
|
|
|
public function AddToCartAndGoToCheckoutLink(); |
|
193
|
|
|
|
|
194
|
|
|
//TEMPLATE STUFF |
|
195
|
|
|
|
|
196
|
|
|
/** |
|
197
|
|
|
* @return bool |
|
198
|
|
|
*/ |
|
199
|
|
|
public function IsInCart(); |
|
200
|
|
|
|
|
201
|
|
|
/** |
|
202
|
|
|
* @return EcomQuantityField |
|
203
|
|
|
*/ |
|
204
|
|
|
public function EcomQuantityField(); |
|
205
|
|
|
|
|
206
|
|
|
/** |
|
207
|
|
|
* returns the instance of EcommerceConfigAjax for use in templates. |
|
208
|
|
|
* In templates, it is used like this: |
|
209
|
|
|
* $EcommerceConfigAjax.TableID. |
|
210
|
|
|
* |
|
211
|
|
|
* @return EcommerceConfigAjax |
|
212
|
|
|
**/ |
|
213
|
|
|
public function AJAXDefinitions(); |
|
214
|
|
|
|
|
215
|
|
|
/** |
|
216
|
|
|
* returns the instance of EcommerceDBConfig. |
|
217
|
|
|
* |
|
218
|
|
|
* @return EcommerceDBConfig |
|
219
|
|
|
**/ |
|
220
|
|
|
public function EcomConfig(); |
|
221
|
|
|
|
|
222
|
|
|
/** |
|
223
|
|
|
* Is it a variation? |
|
224
|
|
|
* |
|
225
|
|
|
* @return bool |
|
226
|
|
|
*/ |
|
227
|
|
|
public function IsProductVariation(); |
|
228
|
|
|
|
|
229
|
|
|
/** |
|
230
|
|
|
* Turn AllowPurchase into Yes or no. |
|
231
|
|
|
* |
|
232
|
|
|
* @return string |
|
233
|
|
|
*/ |
|
234
|
|
|
public function AllowPurchaseNice(); |
|
235
|
|
|
|
|
236
|
|
|
/** |
|
237
|
|
|
* Products have a standard price, but for specific situations they have a calculated price. |
|
238
|
|
|
* The Price can be changed for specific member discounts, a different currency, etc... |
|
239
|
|
|
* |
|
240
|
|
|
* @return float (casted variable) |
|
241
|
|
|
*/ |
|
242
|
|
|
public function CalculatedPrice(); |
|
243
|
|
|
public function getCalculatedPrice(); |
|
|
|
|
|
|
244
|
|
|
|
|
245
|
|
|
/** |
|
246
|
|
|
* How do we display the price? |
|
247
|
|
|
* |
|
248
|
|
|
* @return Money |
|
249
|
|
|
*/ |
|
250
|
|
|
public function CalculatedPriceAsMoney(); |
|
251
|
|
|
public function getCalculatedPriceAsMoney(); |
|
|
|
|
|
|
252
|
|
|
|
|
253
|
|
|
//CRUD SETTINGS |
|
254
|
|
|
|
|
255
|
|
|
/** |
|
256
|
|
|
* Is the product for sale? |
|
257
|
|
|
* |
|
258
|
|
|
* @return bool |
|
259
|
|
|
*/ |
|
260
|
|
|
public function canPurchase(Member $member = null, $checkPrice = true); |
|
261
|
|
|
} |
|
262
|
|
|
|
For interface and abstract methods, it is impossible to infer the return type from the immediate code. In these cases, it is generally advisible to explicitly annotate these methods with a
@returndoc comment to communicate to implementors of these methods what they are expected to return.