PluginProbe
Route ‑ Shipping Protection / 2.2.4
Route ‑ Shipping Protection v2.2.4
2.4.16 2.4.15 2.4.14 2.4.13 2.4.12 2.4.11 2.4.10 2.4.9 2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.2.4 2.2.5 2.2.6 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.3 2.4.0 All 150 releases
routeapp / routeapp.php

routeapp.php in Route ‑ Shipping Protection 2.2.4, at routeapp.php

65 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 *
4 * @link https://route.com/
5 * @since 1.0.0
6 * @package Routeapp
7 *
8 * @wordpress-plugin
9 * Plugin Name: Route App
10 * Plugin URI: https://route.com/for-merchants/
11 * Description: Route allows shoppers to insure their orders with one-click during checkout, adding a layer of 3rd party trust while improving the customer shopping experience.
12 * Version: 2.2.4
13 * Author: Route
14 * Author URI: https://route.com/
15 * License: GPL-2.0+
16 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
17 * Text Domain: routeapp
18 * Domain Path: /languages
19 */
20
21 // If this file is called directly, abort.
22 if ( ! defined( 'WPINC' ) ) {
23 die;
24 }
25 /**
26 * Currently plugin version.
27 */
28 define( 'ROUTEAPP_VERSION', '2.2.4' );
29
30 /**
31 *
32 */
33 function activate_routeapp() {
34 require_once plugin_dir_path( __FILE__ ) . 'includes/class-routeapp-activator.php';
35 Routeapp_Activator::activate();
36 }
37
38 /**
39 *
40 */
41 function deactivate_routeapp() {
42 require_once plugin_dir_path( __FILE__ ) . 'includes/class-routeapp-deactivator.php';
43 Routeapp_Deactivator::deactivate();
44 }
45
46 register_activation_hook( __FILE__, 'activate_routeapp' );
47 register_deactivation_hook( __FILE__, 'deactivate_routeapp' );
48
49 /**
50 *
51 */
52 require plugin_dir_path( __FILE__ ) . 'includes/class-routeapp.php';
53
54 /**
55 * Begins execution of the plugin.
56 *
57 *
58 * @since 1.0.0
59 */
60 function run_routeapp() {
61 $routeapp = new Routeapp();
62 $routeapp->run();
63 }
64 run_routeapp();
65