'Upload game', 'fetch' => 'Fetch games', 'remote' => 'Remote add', 'json' => 'JSON Importer' ); if(!check_purchase_code() && !ADMIN_DEMO){ echo('

Please provide your Item Purchase code. You can submit or update your Purchase code on site settings.

To be able to add a game, you need to provide your Item Purchase code. Where to get Envato purchase code?

'); } else { ?>
'; if($_GET['status'] == 'added'){ show_alert('Game added!', 'success'); } elseif($_GET['status'] == 'exist'){ show_alert('Game already exist!', 'warning'); } elseif($_GET['status'] == 'error'){ $error = json_decode($_GET['error-data']); foreach ($error as $value) { show_alert($value, 'warning'); } } } if($selected_tab === 'upload'){ include 'core/addgame-upload.php'; } else if($selected_tab === 'fetch'){ include 'core/addgame-fetch.php'; } else if($selected_tab === 'remote'){ include 'core/addgame-remote.php'; } else if($selected_tab === 'json'){ include 'core/addgame-json.php'; } ?>