Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.



			
CreditCardNum;
  		
                // $data sorts all your Order Data
                $ID = $data['ProductID'];

                // send this order off to payment gateway somehow

                // save the order for us
		$this->write();
		return $result;
	}
	/**
          * The fields you need to add to the payment - eg CreditCard or Paypal data
          */
	function getPaymentFormFields() {
		return new FieldSet(
			new CreditCardField("CreditCardNum, "Credit Card Number:"),
		);
	}
	/**
	 * Returns the required fields to add to the order form, when using this payment method. 
	 */
	function getPaymentFormRequirements() {
			return array(
				"js" => "
					require('CreditCardNum');
				",
				"php" => '
					$this->requireField("CreditCardNum", $data);
				',
			);
	}
	
}

?>