-
Notifications
You must be signed in to change notification settings - Fork 1
/
ninja-forms-spn-addon.php
117 lines (101 loc) · 3.8 KB
/
ninja-forms-spn-addon.php
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/**
* The plugin bootstrap file
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all of the dependencies used by the plugin,
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* @link https://jdi.company
* @since 1.0.0
* @package Ninja_Forms_Spn_Addon
*
* @wordpress-plugin
* Plugin Name: Smart Phone Addon for Ninja Forms
* Plugin URI: https://github.com/JDI-company/Smart-Phone-for-Ninja-Forms
* Description: Smart Phone Addon for Ninja Forms is a plugin to add country flag to the Phone Number field.
* Version: 1.3.1
* Author: JDI
* Author URI: https://jdi.company
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: ninja-forms-spn-addon
* Domain Path: /languages
* Requires Plugins: ninja-forms
*/
/*
Smart Phone Addon for Ninja Forms 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
any later version.
Smart Phone Addon for Ninja Forms 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
along with Smart Phone Addon for Ninja Forms. If not, see http://www.gnu.org/licenses/gpl-2.0.txt.
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Currently plugin version.
* Start at version 1.0.0 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define( 'NINJA_FORMS_SPN_ADDON_VERSION', '1.3.1' );
/**
* The code that runs during plugin activation.
* This action is documented in includes/class-ninja-forms-spn-addon-activator.php
*/
function activate_ninja_forms_spn_addon() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-ninja-forms-spn-addon-activator.php';
Ninja_Forms_Spn_Addon_Activator::activate();
}
/**
* The code that runs during plugin deactivation.
* This action is documented in includes/class-ninja-forms-spn-addon-deactivator.php
*/
function deactivate_ninja_forms_spn_addon() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-ninja-forms-spn-addon-deactivator.php';
Ninja_Forms_Spn_Addon_Deactivator::deactivate();
}
register_activation_hook( __FILE__, 'activate_ninja_forms_spn_addon' );
register_deactivation_hook( __FILE__, 'deactivate_ninja_forms_spn_addon' );
/**
* The core plugin class that is used to define internationalization,
* admin-specific hooks, and public-facing site hooks.
*/
require plugin_dir_path( __FILE__ ) . 'includes/class-ninja-forms-spn-addon.php';
/**
* Check if it is correct page to run plugin
*/
function is_spn_allowed_to_run() {
$is_admin_area = is_admin();
$is_ninja_forms_page = isset( $_GET['page'] ) && 'ninja-forms' === $_GET['page'];
$is_ajax_request = defined( 'DOING_AJAX' ) && DOING_AJAX;
$is_form_id_missing = ! isset( $_GET['form_id'] );
if ( $is_admin_area && $is_ninja_forms_page && ! $is_ajax_request && $is_form_id_missing ) {
return false;
}
return true;
}
/**
* Begins execution of the plugin.
*
* Since everything within the plugin is registered via hooks,
* then kicking off the plugin from this point in the file does
* not affect the page life cycle.
*
* @since 1.0.0
*/
function run_ninja_forms_spn_addon() {
if ( ! is_spn_allowed_to_run() ) {
return;
}
$plugin = new Ninja_Forms_Spn_Addon();
$plugin->run();
}
run_ninja_forms_spn_addon();