' . t('What is the CVV?') . '
' . t('CVV stands for Card Verification Value. This number is used as a security feature to protect you from credit card fraud. Finding the number on your card is a very simple process. Just follow the directions below.') . '
'; $cc_types = array('visa', 'mastercard', 'discover'); foreach ($cc_types as $type) { if (variable_get('uc_credit_' . $type, TRUE)) { $valid_types[] = ucfirst($type); } } if (count($valid_types) > 0) { $output .= '' . t('The CVV for these cards is found on the back side of the card. It is only the last three digits on the far right of the signature panel box.') . '
'; } if (variable_get('uc_credit_amex', TRUE)) { $output .= '' . t('American Express') . ':
' . t('The CVV on American Express cards is found on the front of the card. It is a four digit number printed in smaller text on the right side above the credit card number.') . '
'; } $output .= ''; print $output; exit(); }