steps.inc.php

This document will talk about the various settings you can have in your 'Steps' file.

Not all entries are in this document yet, but we hope to get them all in here soon.
 

  • 98_online_payment The 98_online_payment step is the original online payment step, it is meant for online web-registration kiosks, this systme allows only either paypal or mail-in payments. This module will record which payment method was choosen and send the customer to the right location.
    • $_SESSION['98_online_payment_main']['mail_in']
      • Type: Boolean
      • Default: No Default
      • Defined: If this is set to anything other than true, then the mail in payment button will dissapear as a option. Note: If this is NOT set, then it is considered true.
    • $_SESSION['98_online_payment_main']['paypal']
      • Type: Boolean
      • Default: No Default
      • Defined: If this is set to anything other than true, then the paypal button will dissapear as a option. Note: If this is NOT set, then it is considered true.
  • 99_deliver_pdf The 99_deliver_pdf step is designed to allow you to deliver a pdf download to your customer. This pdf download currently has two uses. One is for the dealers_den mail-in dealers application, this is document number 1244 and the second is for the artist bid sheets which is document number 2787. If you want to create custom pdf documents you can do so and use this step to deliver the document for download to the customer.
    • $_SESSION['99_deliver_pdf']['document_id']
      • Type: Integer
      • Default: No default
      • Defined: This is the number of the pdf document you want to deliver. These numbers reflect the document number in the pdfs folder of your installation.
    • $_SESSION['99_deliver_pdf']['extra_params']
      • Type: String
      • Default: No Default
      • Defined: This is a string of extra $_GET parameters we can send to the pdf document when we're delivering. The format of this must always start with "&key=value" so that it can be stuck between other values of a GET string.
    • $_SESSION['99_deliver_pdf']['delivery_delay']
      • Type: Integer
      • Default: 2000
      • Defined: This is the number of milliseconds that the system will wait before delivering the pdf.
    • $_SESSION['99_deliver_pdf']['document_title']
      • Type: String
      • Default: No default
      • Defined: This is the document title. This may be used in 98_online_payment to provide a 'Download <title>' button, or on the deliver_pdf page to indicate the title of the document.