1: <?php
2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25:
26:
27: class extends Mage_Core_Block_Template
28: {
29: 30: 31:
32: protected $_track_id;
33: 34: 35:
36: protected $_order_id;
37: 38: 39:
40: protected $_ship_id;
41:
42: 43: 44:
45: public function setOrderId($oid)
46: {
47: return $this->setData('order_id', $oid);
48: }
49:
50: 51: 52:
53: public function getOrderId()
54: {
55: return $this->_getData('order_id');
56: }
57:
58: 59: 60:
61: public function setShipId($oid)
62: {
63: return $this->setData('ship_id', $oid);
64: }
65:
66: 67: 68:
69: public function getShipId()
70: {
71: return $this->_getData('ship_id');
72: }
73:
74: 75: 76:
77: public function setTrackId($tid='')
78: {
79: return $this->setData('track_id', $tid);
80: }
81:
82: 83: 84:
85: public function getTrackId()
86: {
87: return $this->_getData('track_id');
88: }
89:
90: 91: 92: 93: 94: 95:
96: protected function _initOrder()
97: {
98: $order = Mage::getModel('sales/order')->load($this->getOrderId());
99:
100: if (!$order->getId() || $this->getProtectCode() != $order->getProtectCode()) {
101: return false;
102: }
103:
104: return $order;
105: }
106:
107: 108: 109: 110: 111: 112:
113: protected function _initShipment()
114: {
115: $ship = Mage::getModel('sales/order_shipment')->load($this->getShipId());
116:
117: if (!$ship->getEntityId() || $this->getProtectCode() != $ship->getProtectCode()) {
118: return false;
119: }
120:
121: return $ship;
122: }
123:
124:
125: 126: 127: 128: 129:
130: public function getTrackingInfo()
131: {
132:
133: $info = Mage::registry('current_shipping_info');
134:
135: return $info->getTrackingInfo();
136: }
137:
138: 139: 140: 141: 142: 143:
144: public function getTrackingInfoByOrder()
145: {
146: $shipTrack = array();
147: if ($order = $this->_initOrder()) {
148: $shipments = $order->getShipmentsCollection();
149: foreach ($shipments as $shipment){
150: $increment_id = $shipment->getIncrementId();
151: $tracks = $shipment->getTracksCollection();
152:
153: $trackingInfos=array();
154: foreach ($tracks as $track){
155: $trackingInfos[] = $track->getNumberDetail();
156: }
157: $shipTrack[$increment_id] = $trackingInfos;
158: }
159: }
160: return $shipTrack;
161: }
162:
163: 164: 165: 166: 167: 168:
169: public function getTrackingInfoByShip()
170: {
171: $shipTrack = array();
172: if ($shipment = $this->_initShipment()) {
173: $increment_id = $shipment->getIncrementId();
174: $tracks = $shipment->getTracksCollection();
175:
176: $trackingInfos=array();
177: foreach ($tracks as $track){
178: $trackingInfos[] = $track->getNumberDetail();
179: }
180: $shipTrack[$increment_id] = $trackingInfos;
181:
182: }
183: return $shipTrack;
184: }
185:
186: 187: 188: 189: 190: 191:
192: public function getTrackingInfoByTrackId()
193: {
194: $track = Mage::getModel('sales/order_shipment_track')->load($this->getTrackId());
195: if ($this->getProtectCode() == $track->getProtectCode()) {
196: return array(array($track->getNumberDetail()));
197: }
198: return array(array());
199: }
200:
201: 202: 203: 204: 205: 206: 207:
208: public function formatDeliveryDateTime($date, $time)
209: {
210: return $this->formatDeliveryDate($date) . ' ' . $this->formatDeliveryTime($time);
211: }
212:
213: 214: 215: 216: 217: 218:
219: public function formatDeliveryDate($date)
220: {
221:
222: $locale = Mage::app()->getLocale();
223: $format = $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM);
224: return $locale->date(strtotime($date), Zend_Date::TIMESTAMP, null, false)
225: ->toString($format);
226: }
227:
228: 229: 230: 231: 232: 233: 234:
235: public function formatDeliveryTime($time, $date = null)
236: {
237: if (!empty($date)) {
238: $time = $date . ' ' . $time;
239: }
240:
241:
242: $locale = Mage::app()->getLocale();
243:
244: $format = $locale->getTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
245: return $locale->date(strtotime($time), Zend_Date::TIMESTAMP, null, false)
246: ->toString($format);
247: }
248:
249: 250: 251: 252: 253:
254: public function getContactUsEnabled()
255: {
256: return (bool) Mage::getStoreConfig('contacts/contacts/enabled');
257: }
258:
259: public function getStoreSupportEmail()
260: {
261: return Mage::getStoreConfig('trans_email/ident_support/email');
262: }
263:
264: public function getContactUs()
265: {
266: return $this->getUrl('contacts');
267: }
268:
269: }
270: