-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
131 lines (99 loc) · 3.8 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/*
╔═╗╔╦╗╔═╗╔╦╗
║ ║ ║ ╠╣ ║║║ https://otshelnik-fm.ru
╚═╝ ╩ ╚ ╩ ╩
* *** Возможности: ****
в Readme файле
@todo разобраться с login_failed их может быть нес-ко тысяч. Пока вырубил
*/
// БД
add_action( 'init', 'una_define_constant', 5 );
function una_define_constant() {
if ( defined( 'UNA_DB' ) )
return false;
global $wpdb;
define( 'UNA_DB', $wpdb->base_prefix . 'otfm_universe_activity' );
}
// подключим файлы
require_once 'inc/fires.php'; // хуки
require_once 'inc/callbacks.php'; // колбэки
require_once 'inc/functions.php'; // все функции
require_once 'inc/integration.php'; // интеграции
require_once 'inc/addon-settings.php'; // настройки
require_once 'inc/class-una-query.php'; // класс регистрирущий нашу таблицу
require_once 'inc/class-una-shortcode.php'; // шорткод
require_once 'inc/class-una-render-actions.php'; // генерация настроек
/*
* Интеграции
*
* пока набиваю так, как накопится критическая масса перепишу
*/
// плагин "Asgaros Forum" https://wordpress.org/plugins/asgaros-forum/
if ( class_exists( 'AsgarosForum' ) ) {
require_once 'integration/plugin-asgaros.php';
}
//
if ( rcl_exist_addon( 'rating-system' ) ) {
require_once 'integration/core-addon-rating-system.php';
}
//
if ( rcl_exist_addon( 'feed' ) ) {
require_once 'integration/core-addon-feed.php';
}
//
if ( rcl_exist_addon( 'groups' ) ) {
require_once 'integration/core-addon-groups.php';
}
//
if ( rcl_exist_addon( 'prime-forum' ) ) {
require_once 'integration/core-addon-prime-forum.php';
}
//
if ( rcl_exist_addon( 'country-and-city-in-profile-pro' ) ) {
require_once 'integration/addon-country-and-city-in-profile-pro.php';
}
// доп "Birthday in Profile" https://codeseller.ru/?p=13377
if ( rcl_exist_addon( 'birthday-in-profile' ) ) {
require_once 'integration/addon-birthday-in-profile.php';
}
// доп "Bot User Info" https://codeseller.ru/?p=17458
if ( rcl_exist_addon( 'bot-user-info' ) ) {
require_once 'integration/addon-bot-user-info.php';
}
// доп "Subscription Two" https://codeseller.ru/?p=16774
if ( rcl_exist_addon( 'subscription-two' ) ) {
require_once 'integration/addon-subscription-two.php';
}
// доп "Pretty URL Author" https://codeseller.ru/?p=13784
if ( rcl_exist_addon( 'pretty-url-author' ) ) {
require_once 'integration/addon-pretty-url-author.php';
}
// доп "Groups Theme RePlace" https://codeseller.ru/?p=21473
if ( rcl_exist_addon( 'groups-theme-replace' ) ) {
require_once 'integration/addon-groups-theme-replace.php';
}
// доп "Group New Post Notify" https://codeseller.ru/?p=21596
if ( rcl_exist_addon( 'group-new-post-notify' ) ) {
require_once 'integration/addon-group-new-post-notify.php';
}
// доп "Bookmarks" https://codeseller.ru/?p=4231
if ( rcl_exist_addon( 'bookmarks' ) ) {
require_once 'integration/addon-bookmarks.php';
}
// доп "Gallery Reload" https://codeseller.ru/?p=24885
if ( rcl_exist_addon( 'gallery-reload' ) ) {
require_once 'integration/addon-gallery-reload.php';
}
// доп "video room" https://codeseller.ru/?p=24987
if ( rcl_exist_addon( 'video-room' ) ) {
require_once 'integration/addon-video-room.php';
}
// доп "SoundPlay" https://codeseller.ru/?p=10165
if ( rcl_exist_addon( 'soundplay' ) ) {
require_once 'integration/addon-soundplay.php';
}
// доп "Friends Recall" https://codeseller.ru/?p=20866
if ( rcl_exist_addon( 'friends-recall' ) ) {
require_once 'integration/addon-friends-recall.php';
}