Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: callback_handler.php
<? // PHP Example to handle callback event // CODE | Message // 14 | Request when hash found // 15 | Request when hash not found $message_code = $_GET['msg_code']; switch ($message_code) { // Request when hash found case 14: $hash_id = $_GET['hash_id']; $imei = $_GET['imei']; $hash = $_GET['hash']; $time_done = $_GET['time_done']; $cod = $_GET['cod']; $nck = $_GET['nck']; // business process // model process // view process break; // Request when hash not found case 15: $hash_id = $_GET['hash_id']; $imei = $_GET['imei']; $hash = $_GET['hash']; $time_done = $_GET['time_done']; // business process // model process // view process break; } ?>