Commit 37b8dbf5 authored by innerfly's avatar innerfly
Browse files

response url label

parent e2ca900e
Loading
Loading
Loading
Loading
+5 −12
Original line number Diff line number Diff line
@@ -45,17 +45,10 @@ function uc_rbkmoney_menu() {
 * Callback for settings page
 */
function uc_rbkmoney_setup() {
  $form['responseURL'] = array(
    '#type' => 'fieldset',
    '#collapsible' => TRUE,
    '#collapsed' => FALSE,
    '#title' => t('URL of payment response')
  );
  global $base_url;
  $form['responseURL']['url'] = array(
    '#type' => 'textfield',
    '#value' => $base_url . '/uc_rbkmoney/response',
    '#description' => t("Just for insertion into \"Payment notification URL\" field on <a target=_blank href=\"http://www.rbkmoney.ru\">RBK Money</a> settings page"),
  $form['responseURL'] = array(
    '#value' => t('Response URL: ') . $base_url . '/uc_rbkmoney/response',
    '#suffix' => '<div class="description">' . t("For insertion into \"Payment notification URL\" field on <a target=_blank href=\"http://www.rbkmoney.ru\">RBK Money</a> settings page") . '</div>',
  );
  $form['actionURL'] = array(
    '#type' => 'textfield',