name = $name; $this->text_domain = $text_domain; $this->plugin_file = $plugin_file; $this->script_handle = $script_handle; } /** * Handle localization for the uninstaller form. * * @since 1.0.0 */ public function handle() { $data = [ 'nonce' => wp_create_nonce('wp_rest'), ]; wp_add_inline_script($this->script_handle, 'window.arraytics_feedback = ' . wp_json_encode($data) . ';', 'before'); } }