Public Member Functions | |
getOrderIds () | |
getViewOrderUrl ($orderId) | |
getContinueUrl () |
Definition at line 34 of file Success.php.
getContinueUrl | ( | ) |
getOrderIds | ( | ) |
Definition at line 36 of file Success.php.
00037 { 00038 $ids = Mage::getSingleton('core/session')->getOrderIds(true); 00039 // Zend_Debug::dump(Mage::getSingleton('core/session')->getOrderIds()); 00040 if ($ids && is_array($ids)) { 00041 return $ids; 00042 return implode(', ', $ids); 00043 } 00044 return false; 00045 }
getViewOrderUrl | ( | $ | orderId | ) |
Definition at line 47 of file Success.php.
00048 { 00049 return $this->getUrl('sales/order/view/', array('order_id' => $orderId, '_secure' => true)); 00050 }