A QCodo powered CMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

239 lines
8.9 KiB

<?php
if(!defined('QUINTACMS') ) die("No quinta.");
if (!defined("CHECKOUTREVIEWMODULE.CLASS.PHP")){
define("CHECKOUTREVIEWMODULE.CLASS.PHP",1);
/**
* Class CheckOutReviewModule - provides display of order information for review during checkout
*@author Erik Winn <sidewalksoftware@gmail.com>
*
*@version 0.3
*
*@package Quinta
* @subpackage Modules
*/
class CheckOutReviewModule extends QPanel{
/**
*@var CheckOutModule objControlBlock - the main control block for the check out module
*/
protected $objControlBlock;
/**
*@var Order objOrder - local reference to the order
*/
protected $objOrder;
/**
* @var array CheckOutItems - a list of products as cart items.
*/
public $aryCheckOutItemControllers;
/**
* @var OrderTotalsController - module to display shipping, handling and total price for order
*/
public $objOrderTotalsController;
/**
* @var AddressController objShippingAddressController - display for the shipping address
*/
public $objShippingAddressController;
/**
* @var AddressController objBillingAddressController - display for the billing address
*/
public $objBillingAddressController;
/**
* @var QPanel pnlPaymentMethod - panel to display information about the selected method
*/
public $pnlPaymentMethod;
/**
* @var QPanel pnlShippinggMethod - panel to display information about the selected method
*/
public $pnlShippingMethod;
///Buttons attached to the address and payment views for callback ..
public $btnEditShippingAddress;
public $btnEditBillingAddress;
public $btnEditShippingMethod;
public $btnEditPaymentMethod;
/**
* Module constructor
*@param QPanel pnlParentObject - the DOM parent
*@param CheckOutModule objControlBlock - parent controller module.
*@param Order objOrder - the Order being reviewed.
*/
public function __construct( QPanel $pnlParentObject, $objControlBlock, Order $objOrder){
try {
parent::__construct($pnlParentObject, 'CheckOutReviewModule');
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
$this->objOrder =& $objOrder;
$this->objControlBlock =& $objControlBlock;
$this->AutoRenderChildren = true;
$this->strTemplate = __QUINTA_CORE_VIEWS__ . '/CheckOutReviewModule.tpl.php';
$this->init();
}
/**
* This function is called when the user clicks "Edit" by the Shipping address, it returns the user to the
* Shipping information panel.
*@param string strFormId - a string representation of the CSS Id for the main form
*@param string strControlId - a string representation of the CSS Id for the control calling this function
*@param string strParameter - a string containing optionally set parameters
*/
public function btnEditShippingAddress_Click($strFormId, $strControlId, $strParameter){
$this->objControlBlock->GoBack(CheckOutStage::Shipping);
}
/**
* This function is called when the user clicks "Edit" by the Billing address, it returns the user to the
* Billing information panel.
*@param string strFormId - a string representation of the CSS Id for the main form
*@param string strControlId - a string representation of the CSS Id for the control calling this function
*@param string strParameter - a string containing optionally set parameters
*/
public function btnEditBillingAddress_Click($strFormId, $strControlId, $strParameter){
$this->objControlBlock->GoBack(CheckOutStage::Payment);
}
protected function init(){
$this->aryCheckOutItemControllers = array();
//construct the list of items
$aryOrderItems = $this->objOrder->GetNewOrderItemsArray();
foreach( $aryOrderItems as $objOrderItem){
$objItemView = new CheckOutItemController( $this, $objOrderItem, false );
$this->aryCheckOutItemControllers[] = $objItemView;
}
$this->objOrderTotalsController = new OrderTotalsController($this, $this->objOrder, false);
$this->objShippingAddressController = new AddressController($this,
$this->objOrder->ShippingAddressId,
'ShippingAddress: ');
$this->objShippingAddressController->CssClass = 'ShippingAddressReview';
$this->objShippingAddressController->AutoRenderChildren = true;
$this->objBillingAddressController = new AddressController($this,
$this->objOrder->BillingAddressId,
'BillingAddress: ');
$this->objBillingAddressController->CssClass = 'BillingAddressReview';
$this->objBillingAddressController->AutoRenderChildren = true;
$this->pnlPaymentMethod_Create();
$this->pnlShippingMethod_Create();
$this->btnEditShippingAddress = new QButton($this->objShippingAddressController);
$this->btnEditShippingAddress->Text = Quinta::Translate('Edit');
if(IndexPage::$blnAjaxOk)
$this->btnEditShippingAddress->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnEditShippingAddress_Click'));
else
$this->btnEditShippingAddress->AddAction(new QClickEvent(), new QServerControlAction($this, 'btnEditShippingAddress_Click'));
$this->btnEditBillingAddress = new QButton($this->objBillingAddressController);
$this->btnEditBillingAddress->Text = Quinta::Translate('Edit');
if(IndexPage::$blnAjaxOk)
$this->btnEditBillingAddress->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnEditBillingAddress_Click'));
else
$this->btnEditBillingAddress->AddAction(new QClickEvent(), new QServerControlAction($this, 'btnEditBillingAddress_Click'));
}
public function RefreshView($objOrder){
$this->RemoveChildControls(true);
$this->objOrder = $objOrder;
$this->init();
}
protected function pnlPaymentMethod_Create(){
if($this->objControlBlock->PaymentMethod instanceof PaymentMethod){
$objPaymentMethod = $this->objControlBlock->PaymentMethod;
$this->pnlPaymentMethod = new QPanel($this);
$this->pnlPaymentMethod->HtmlEntities = false;
$this->pnlPaymentMethod->CssClass = 'PaymentMethodReview';
$this->pnlPaymentMethod->AutoRenderChildren = true;
$strText = '<div class="heading">' . Quinta::Translate('Payment Method') . ':</div>'
. sprintf( '<div class="heading"> %s </div> <br /> %s ',
$objPaymentMethod->Title,
$objPaymentMethod->Description
);
$this->pnlPaymentMethod->Text = $strText;
$this->btnEditPaymentMethod = new QButton($this->pnlPaymentMethod);
$this->btnEditPaymentMethod->Text = Quinta::Translate('Change');
if(IndexPage::$blnAjaxOk)
$this->btnEditPaymentMethod->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnEditBillingAddress_Click'));
else
$this->btnEditPaymentMethod->AddAction(new QClickEvent(), new QServerControlAction($this, 'btnEditBillingAddress_Click'));
}
}
protected function pnlShippingMethod_Create(){
if($this->objControlBlock->ShippingMethod instanceof ShippingMethod){
$objShippingMethod = $this->objControlBlock->ShippingMethod;
$this->pnlShippingMethod = new QPanel($this);
$this->pnlShippingMethod->HtmlEntities = false;
$this->pnlShippingMethod->CssClass = 'ShippingMethodReview';
$this->pnlShippingMethod->AutoRenderChildren = true;
$strText = '<div class="heading">' . Quinta::Translate('Shipping Method') . ':</div>'
. sprintf( '<div class="heading"> %s </div> <br /> %s ',
$objShippingMethod->Title,
$objShippingMethod->Description
);
$this->pnlShippingMethod->Text = $strText;
$this->btnEditShippingMethod = new QButton($this->pnlShippingMethod);
$this->btnEditShippingMethod->Text = Quinta::Translate('Change');
if(IndexPage::$blnAjaxOk)
$this->btnEditShippingMethod->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnEditShippingAddress_Click'));
else
$this->btnEditShippingMethod->AddAction(new QClickEvent(), new QServerControlAction($this, 'btnEditShippingAddress_Click'));
}
}
/**
* This Function is called when any input is sent - on failure the
* fields are redrawn with optional error messages.
*/
public function Validate(){
$blnToReturn = true;
// validate input here
return $blnToReturn;
}
public function __get($strName){
switch ($strName){
case 'Order':
return $this->objOrder ;
default:
try {
return parent::__get($strName);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
}
public function __set($strName, $mixValue){
switch ($strName){
case 'Order':
try {
return ($this->objOrder = QType::Cast($mixValue, 'Order' ));
} catch (QInvalidCastException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
default:
try {
return (parent::__set($strName, $mixValue));
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
}
}//end class
}//end define
?>