-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathdeprecated.php
More file actions
203 lines (193 loc) · 6.41 KB
/
deprecated.php
File metadata and controls
203 lines (193 loc) · 6.41 KB
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
<?php
defined('ABSPATH') || exit;
/*
* Deprecated since v8.0
*/
add_action('plugins_loaded', function () {
if (!glsr()->filterBool('support/deprecated/v8', true)) {
return;
}
add_filter('site-reviews/review-form/fields/order', function ($order) {
return apply_filters_deprecated('site-reviews/review-form/order',
[$order],
'8.0',
'site-reviews/review-form/fields/order'
);
});
});
/*
* Deprecated since v7.0
*/
add_action('plugins_loaded', function () {
if (!glsr()->filterBool('support/deprecated/v7', true)) {
return;
}
add_filter('site-reviews/review-form/fields/all', function ($fields, $args) {
return apply_filters_deprecated('site-reviews/review-form/fields/normalized',
[$fields, $args],
'7.0',
'site-reviews/review-form/fields/all'
);
}, 10, 2);
});
/*
* Deprecated since v6.0
*/
add_action('plugins_loaded', function () {
if (!glsr()->filterBool('support/deprecated/v6', true)) {
return;
}
add_filter('site-reviews/rest-api/reviews/schema/properties', function ($properties) {
return apply_filters_deprecated('site-reviews/rest-api/reviews/properties',
[$properties],
'6.5.0',
'site-reviews/rest-api/reviews/schema/properties'
);
}, 9);
add_filter('site-reviews/rest-api/summary/schema/properties', function ($properties) {
return apply_filters_deprecated('site-reviews/rest-api/summary/properties',
[$properties],
'6.5.0',
'site-reviews/rest-api/summary/schema/properties'
);
}, 9);
add_action('site-reviews/review/updated', function ($review, $data) {
do_action_deprecated('site-reviews/review/saved',
[$review, $data],
'6.7.0',
'site-reviews/review/updated'
);
}, 10, 2);
add_filter('site-reviews/slack/notification', function ($notification) {
return apply_filters_deprecated('site-reviews/slack/compose',
[$notification],
'6.9.0',
'site-reviews/slack/notification'
);
});
});
/*
* Deprecated since v5.0
*/
add_action('plugins_loaded', function () {
if (!glsr()->filterBool('support/deprecated/v5', true)) {
return;
}
/*
* Provide support for the deprecated {{ assigned_to }} tag
* @param string $template
* @return string
* @since 5.0
*/
add_filter('site-reviews/build/template/review', function ($template) {
return str_replace('{{ assigned_to }}', '{{ assigned_links }}', $template);
});
/*
* Fix the {{ review_id }} tag in the review template which now only returns the ID
* @param string $template
* @return string
* @since 5.3
*/
add_filter('site-reviews/build/template/review', function ($template) {
return str_replace('id="{{ review_id }}"', 'id="review-{{ review_id }}"', $template);
});
add_filter('site-reviews/config/forms/review-form', function ($config) {
return apply_filters_deprecated('site-reviews/config/forms/submission-form',
[$config],
'5.0',
'site-reviews/config/forms/review-form'
);
}, 9);
add_filter('site-reviews/rendered/template/reviews', function ($html) {
return apply_filters_deprecated('site-reviews/reviews/reviews-wrapper',
[$html],
'5.0',
'',
'Please use a custom "reviews.php" template instead.'
);
});
add_filter('site-reviews/review-form/fields/order', function ($order) {
return apply_filters_deprecated('site-reviews/submission-form/order',
[$order],
'5.0',
'site-reviews/review-form/fields/order'
);
}, 9);
add_filter('site-reviews/defaults/review-table-filters', function ($defaults) {
return apply_filters_deprecated('site-reviews/review-table/filter',
[$defaults],
'5.11.0',
'site-reviews/defaults/review-table-filters'
);
});
add_action('site-reviews/review/responded', function ($review, $response) {
do_action_deprecated('site-reviews/review/response',
[$review, $response],
'5.11.0',
'site-reviews/review/responded',
'This hook is documented on the FAQ page.'
);
}, 9, 2);
});
function glsr_calculate_ratings()
{
_deprecated_function('glsr_calculate_ratings', '5.0');
}
function glsr_get_rating($args = [])
{
_deprecated_function('glsr_get_rating', '5.0', 'glsr_get_ratings');
return new GeminiLabs\SiteReviews\Arguments($args);
}
function glsr_store_deprecated_hook($hook, $replacement, $version, $message)
{
if (!str_starts_with($hook, glsr()->id)) {
return;
}
if (empty($replacement)) {
$notice = sprintf(
'Hook %1$s is <strong>deprecated</strong> since version %2$s with no alternative available.',
$hook,
$version
);
} else {
$notice = sprintf(
'Hook %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.',
$hook,
$version,
$replacement
);
}
glsr()->append('deprecated', trim($notice.' '.$message));
}
add_action('deprecated_hook_run', 'glsr_store_deprecated_hook', 10, 4);
function glsr_store_deprecated_function($fn, $replacement, $version)
{
if (!str_starts_with($fn, glsr()->prefix)) {
return;
}
if (empty($replacement)) {
$notice = sprintf(
'Function %1$s is <strong>deprecated</strong> since version %2$s with no alternative available.',
$fn,
$version
);
} else {
$notice = sprintf(
'Function %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.',
$fn,
$version,
$replacement
);
}
glsr()->append('deprecated', $notice);
}
add_action('deprecated_function_run', 'glsr_store_deprecated_function', 10, 3);
function glsr_log_deprecated_notices()
{
$notices = glsr()->retrieveAs('array', 'deprecated', []);
$notices = array_keys(array_flip(array_filter($notices)));
natsort($notices);
array_walk($notices, fn ($notice) => glsr_log()->notice($notice));
}
add_action('admin_footer', 'glsr_log_deprecated_notices');
add_action('wp_footer', 'glsr_log_deprecated_notices');