forked from mt-support/tribe-ext-the-bacon-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.php
56 lines (51 loc) · 1.95 KB
/
plugin.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: The Events Calendar Extension: The Bacon Challenge
* Plugin URI:
* GitHub Plugin URI: https://github.com/mt-support/tribe-ext-the-bacon-challenge
* Description:
* Version: 1.0.0
* Author: Modern Tribe, Inc.
* Author URI: http://m.tri.be/1971
* License: GPL version 3 or any later version
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: the-bacon-challenge
*
* This plugin is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This plugin is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
/**
* Define the base file that loaded the plugin for determining plugin path and other variables.
*
* @since 1.0.0
*
* @var string Base file that loaded the plugin.
*/
define( 'TRIBE_EXTENSION_THE_BACON_CHALLENGE_FILE', __FILE__ );
/**
* Register and load the service provider for loading the extension.
*
* @since 1.0.0
*/
function tribe_extension_the_bacon_challenge() {
// When we dont have autoloader from common we bail.
if ( ! class_exists( 'Tribe__Autoloader' ) ) {
return;
}
// Register the namespace so we can the plugin on the service provider registration.
Tribe__Autoloader::instance()->register_prefix(
'\\Tribe\\Extensions\\The_Bacon_Challenge\\',
__DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'Tribe',
'the-bacon-challenge'
);
tribe_register_provider( '\Tribe\Extensions\The_Bacon_Challenge\Plugin' );
}
// Loads after common is already properly loaded.
add_action( 'tribe_common_loaded', 'tribe_extension_the_bacon_challenge' );