kollapsminoriteten/wp-content/themes/astra/inc/lib/nps-survey/nps-survey.php

28 lines
667 B
PHP
Raw Permalink Normal View History

2025-07-27 19:55:19 +02:00
<?php
/**
* Plugin Name: NPS Survey
* Description: It is a nps survey library.
* Author: Brainstorm Force
2026-03-31 11:30:59 +02:00
* Version: 1.0.21
2025-07-27 19:55:19 +02:00
* License: GPL v2
* Text Domain: nps-survey
*
* @package {{package}}
*/
2026-03-31 11:30:59 +02:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
2025-07-27 19:58:08 +02:00
// Don't load if another instance is already loaded.
2025-07-27 19:55:19 +02:00
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 ) );
2026-03-31 11:30:59 +02:00
define( 'NPS_SURVEY_VER', '1.0.21' );
2025-07-27 19:55:19 +02:00
require_once 'nps-survey-plugin-loader.php';