Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
checkout_action.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset.inc';
18 
19 
28 class Checkout_Action extends Asset
29 {
30 
31 
36  function __construct()
37  {
38  parent::__construct();
39 
40  }//end constructor
41 
42 
48  public static function paintInlineInterface(Ecommerce_Checkout &$checkout, $settings, Backend_Outputter $o, $prefix)
49  {
50 
51 
52  }//end paintInlineInterface()
53 
54 
60  public static function processInlineInterface(Ecommerce_Checkout &$checkout, &$settings, Backend_Outputter $o, $prefix)
61  {
62 
63 
64  }//end processInlineInterface()
65 
66 
72  public static function paintSummary(Ecommerce_Checkout &$checkout, $settings, Backend_Outputter $o, $prefix)
73  {
74 
75 
76  }//end paintSummary()
77 
78 
84  public static function isValid(Ecommerce_Checkout &$checkout, $settings)
85  {
86 
87 
88  }//end paintSummary()
89 
90 
91 
96  public static function execute(Ecommerce_Checkout &$checkout, Ecommerce_Order &$order, $settings)
97  {
98 
99 
100  }//end execute()
101 
102 
103 }//end class
104 
105 ?>