PluginProbe
ApplyOnline – Application Form Builder and Manager / 2.6.9
ApplyOnline – Application Form Builder and Manager v2.6.9
2.6.9 trunk 1.0 1.1 1.2 1.2.1 1.3 1.4 1.5 1.5.1 1.6 1.6.1 1.6.2 1.6.3 1.7 1.7.1 1.7.2 1.8 1.8.1 1.8.2 1.8.3 1.9 1.9.1 1.9.2 1.9.3 All 93 releases
apply-online / apply-online.php

apply-online.php in ApplyOnline – Application Form Builder and Manager 2.6.9, at apply-online.php

71 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * The plugin bootstrap file
5 *
6 * @link https://wpreloaded.com
7 * @since 1.0
8 * @package Applyonline
9 *
10 * @wordpress-plugin
11 * Plugin Name: ApplyOnline
12 * Plugin URI: https://wpreloaded.com
13 * Description: Online Form Builder and Applications Manager.
14 * Version: 2.6.9
15 * Author: Farhan Noor
16 * Author URI: https://linkedin.com/in/farhan-noor
17 * License: GPL-2.0+
18 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
19 * Text Domain: apply-online
20 * Domain Path: /languages
21 */
22
23 // If this file is called directly, abort.
24 if ( ! defined( 'WPINC' ) ) {
25 die;
26 }
27 define( 'APPLYONLINE_VERSION', '2.6.9' );
28
29 require_once( 'class-addons-update.php' );
30 /**
31 * The code that runs during plugin activation.
32 * This action is documented in includes/class-applyonline-activator.php
33 */
34 function activate_applyonline() {
35 require_once plugin_dir_path( __FILE__ ) . 'includes/class-applyonline-activator.php';
36 Applyonline_Activator::activate();
37 }
38
39 /**
40 * The code that runs during plugin deactivation.
41 * This action is documented in includes/class-applyonline-deactivator.php
42 */
43 function deactivate_applyonline() {
44 require_once plugin_dir_path( __FILE__ ) . 'includes/class-applyonline-deactivator.php';
45 Applyonline_Deactivator::deactivate();
46 }
47
48 register_activation_hook( __FILE__, 'activate_applyonline' );
49 register_deactivation_hook( __FILE__, 'deactivate_applyonline' );
50
51 /**
52 * The core plugin class that is used to define internationalization,
53 * admin-specific hooks, and public-facing site hooks.
54 */
55 require plugin_dir_path( __FILE__ ) . 'includes/class-applyonline.php';
56 require plugin_dir_path( __FILE__ ) . 'includes/applyonline-functions.php';
57
58 /**
59 * Begins execution of the plugin.
60 *
61 * Since everything within the plugin is registered via hooks,
62 * then kicking off the plugin from this point in the file does
63 * not affect the page life cycle.
64 *
65 * @since 1.0.0
66 */
67 function run_applyonline() {
68 $plugin = new Applyonline();
69 $plugin->run();
70 }
71 run_applyonline();