-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplugin.php
436 lines (334 loc) · 12 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
<?php
/**
* Plugin Name: UM Relational Fields
* Plugin URI: https://plusplugins.com
* Description: Add relationships between users, post types and taxonomies.
* Author: PlusPlugins
* Version: 1.0
* Author URI: https://plusplugins.com
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
define( 'PP_FIELDS_REQUIRES', '1.3.28' );
class PP_Fields {
public $notice_messge = '';
public $plugin_inactive = false;
function __construct() {
$this->plugin_inactive = false;
add_action( 'init', array( $this, 'plugin_check' ), 10 );
add_action( 'admin_notices', array( $this, 'add_notice' ), 20 );
add_filter( 'redux/options/um_options/sections', array( $this, 'add_field_relationships_tab' ), 9005 );
add_action( 'init', array( $this, 'init' ), 100 );
}
function plugin_check() {
if ( ! class_exists( 'UM_API' ) ) {
$this->notice_messge = __( 'The <strong>UM Relational Fields</strong> extension requires the Ultimate Member plugin to be activated to work properly. You can download it <a href="https://wordpress.org/plugins/ultimate-member">here</a>', 'pp-contact' );
$this->plugin_inactive = true;
} else if ( ! version_compare( ultimatemember_version, PP_FIELDS_REQUIRES, '>=' ) ) {
$this->notice_messge = __( 'The <strong>UM Relational Fields</strong> extension requires a <a href="https://wordpress.org/plugins/ultimate-member">newer version</a> of Ultimate Member to work properly.', 'pp-contact' );
$this->plugin_inactive = true;
}
}
function add_notice() {
if ( ! is_admin() || empty( $this->notice_messge ) ) {
return;
}
echo '<div class="error"><p>' . $this->notice_messge . '</p></div>';
}
function add_field_relationships_tab( $sections ) {
ob_start();
?>
<h2>Enter a relationship in the following format</h2>
<pre>meta_key|type|slug|link</pre>
<h4>meta_key</h4>
<p>This is the meta key of the field generated in the UM Form Builder.<br>
<strong>Important:</strong> The field type should be either <code>dropdown</code> or
<code>multiselect</code>, and "relationship" should be added in the first line of the options field of the
Form Builder.</p>
<h4>type</h4>
<p>This is type of item you are relating to - either <code>user</code>, <code>tax</code> or <code>post</code>.
</p>
<h4>slug</h4>
<p>If your <code>type</code> is <code>user</code>, this value is the user role slug that will filter the options
in the select area. Multiple user roles should be defined as a comma-seperated list eg.
<code>admin,member</code>. Leave empty to add all user roles.<br>
If your <code>type</code> is <code>tax</code>, this value is the taxonomy slug that will filter the options
in the select area. A single taxonomy slug must be entered.<br>
If your <code>type</code> is <code>post</code>, this value is the comma seperated list of post types slugs
that filter the options in the select area.</p>
<h4>link</h4>
<p>Set this value to <code>true</code> if you want to hyperlink the users or posts in display mode on the
profile, or <code>false</code> to disable hyperlinks. If your type is <code>user</code>, you can also use
<code>avatar</code> here to display an avatar.</p>
<h4>Examples</h4>
<p><code>my_coach|user|coach|true</code></p>
<p><code>fav_meal|post|recipes|true</code></p>
<p><code>recommended_content|post|post,page|true</code></p>
<p><code>friends|user||false</code></p>
<p><code>category|tax|category|true</code></p>
<h4>Questions?</h4>
<p>Shoot us an email: <strong>info@plusplugins.com</strong></p>
<?php
$desc = ob_get_contents();
ob_end_clean();
$fields = array();
$fields[] = array(
'id' => 'field_relationships',
'type' => 'multi_text',
'default' => array(),
'add_text' => __( 'Add New Relationship', 'ultimatemember' ),
'title' => 'Field Relationships',
'desc' => $desc,
);
$sections[] = array(
'icon' => 'um-faicon-exchange',
'title' => __( 'Field Relationships', 'pp-fields' ),
'fields' => $fields,
'subsection' => false,
);
return $sections;
}
function init() {
if ( $this->plugin_inactive ) {
return;
}
global $ultimatemember;
$relationships = um_get_option( 'field_relationships' );
if ( empty( $relationships ) ) {
return;
}
foreach ( $relationships as $relationship ) {
$args = array_map( 'trim', explode( "|", trim( $relationship ) ) );
$key = isset( $args[0] ) ? $args[0] : '';
$type = isset( $args[1] ) ? $args[1] : '';
$slug = isset( $args[2] ) ? $args[2] : '';
$link = isset( $args[3] ) ? $args[3] : '';
if ( ! empty( $key ) ) {
add_action( 'um_before_form', function ( $args ) use ( $type, $key, $slug, $link ) {
$this->profile_form( $type, $key, $slug, $link );
}, 10, 1 );
$this->search_form( $type, $key, $slug, $link );
$this->filtered_value( $type, $key, $slug, $link );
}
}
}
function items( $type, $slug ) {
$items = array();
if ( $type == 'user' ) {
$args = array();
if ( ! empty( $slug ) ) {
$roles = explode( ",", $slug );
$args['meta_key'] = 'role';
$args['meta_value'] = $roles;
$args['meta_compare'] = 'IN';
}
$items = get_users( $args );
}
if ( $type == 'tax' ) {
$items = get_terms( array( $slug ), array( 'hide_empty' => 0 ) );
}
if ( $type == 'post' ) {
$post_types = array();
if ( empty( $slug ) ) {
$post_types[] = 'post';
} else {
$post_types = explode( ",", $slug );
}
$items = get_posts( array( "post_type" => $post_types, 'posts_per_page' => 999 ) );
}
return $items;
}
function options( $items, $type ) {
$options = array();
if ( $type == 'tax' ) {
foreach ( $items as $item ) {
$options[ $item->term_id ] = apply_filters( 'pp-fields-tax-option-field', $item->name, $item );
}
}
if ( $type == 'user' ) {
foreach ( $items as $item ) {
$options[ $item->ID ] = apply_filters( 'pp-fields-user-option-field', $item->display_name, $item );
}
}
if ( $type == 'post' ) {
foreach ( $items as $item ) {
$options[ $item->ID ] = apply_filters( 'pp-fields-post-option-field', $item->post_title, $item );
}
}
asort( $options );
return $options;
}
function search_form( $type, $key, $slug, $link ) {
add_filter( "um_search_field_{$key}", function ( $attrs ) use ( $type, $key, $slug ) {
$items = $this->items( $type, $slug );
$options = $this->options( $items, $type );
$attrs['options'] = $options;
$attrs['custom'] = true;
return $attrs;
}, 100, 1 );
}
function profile_form( $type, $key, $slug, $link ) {
$profile_id = um_profile_id();
add_filter( "um_{$key}_form_edit_field", function ( $output, $mode ) use ( $type, $key, $slug, $profile_id ) {
$ids = get_user_meta( $profile_id, $key, true );
$replace = '<option value=""></option>';
$items = $this->items( $type, $slug );
$options = $this->options( $items, $type );
foreach ( $options as $k => $v ) {
$selected = '';
if ( is_array( $ids ) ) {
if ( $type == 'tax' ) {
if ( in_array( $k, $ids ) ) {
$selected = 'selected';
}
} elseif ( in_array( $k, $ids ) ) {
$selected = 'selected';
}
} else {
if ( $type == 'tax' ) {
if ( $k == $ids ) {
$selected = 'selected';
}
} elseif ( $k == $ids ) {
$selected = 'selected';
}
}
$replace .= '<option value="' . $k . '" ' . $selected . '>' . $v . '</option>';
}
$output = preg_replace( '%<option .*</option>%', $replace, $output );
return $output;
}, 10, 2 );
add_filter( "um_{$key}_form_show_field", function ( $output, $mode ) use ( $type, $key, $slug, $link, $profile_id ) {
$ids = get_user_meta( $profile_id, $key, true );
if ( ! is_array( $ids ) ) {
$ids = array( $ids );
}
$replace = '<div class="um-field-value">';
$items = array();
if ( $type == 'user' ) {
$items = get_users( array( 'include' => $ids ) );
}
if ( $type == 'tax' ) {
$items = get_terms( array( $slug ), array( 'include' => $ids, 'hide_empty' => 0 ) );
}
if ( $type == 'post' ) {
$post_types = explode( ",", $slug );
$items = get_posts( array(
'include' => $ids,
'post_type' => $post_types,
'posts_per_page' => 999
) );
}
$replace = '<div class="um-field-value">';
$names = array();
foreach ( $items as $item ) {
if ( $type == 'user' ) {
um_fetch_user( $item->ID );
$result = $item->display_name;
if ( $link == 'true' ) {
$result = '<a href="' . um_user_profile_url() . '">' . $item->display_name . '</a>';
} elseif ( $link == 'avatar' ) {
$result = '<a style="display:inline-block" href="' . um_user_profile_url() . '" class="um-tip-s" title="' . um_user( 'display_name' ) . '">' . get_avatar( $item->ID, 40 ) . '</a>';
}
$names[] = apply_filters( 'pp-fields-user-display-field', $result, $item );
}
if ( $type == 'tax' ) {
$result = $item->name;
if ( $link == 'true' ) {
$result = '<a href="' . get_term_link( $item ) . '">' . $item->name . '</a>';
}
$names[] = apply_filters( 'pp-fields-tax-value-field', $result, $item );
}
if ( $type == 'post' ) {
$result = $item->post_title;
if ( $link == 'true' ) {
$result = '<a href="' . get_permalink( $item ) . '">' . $item->post_title . '</a>';
}
$names[] = apply_filters( 'pp-fields-post-value-field', $result, $item );
}
}
// return to profile user data
um_fetch_user( $profile_id );
if ( $link == "avatar" ) {
$replace .= implode( " ", $names );
} else {
$replace .= implode( ", ", $names );
}
$replace .= '</div>';
$find = '%<div class="um-field-value">([0-9,\s]+)*</div>%';
$output = preg_replace( $find, $replace, $output );
return $output;
}, 10, 2 );
}
/**
* Show relation on Profile Card in Members Directory
*
* @param $type
* @param $key
* @param $slug
* @param $link
*/
function filtered_value( $type, $key, $slug, $link ) {
add_filter( "um_profile_field_filter_hook__{$key}", function ( $value, $data ) use ( $type, $key, $slug, $link ) {
$profile_id = um_user( 'ID' );
$ids = get_user_meta( $profile_id, $key, true );
if ( ! is_array( $ids ) ) {
$ids = array( $ids );
}
$items = array();
if ( $type == 'user' ) {
$items = get_users( array( 'include' => $ids ) );
}
if ( $type == 'tax' ) {
$items = get_terms( array( $slug ), array( 'include' => $ids, 'hide_empty' => 0 ) );
}
if ( $type == 'post' ) {
$post_types = explode( ",", $slug );
$items = get_posts( array(
'include' => $ids,
'post_type' => $post_types,
'posts_per_page' => 999
) );
}
$modified_value = '<div class="um-field-value">';
$names = array();
foreach ( $items as $item ) {
if ( $type == 'user' ) {
um_fetch_user( $item->ID );
$result = $item->display_name;
if ( $link == 'true' ) {
$result = '<a href="' . um_user_profile_url() . '">' . $item->display_name . '</a>';
} elseif ( $link == 'avatar' ) {
$result = '<a style="display:inline-block" href="' . um_user_profile_url() . '" class="um-tip-s" title="' . um_user( 'display_name' ) . '">' . get_avatar( $item->ID, 40 ) . '</a>';
}
$names[] = apply_filters( 'pp-fields-user-display-field', $result, $item );
}
if ( $type == 'tax' ) {
$result = $item->name;
if ( $link == 'true' ) {
$result = '<a href="' . get_term_link( $item ) . '">' . $item->name . '</a>';
}
$names[] = apply_filters( 'pp-fields-tax-value-field', $result, $item );
}
if ( $type == 'post' ) {
$result = $item->post_title;
if ( $link == 'true' ) {
$result = '<a href="' . get_permalink( $item ) . '">' . $item->post_title . '</a>';
}
$names[] = apply_filters( 'pp-fields-post-value-field', $result, $item );
}
}
// return to profile user data
um_fetch_user( $profile_id );
if ( $link == "avatar" ) {
$modified_value .= implode( " ", $names );
} else {
$modified_value .= implode( ", ", $names );
}
$modified_value .= '</div>';
return $modified_value;
}, 10, 2 );
}
}
new PP_Fields();