PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.2.74
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.2.74
1.2.74 1.2.73 1.2.72 1.2.71 1.2.70 1.2.69 1.2.68 1.2.67 1.2.66 1.2.65 1.2.64 1.2.63 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 All 174 releases
userswp / vendor / ayecode / wp-deactivation-survey / plugin.php

plugin.php in UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP 1.2.74, at vendor/ayecode/wp-deactivation-survey/plugin.php

41 lines 933 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * This is a file to run this class for testing.
4 *
5 * @wordpress-plugin
6 * Plugin Name: AyeCode Deactivation Survey Testing
7 * Description: If you see this as a plugin something has gone wrong.
8 * Version: 1.0.7
9 * Author: AyeCode
10 * Author URI: https://ayecode.io
11 * Text Domain: ayecode-ds
12 * Domain Path: /languages
13 * Requires at least: 4.2
14 * Tested up to: 5.8
15 */
16
17 if ( ! defined( 'ABSPATH' ) ) {
18 exit;
19 }
20
21 if ( ! class_exists( 'AyeCode_Deactivation_Survey' ) ) {
22 // include the class if needed
23 include_once( dirname( __FILE__ ) . "/wp-deactivation-survey.php" );
24 }
25
26
27 //add_filter('ayecode_deactivation_survey_plugins', function($plugins) {
28 //
29 // $plugins[] = (object)array(
30 // 'slug' => 'ayecode-deactivation-survey-testing',
31 // 'version' => '1.0.0'
32 // );
33 //
34 // return $plugins;
35 //
36 //});
37
38 AyeCode_Deactivation_Survey::instance(array(
39 'slug' => 'ayecode-deactivation-survey-testing',
40 'version' => '1.0.0'
41 ));