ValidateMinimumBasketValue() : bool
ValidateMinimumBasketValue
Kurzbeschreibung
Prüft die Mindesbestellmenge.
Funktionsbeschreibung
Beispiele
{%
# Example for ValidatorPlaceOrder
if(!$TermsAndConditionsCheck)
{
$_errorCode = 16; # Please read our General Terms and Conditions and confirm them by selecting the choice box.
AddError($_errorCode);
}
# Example for ValidatorCustomerShippingAddress
$_shippingAddress = GetCheckoutCustomerShippingAddressFromRequest();
if(strlen($_shippingAddress->FirstName) < 2
|| strlen($_shippingAddress->LastName) < 2)
{
$_errorCode = 39; #Please enter name and surname.
AddError($_errorCode);
}
%}