forked from scribu/wp-posts-to-posts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
posts-to-posts.php
74 lines (53 loc) · 1.71 KB
/
posts-to-posts.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/*
Plugin Name: Posts 2 Posts
Description: Create many-to-many relationships between all types of posts.
Version: 1.6.5
Author: scribu
Author URI: http://scribu.net/
Plugin URI: http://scribu.net/wordpress/posts-to-posts
Text Domain: posts-to-posts
Domain Path: /lang
*/
if ( class_exists( 'WP_CLI' ) ) {
include 'command.php';
}
define( 'P2P_PLUGIN_VERSION', '1.6.5' );
define( 'P2P_TEXTDOMAIN', 'posts-to-posts' );
function _p2p_load() {
load_plugin_textdomain( P2P_TEXTDOMAIN, '', basename( dirname( __FILE__ ) ) . '/lang' );
if ( !function_exists( 'p2p_register_connection_type' ) ) {
require_once dirname( __FILE__ ) . '/vendor/scribu/lib-posts-to-posts/autoload.php';
}
P2P_Storage::init();
P2P_Query_Post::init();
P2P_Query_User::init();
P2P_URL_Query::init();
P2P_Widget::init();
P2P_Shortcodes::init();
register_uninstall_hook( __FILE__, array( 'P2P_Storage', 'uninstall' ) );
if ( is_admin() )
_p2p_load_admin();
}
function _p2p_load_admin() {
P2P_Autoload::register( 'P2P_', dirname( __FILE__ ) . '/admin' );
P2P_Mustache::init();
new P2P_Box_Factory;
new P2P_Column_Factory;
new P2P_Dropdown_Factory;
new P2P_Tools_Page;
}
function _p2p_init() {
// Safe hook for calling p2p_register_connection_type()
do_action( 'p2p_init' );
}
if ( is_dir( dirname( __FILE__ ) . '/vendor' ) ) {
// Not using vendor/autload.php because scb-framework/load.php has better compatibility
if (!class_exists('Mustache_Autoloader')) {
require_once dirname( __FILE__ ) . '/vendor/mustache/mustache/src/Mustache/Autoloader.php';
Mustache_Autoloader::register();
}
require_once dirname( __FILE__ ) . '/vendor/scribu/scb-framework/load.php';
}
scb_init( '_p2p_load' );
add_action( 'wp_loaded', '_p2p_init' );