An unlimited number of order checking profiles can be defined with the OrderProfile directive, or by defining order profiles in scratch variables. This allows a multi-level ordering process, with checking for format and validity at every stage.
As of MiniVend 3.12, you can place a message after the format check requirement.
Specifications take the form of an order page variable (like name or address), followed by an equals sign and one of five check types:
us_postcode
.
Also, there are four pragmas that can be used to change behavior:
&set=mv_email [value email]
. This is usually placed at the end after a &fatal
pragma
would have caused the process to stop if there was an error -- can also be
used to determine pass/fail based on a derived value, as it will cause
failure if it evaluates to zero or a blank value.
# Success :) &return 1
# Failure :\ &return 0
Will ignore the &fatal
pragma, but &final
is still in effect if set.
As an added measure of control, the specification is evaluated for the
special MiniVend tags to provide conditional setting of order parameters.
With the [perl]
[/perl]
capability, quite complex checks can be done. Also, the name of the page to
be displayed on an error can be set in the mv_failpage variable.
The following file specifies a simple check of formatted parameters:
name=required You must give us your name. address=required Oops! No address. city=required state=required zip=required email=required phone_day=phone_us XXX-XXX-XXXX phone-number for US or Canada &fatal=yes email=email Email address missing the domain? &set=mv_email [value email] &set=mv_successpage ord/shipping
The profile above only performs the &set
directives if all
of the previous checks have passed -- the &fatal=yes will stop
processing after the check of the email address if any of the previous
checks failed.
If you want to place multiple order profiles in the same file, separate them with __END__, which must be on a line by itself.