forked from Automattic/eventbrite-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eventbrite-api.php
56 lines (49 loc) · 1.72 KB
/
eventbrite-api.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
<?php
/*
Plugin Name: Eventbrite API
Plugin URI: https://github.com/Automattic/eventbrite-api
Description: A WordPress plugin that integrates the Eventbrite API with WordPress and Keyring.
Version: 1.0.10
Author: Automattic
Author URI: http://automattic.com
License: GPL v2 or newer <https://www.gnu.org/licenses/gpl.txt>
*/
/**
* Set our token option on activation if an Eventbrite connection already exists in Keyring.
*/
function eventbrite_check_existing_token() {
// Bail if Keyring isn't activated.
if ( ! class_exists( 'Keyring_SingleStore' ) ) {
return;
}
// Get any Eventbrite tokens we may already have.
$tokens = Keyring_SingleStore::init()->get_tokens( array( 'service'=>'eventbrite' ) );
// If we have one, just use the first.
if ( ! empty( $tokens[0] ) ) {
update_option( 'eventbrite_api_token', $tokens[0]->unique_id );
}
}
register_activation_hook( __FILE__, 'eventbrite_check_existing_token' );
/**
* Load our API on top of the Keyring Eventbrite service.
*/
function eventbrite_api_load_keyring_service() {
require_once( 'inc/class-eventbrite-api.php' );
}
add_action( 'keyring_load_services', 'eventbrite_api_load_keyring_service', 11 );
/**
* Load classes.
*/
function eventbrite_api_init() {
// Load Eventbrite_Requirements.
require_once( 'inc/class-eventbrite-requirements.php' );
// No point loading unless we have an active Eventbrite connection.
if ( Eventbrite_Requirements::has_active_connection() ) {
require_once( 'inc/class-eventbrite-manager.php' );
require_once( 'inc/class-eventbrite-query.php' );
require_once( 'inc/class-eventbrite-templates.php' );
require_once( 'inc/class-eventbrite-event.php' );
require_once( 'inc/functions.php' );
}
}
add_action( 'init', 'eventbrite_api_init' );