コード例 #1
0
ファイル: checkout.php プロジェクト: osuarcher/WP-e-Commerce
 public function shipping_and_billing()
 {
     $this->view = 'checkout-shipping-and-billing';
     _wpsc_enqueue_shipping_billing_scripts();
     if (isset($_POST['action']) && $_POST['action'] == 'submit_checkout_form') {
         $this->submit_shipping_and_billing();
     }
 }
コード例 #2
0
 public function settings()
 {
     $this->view = 'customer-account-settings';
     _wpsc_enqueue_shipping_billing_scripts();
     if (isset($_POST['action']) && $_POST['action'] == 'submit_customer_settings_form') {
         $this->submit_customer_settings();
     }
 }