From 9567f9c105e02b42cd2591c1128525178f6935c7 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Thu, 21 Jul 2016 08:41:13 +1000 Subject: [PATCH] add stripe explanation --- booking.admin.inc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/booking.admin.inc b/booking.admin.inc index db9be81..fad840e 100644 --- a/booking.admin.inc +++ b/booking.admin.inc @@ -183,8 +183,12 @@ function booking_admin() { '#title' => 'Stripe Settings', '#collapsible' => TRUE, '#collapsed' => TRUE, - ); - + ); + $explanation_text = t('

Register an account at stripe.com and visit the API keys page, then copy your API keys here.

'); + $form['stripe']['explanation-text'] = array( + '#type' => 'container', + '#children' => $explanation_text, + ); $form['stripe']['booking_stripe_test_secret_key'] = array ( '#type' => 'textfield', '#title' => t('Specify Stripe Test Secret Key'),