order.php (978B)
1 <?php 2 // Text 3 $_['text_success'] = 'Success: You have modified orders!'; 4 5 // Error 6 $_['error_permission'] = 'Warning: You do not have permission to access the API!'; 7 $_['error_customer'] = 'Warning: Customer details needs to be set!'; 8 $_['error_payment_address'] = 'Warning: Payment address required!'; 9 $_['error_payment_method'] = 'Warning: Payment method required!'; 10 $_['error_no_payment'] = 'Warning: No Payment options are available!'; 11 $_['error_shipping_address'] = 'Warning: Shipping address required!'; 12 $_['error_shipping_method'] = 'Warning: Shipping method required!'; 13 $_['error_no_shipping'] = 'Warning: No Shipping options are available!'; 14 $_['error_stock'] = 'Warning: Products marked with *** are not available in the desired quantity or not in stock!'; 15 $_['error_minimum'] = 'Warning: Minimum order amount for %s is %s!'; 16 $_['error_not_found'] = 'Warning: Order could not be found!';