\n"; $output .= ''; $output .= '' . 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' => t('Visa'), 'mastercard' => t('MasterCard'), 'discover' => t('Discover') ); foreach ($cc_types as $id => $type) { if (variable_get('uc_credit_' . $id, TRUE)) { $valid_types[] = $type; } } if (count($valid_types) > 0) { $output .= '
' . implode(', ', $valid_types) . ':

'; $output .= theme('image', array( 'path' => drupal_get_path('module', 'uc_credit') . '/images/visa_cvv.jpg', 'attributes' => array('align' => 'left'), )); $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.'); $output .= '

'; } if (variable_get('uc_credit_amex', TRUE)) { $output .= '

' . t('American Express') . ':

'; $output .= theme('image', array( 'path' => drupal_get_path('module', 'uc_credit') . '/images/amex_cvv.jpg', 'attributes' => array('align' => 'left'), )); $output .= 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 .= '

'; } $output .= '

'; $output .= ''; print $output; exit(); }