You are here

function pay_method_gateway::set_cc_issue_number in Pay 7

Same name and namespace in other branches
  1. 6 includes/handlers/pay_method_gateway.inc \pay_method_gateway::set_cc_issue_number()

File

includes/handlers/pay_method_gateway.inc, line 174
The base class for credit card payment activities.

Class

pay_method_gateway
@file The base class for credit card payment activities.

Code

function set_cc_issue_number($val) {
  $this->cc_issue_number = preg_replace('/[^\\d]/', '', $val);
}