2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 08/11/2011 *
4 * =================== Last change: 08/11/2011 *
6 * -------------------------------------------------------------------- *
7 * File : network-vcheck.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Payment check script for extension ext-network *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : VCheck Script fuer Erweiterung ext-network *
12 * -------------------------------------------------------------------- *
13 * Copyright (c) 2003 - 2009 by Roland Haeder *
14 * Copyright (c) 2009 - 2016 by Mailer Developer Team *
15 * For more information visit: http://mxchange.org *
17 * This program is free software; you can redistribute it and/or modify *
18 * it under the terms of the GNU General Public License as published by *
19 * the Free Software Foundation; either version 2 of the License, or *
20 * (at your option) any later version. *
22 * This program is distributed in the hope that it will be useful, *
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
25 * GNU General Public License for more details. *
27 * You should have received a copy of the GNU General Public License *
28 * along with this program; if not, write to the Free Software *
29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
31 ************************************************************************/
33 // Load security stuff here
34 require('inc/libs/security_functions.php');
37 $GLOBALS['__start_time'] = microtime(TRUE);
39 // Set module and output mode (raw)
40 $GLOBALS['__module'] = 'network-vcheck';
41 $GLOBALS['__output_mode'] = -1;
43 // Initialize application
44 require('inc/init.php');
46 // Set HTTP status to 500 (if ext-network is not found, but this script is called)
47 setHttpStatus('500 Internal Server Error');
50 setContentType('text/plain');
55 // Is the required extension installed?
56 if ((isExtensionInstalled('network')) && (countRequestGet() > 0)) {
57 // It is installed, so handle the request
58 handleNetworkPaymentCheckRequest();