1 | <?php |
||
11 | class DMSDocumentCartExtension extends DataExtension |
||
|
|||
12 | { |
||
13 | /** |
||
14 | * @var DMSDocumentCartController |
||
15 | */ |
||
16 | private $cartController; |
||
17 | |||
18 | private static $db = array( |
||
19 | 'AllowedInCart' => 'Boolean', |
||
20 | // Running total of print requests on this document |
||
21 | 'PrintRequestCount' => 'Int', |
||
22 | ); |
||
23 | |||
24 | /** |
||
25 | * Returns if a Document is permitted to reflect in a cart |
||
26 | * |
||
27 | * @return boolean |
||
28 | */ |
||
29 | public function isAllowedInCart() |
||
33 | |||
34 | public function updateCMSFields(FieldList $fields) |
||
41 | |||
42 | /** |
||
43 | * Increments the number of times a document was printed |
||
44 | * |
||
45 | * @return DMSDocument |
||
46 | */ |
||
47 | public function incrementPrintRequest() |
||
54 | |||
55 | /** |
||
56 | * Checks if a given document already exists within the Cart. True if it does, false otherwise |
||
57 | * |
||
58 | * @return bool |
||
59 | */ |
||
60 | public function isInCart() |
||
64 | |||
65 | /** |
||
66 | * Builds and returns a valid DMSDocumentController URL from the given $action link |
||
67 | * |
||
68 | * @param string $action Can be either 'add', 'remove' or 'checkout |
||
69 | * |
||
70 | * @return string |
||
71 | * |
||
72 | * @throws InvalidArgumentException if the provided $action is not allowed. |
||
73 | */ |
||
74 | public function getActionLink($action = 'add') |
||
90 | |||
91 | /** |
||
92 | * Retrieves a DMSDocumentCartController handle |
||
93 | * |
||
94 | * @return DMSDocumentCartController |
||
95 | */ |
||
96 | public function getCartController() |
||
104 | |||
105 | /** |
||
106 | * Retrieves a DMSDocumentCart handle |
||
107 | * |
||
108 | * @return DMSDocumentCart |
||
109 | */ |
||
110 | public function getCart() |
||
114 | } |
||
115 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.