-
Notifications
You must be signed in to change notification settings - Fork 0
/
rapid-connect.php
34 lines (30 loc) · 1.14 KB
/
rapid-connect.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
<?php
/**
*
* @package Rapid_Connect
* @author Bradley Beddoes <[email protected]>
* @license GPL-3.0
* @link http://rapid.aaf.edu.au
* @copyright 2013 Australian Access Federation
*
* @wordpress-plugin
* Plugin Name: AAF Rapid Connect
* Plugin URI: http://rapid.aaf.edu.au
* Description: Allows subscribers of the Australian Access Federation to rapidly create collaborative Wordpress sites.
* Version: 0.1.1
* Author: Bradley Beddoes
* Author URI: http://www.bradleybeddoes.com
* Text Domain: rapid-connect-en
* License: GPL-3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once( plugin_dir_path( __FILE__ ) . 'class-rapid-connect.php' );
// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
register_activation_hook( __FILE__, array( 'Rapid_Connect', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'Rapid_Connect', 'deactivate' ) );
add_action( 'plugins_loaded', array( 'Rapid_Connect', 'get_instance' ) );