/**
  * Get input HTML
  *
  * ING Kassa Compleet does not present a payment screen to the customer if no payment method is set,
  * so we use iDEAL as default payment method to make the 'Test' meta box work.
  *
  * @see Pronamic_WP_Pay_Gateway::get_input_html()
  */
 public function get_input_html()
 {
     $payment_method = $this->get_payment_method();
     if (empty($payment_method)) {
         $this->set_payment_method(Pronamic_WP_Pay_PaymentMethods::IDEAL);
     }
     return parent::get_input_html();
 }