PluginProbe
Pushly / 2.1.6
Pushly v2.1.6
2.4.0 2.3.0 trunk 1.0 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 2.0.0 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1
pushly / pushly.php

pushly.php in Pushly 2.1.6, at pushly.php

31 lines 1006 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @wordpress-plugin
4 * Plugin Name: Pushly
5 * Plugin URI: http://pushly.com
6 * Description: Provide Pushly push notification capability to WordPress installations
7 * Version: 2.1.6
8 * Author: Pushly
9 * Author URI: http://pushly.com/
10 * License: GPLv2
11 * Text Domain: pushly
12 */
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit;
16 }
17
18 // loads environment
19 require_once dirname( __FILE__ ) . '/environment.php';
20
21 require_once PUSHLY__DIR . '/includes/admin/models/notification.php';
22 require_once PUSHLY__DIR . '/includes/admin/class-pushly-admin-util.php';
23 require_once PUSHLY__DIR . '/includes/admin/class-pushly-admin-settings.php';
24 require_once PUSHLY__DIR . '/includes/admin/class-pushly-admin-post.php';
25
26 add_action('init', ['Pushly_Admin_Settings', 'instance']);
27 add_action('init', ['Pushly_Admin_Post', 'instance']);
28
29 require_once PUSHLY__DIR . '/includes/public/class-pushly-public.php';
30 add_action('init', ['Pushly_Public', 'instance']);
31