function stripe_webhook_response_output in Stripe 7
Returns data in plain text.
1 string reference to 'stripe_webhook_response_output'
- stripe_menu in ./
stripe.module - Implements hook_menu().
File
- ./
stripe.module, line 501 - stripe.module Drupal hooks used for integrating the Stripe service.
Code
function stripe_webhook_response_output($var = NULL) {
drupal_add_http_header('Content-Type', 'text/plain');
}