diff --git a/fulcrm_shoppingcart.admin.inc b/fulcrm_shoppingcart.admin.inc index d962068..00e2558 100644 --- a/fulcrm_shoppingcart.admin.inc +++ b/fulcrm_shoppingcart.admin.inc @@ -1,6 +1,13 @@ '', ); + $form[ 'proceed_text' ] = array( '#type' => 'textfield', + '#title' => 'Link text to carry on shopping', + '#default_value' => variable_get( 'fulcrm_shoppingcart_proceed_text', 'Keep shopping' ), + ); + $form[ 'proceed_url' ] = array( '#type' => 'textfield', + '#title' => 'URL to go to to carry on shopping', + '#default_value' => variable_get( 'fulcrm_shoppingcart_proceed_url', url( '', array( 'absolute' => true ) ) ), + ); + + $form[ 'fulcrm_url' ] = array( '#type' => 'fieldset', + '#title' => 'Return URLs', + ); + + $form[ 'fulcrm_url' ][ 'success_url' ] = array( '#type' => 'textfield', + '#title' => 'URL to return to upon transaction success', + '#default_value' => variable_get( 'fulcrm_shoppingcart_success_url', url( '', array( 'absolute' => true ) ) ), + ); + + $form[ 'fulcrm_url' ][ 'failure_url' ] = array( '#type' => 'textfield', + '#title' => 'URL to return to upon transaction failure', + '#default_value' => variable_get( 'fulcrm_shoppingcart_failure_url', url( '', array( 'absolute' => true ) ) ), + ); + + $form[ 'actions' ] = array( '#type' => 'actions' ); + $form[ 'actions' ][ 'save' ] = array( '#type' => 'submit', + '#value' => t('Save'), + '#submit' => array( 'fulcrm_shoppingcart_admin_form_submit' ), + ); + return $form; }