| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Checkout/Block/Onepage/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Checkout
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* One page checkout success page
*
* @category Mage
* @package Mage_Checkout
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Checkout_Block_Onepage_Success extends Mage_Core_Block_Template
{
/**
* @deprecated after 1.4.0.1
*/
private $_order;
/**
* Retrieve identifier of created order
*
* @return string
* @deprecated after 1.4.0.1
*/
public function getOrderId()
{
return $this->_getData('order_id');
}
/**
* Check order print availability
*
* @return bool
* @deprecated after 1.4.0.1
*/
public function canPrint()
{
return $this->_getData('can_view_order');
}
/**
* Get url for order detale print
*
* @return string
* @deprecated after 1.4.0.1
*/
public function getPrintUrl()
{
return $this->_getData('print_url');
}
/**
* Get url for view order details
*
* @return string
* @deprecated after 1.4.0.1
*/
public function getViewOrderUrl()
{
return $this->_getData('view_order_id');
}
/**
* See if the order has state, visible on frontend
*
* @return bool
*/
public function isOrderVisible()
{
return (bool)$this->_getData('is_order_visible');
}
/**
* Getter for recurring profile view page
*
* @param $profile
*/
public function getProfileUrl(Varien_Object $profile)
{
return $this->getUrl('sales/recurring_profile/view', array('profile' => $profile->getId()));
}
/**
* Initialize data and prepare it for output
*/
protected function _beforeToHtml()
{
$this->_prepareLastOrder();
$this->_prepareLastBillingAgreement();
$this->_prepareLastRecurringProfiles();
return parent::_beforeToHtml();
}
/**
* Get last order ID from session, fetch it and check whether it can be viewed, printed etc
*/
protected function _prepareLastOrder()
{
$orderId = Mage::getSingleton('checkout/session')->getLastOrderId();
if ($orderId) {
$order = Mage::getModel('sales/order')->load($orderId);
if ($order->getId()) {
$isVisible = !in_array($order->getState(),
Mage::getSingleton('sales/order_config')->getInvisibleOnFrontStates());
$this->addData(array(
'is_order_visible' => $isVisible,
'view_order_id' => $this->getUrl('sales/order/view/', array('order_id' => $orderId)),
'print_url' => $this->getUrl('sales/order/print', array('order_id'=> $orderId)),
'can_print_order' => $isVisible,
'can_view_order' => Mage::getSingleton('customer/session')->isLoggedIn() && $isVisible,
'order_id' => $order->getIncrementId(),
));
}
}
}
/**
* Prepare billing agreement data from an identifier in the session
*/
protected function _prepareLastBillingAgreement()
{
$agreementId = Mage::getSingleton('checkout/session')->getLastBillingAgreementId();
$customerId = Mage::getSingleton('customer/session')->getCustomerId();
if ($agreementId && $customerId) {
$agreement = Mage::getModel('sales/billing_agreement')->load($agreementId);
if ($agreement->getId() && $customerId == $agreement->getCustomerId()) {
$this->addData(array(
'agreement_ref_id' => $agreement->getReferenceId(),
'agreement_url' => $this->getUrl('sales/billing_agreement/view',
array('agreement' => $agreementId)
),
));
}
}
}
/**
* Prepare recurring payment profiles from the session
*/
protected function _prepareLastRecurringProfiles()
{
$profileIds = Mage::getSingleton('checkout/session')->getLastRecurringProfileIds();
if ($profileIds && is_array($profileIds)) {
$collection = Mage::getModel('sales/recurring_profile')->getCollection()
->addFieldToFilter('profile_id', array('in' => $profileIds))
;
$profiles = array();
foreach ($collection as $profile) {
$profiles[] = $profile;
}
if ($profiles) {
$this->setRecurringProfiles($profiles);
if (Mage::getSingleton('customer/session')->isLoggedIn()) {
$this->setCanViewProfiles(true);
}
}
}
}
}