1 | <?php |
||
10 | class OrderStep_SentAdminNotification extends OrderStep implements OrderStepInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $emailClassName = 'Order_ReceiptEmail'; |
||
16 | |||
17 | private static $defaults = array( |
||
|
|||
18 | 'CustomerCanEdit' => 0, |
||
19 | 'CustomerCanCancel' => 0, |
||
20 | 'CustomerCanPay' => 1, |
||
21 | 'Name' => 'Send Admin Notification', |
||
22 | 'Code' => 'NOTIFIED', |
||
23 | 'ShowAsInProcessOrder' => 1, |
||
24 | 'SendInvoiceToCustomer' => 1, |
||
25 | ); |
||
26 | |||
27 | /** |
||
28 | * can run step once order has been submitted. |
||
29 | * NOTE: must have a payment (even if it is a fake payment). |
||
30 | * The reason for this is if people pay straight away then they want to see the payment shown on their invoice. |
||
31 | * |
||
32 | * @param Order object |
||
33 | * |
||
34 | * @return bool - true if the current step is ready to be run... |
||
35 | **/ |
||
36 | public function initStep(Order $order) |
||
44 | |||
45 | /** |
||
46 | * send invoice to customer |
||
47 | * or in case this is not selected, it will send a message to the shop admin only |
||
48 | * The latter is useful in case the payment does not go through (and no receipt is received). |
||
49 | * |
||
50 | * @param DataObject $order Order |
||
51 | * |
||
52 | * @return bool |
||
53 | **/ |
||
54 | public function doStep(Order $order) |
||
65 | |||
66 | /** |
||
67 | * can do next step once the invoice has been sent or in case the invoice does not need to be sent. |
||
68 | * |
||
69 | * @param Order $order |
||
70 | * |
||
71 | * @return OrderStep | Null (next step OrderStep object) |
||
72 | **/ |
||
73 | public function nextStep(Order $order) |
||
81 | |||
82 | /** |
||
83 | * Allows the opportunity for the Order Step to add any fields to Order::getCMSFields. |
||
84 | * |
||
85 | *@param FieldList $fields |
||
86 | *@param Order $order |
||
87 | * |
||
88 | *@return FieldList |
||
89 | **/ |
||
90 | public function addOrderStepFields(FieldList $fields, Order $order) |
||
98 | |||
99 | /** |
||
100 | * For some ordersteps this returns true... |
||
101 | * |
||
102 | * @return bool |
||
103 | **/ |
||
104 | protected function hasCustomerMessage() |
||
108 | |||
109 | /** |
||
110 | * Explains the current order step. |
||
111 | * |
||
112 | * @return string |
||
113 | */ |
||
114 | protected function myDescription() |
||
121 | } |
||
122 |