-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwp-deactivate-feedback.php
More file actions
50 lines (45 loc) · 1.68 KB
/
Copy pathwp-deactivate-feedback.php
File metadata and controls
50 lines (45 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* Plugin Name: WP Deactivate Feedback
* Plugin URI: https://darkog.com/p/wp-deactivate-feedback/
* Description: Displays website deactivations that utilize wp-deactivate-feedback-client
* Version: 1.1.1
* Author: Darko Gjorgjijoski
* Author URI: https://darkog.com/
* Text Domain: wp-deactivate-feedback
* Domain Path: /i18n/languages/
* License: GPL-2.0-or-later
* -----
*
* Copyright (C) 2024 Darko Gjorgjijoski. All Rights Reserved.
* Copyright (C) 2024 IDEOLOGIX MEDIA DOOEL. All Rights Reserved.
* Copyright (C) 2024 IgniteKit. All Rights Reserved.
*
* WP Deactivate Feedback is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* WP Deactivate Feedback program is distributed in the hope that it
* will be useful,but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License v3
* along with this program;
*
* If not, see: https://www.gnu.org/licenses/gpl-2.0.en.html
*
* Code written, maintained by Darko Gjorgjijoski (https://darkog.com)
*
*/
if ( ! defined( 'ABSPATH' ) ) {
return;
}
require_once 'vendor/autoload.php';
define( 'WPDF_DATABASE_VERSION', 1 );
define( 'WPDF_FILE_PATH', __FILE__ );
define( 'WPDF_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
if ( ! isset( $GLOBALS['WP_Deactivate_Feedback'] ) ) {
$GLOBALS['WP_Deactivate_Feedback'] = new \IgniteKit\WP\DeactivateFeedback\Boot();
}