1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* GravityView template tags API |
4
|
|
|
* |
5
|
|
|
* @package GravityView |
6
|
|
|
* @license GPL2+ |
7
|
|
|
* @author Katz Web Services, Inc. |
8
|
|
|
* @link http://gravityview.co |
9
|
|
|
* @copyright Copyright 2014, Katz Web Services, Inc. |
10
|
|
|
* |
11
|
|
|
* @since 1.0.0 |
12
|
|
|
*/ |
13
|
|
|
|
14
|
|
|
class GravityView_API { |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* Fetch Field Label |
18
|
|
|
* |
19
|
|
|
* @deprecated Use \GV\Field::get_label() |
20
|
|
|
* |
21
|
|
|
* @access public |
22
|
|
|
* @static |
23
|
|
|
* @param array $field GravityView field array |
24
|
|
|
* @param array $entry Gravity Forms entry array |
25
|
|
|
* @param boolean $force_show_label Whether to always show the label, regardless of field settings |
26
|
|
|
* @return string |
27
|
|
|
*/ |
28
|
3 |
|
public static function field_label( $field, $entry = array(), $force_show_label = false ) { |
29
|
|
|
|
30
|
3 |
|
$gravityview_view = GravityView_View::getInstance(); |
31
|
|
|
|
32
|
3 |
|
$form = $gravityview_view->getForm(); |
33
|
|
|
|
34
|
3 |
|
if ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && ! empty( $GLOBALS['GravityView_API_field_label_override'] ) ) { |
35
|
|
|
/** Allow to fall through for back compatibility testing purposes. */ |
36
|
|
|
} else { |
37
|
3 |
|
return \GV\Mocks\GravityView_API_field_label( $form, $field, $entry, $force_show_label ); |
38
|
|
|
} |
39
|
|
|
|
40
|
1 |
|
$label = ''; |
41
|
|
|
|
42
|
1 |
|
if( !empty( $field['show_label'] ) || $force_show_label ) { |
43
|
|
|
|
44
|
1 |
|
$label = $field['label']; |
45
|
|
|
|
46
|
|
|
// Support Gravity Forms 1.9+ |
47
|
1 |
|
if( class_exists( 'GF_Field' ) ) { |
48
|
|
|
|
49
|
1 |
|
$field_object = RGFormsModel::get_field( $form, $field['id'] ); |
50
|
|
|
|
51
|
1 |
|
if( $field_object ) { |
52
|
|
|
|
53
|
1 |
|
$input = GFFormsModel::get_input( $field_object, $field['id'] ); |
54
|
|
|
|
55
|
|
|
// This is a complex field, with labels on a per-input basis |
56
|
1 |
|
if( $input ) { |
57
|
|
|
|
58
|
|
|
// Does the input have a custom label on a per-input basis? Otherwise, default label. |
59
|
1 |
|
$label = ! empty( $input['customLabel'] ) ? $input['customLabel'] : $input['label']; |
60
|
|
|
|
61
|
|
|
} else { |
62
|
|
|
|
63
|
|
|
// This is a field with one label |
64
|
1 |
|
$label = $field_object->get_field_label( true, $field['label'] ); |
65
|
|
|
|
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
// Use Gravity Forms label by default, but if a custom label is defined in GV, use it. |
73
|
1 |
|
if ( !empty( $field['custom_label'] ) ) { |
74
|
|
|
|
75
|
1 |
|
$label = self::replace_variables( $field['custom_label'], $form, $entry ); |
76
|
|
|
|
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
/** |
80
|
|
|
* @filter `gravityview_render_after_label` Append content to a field label |
81
|
|
|
* @param[in,out] string $appended_content Content you can add after a label. Empty by default. |
82
|
|
|
* @param[in] array $field GravityView field array |
83
|
|
|
*/ |
84
|
1 |
|
$label .= apply_filters( 'gravityview_render_after_label', '', $field ); |
85
|
|
|
|
86
|
|
|
} // End $field['show_label'] |
87
|
|
|
|
88
|
|
|
/** |
89
|
|
|
* @filter `gravityview/template/field_label` Modify field label output |
90
|
|
|
* @since 1.7 |
91
|
|
|
* @param[in,out] string $label Field label HTML |
92
|
|
|
* @param[in] array $field GravityView field array |
93
|
|
|
* @param[in] array $form Gravity Forms form array |
94
|
|
|
* @param[in] array $entry Gravity Forms entry array |
95
|
|
|
* |
96
|
|
|
* @deprecated Use the context-aware version `gravityview/template/field/label` |
97
|
|
|
*/ |
98
|
1 |
|
$label = apply_filters( 'gravityview/template/field_label', $label, $field, $form, $entry ); |
99
|
|
|
|
100
|
1 |
|
return $label; |
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
/** |
104
|
|
|
* Alias for GravityView_Merge_Tags::replace_variables() |
105
|
|
|
* |
106
|
|
|
* @see GravityView_Merge_Tags::replace_variables() Moved in 1.8.4 |
107
|
|
|
* @since 1.22.4 - Added $nl2br, $format, $aux_data args |
108
|
|
|
* |
109
|
|
|
* @param string $text Text to replace variables in |
110
|
|
|
* @param array $form GF Form array |
111
|
|
|
* @param array $entry GF Entry array |
112
|
|
|
* @param bool $url_encode Pass return value through `url_encode()` |
113
|
|
|
* @param bool $esc_html Pass return value through `esc_html()` |
114
|
|
|
* @param bool $nl2br Convert newlines to <br> HTML tags |
115
|
|
|
* @param string $format The format requested for the location the merge is being used. Possible values: html, text or url. |
116
|
|
|
* @param array $aux_data Additional data to be used to replace merge tags {@see https://www.gravityhelp.com/documentation/article/gform_merge_tag_data/} |
117
|
|
|
* @return string Text with variables maybe replaced |
118
|
|
|
*/ |
119
|
50 |
|
public static function replace_variables( $text, $form = array(), $entry = array(), $url_encode = false, $esc_html = true, $nl2br = true, $format = 'html', $aux_data = array() ) { |
120
|
50 |
|
return GravityView_Merge_Tags::replace_variables( $text, $form, $entry, $url_encode, $esc_html, $nl2br, $format, $aux_data ); |
121
|
|
|
} |
122
|
|
|
|
123
|
|
|
/** |
124
|
|
|
* Get column width from the field setting |
125
|
|
|
* |
126
|
|
|
* @since 1.9 |
127
|
|
|
* |
128
|
|
|
* @param array $field Array of settings for the field |
129
|
|
|
* @param string $format Format for width. "%" (default) will return |
130
|
|
|
* |
131
|
|
|
* @return string|null If not empty, string in $format format. Otherwise, null. |
132
|
|
|
*/ |
133
|
35 |
|
public static function field_width( $field, $format = '%d%%' ) { |
134
|
|
|
|
135
|
35 |
|
$width = NULL; |
136
|
|
|
|
137
|
35 |
|
if( !empty( $field['width'] ) ) { |
138
|
1 |
|
$width = absint( $field['width'] ); |
139
|
|
|
|
140
|
|
|
// If using percentages, limit to 100% |
141
|
1 |
|
if( '%d%%' === $format && $width > 100 ) { |
142
|
1 |
|
$width = 100; |
143
|
|
|
} |
144
|
|
|
|
145
|
1 |
|
$width = sprintf( $format, $width ); |
146
|
|
|
} |
147
|
|
|
|
148
|
35 |
|
return $width; |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
/** |
152
|
|
|
* Fetch Field class |
153
|
|
|
* |
154
|
|
|
* @access public |
155
|
|
|
* @static |
156
|
|
|
* @param mixed $field |
157
|
|
|
* @return string |
158
|
|
|
*/ |
159
|
38 |
|
public static function field_class( $field, $form = NULL, $entry = NULL ) { |
160
|
38 |
|
$classes = array(); |
161
|
|
|
|
162
|
38 |
|
if( !empty( $field['custom_class'] ) ) { |
163
|
|
|
|
164
|
2 |
|
$custom_class = $field['custom_class']; |
165
|
|
|
|
166
|
2 |
|
if( !empty( $entry ) ) { |
167
|
|
|
|
168
|
|
|
// We want the merge tag to be formatted as a class. The merge tag may be |
169
|
|
|
// replaced by a multiple-word value that should be output as a single class. |
170
|
|
|
// "Office Manager" will be formatted as `.OfficeManager`, not `.Office` and `.Manager` |
171
|
2 |
|
add_filter('gform_merge_tag_filter', 'sanitize_html_class'); |
172
|
|
|
|
173
|
2 |
|
$custom_class = self::replace_variables( $custom_class, $form, $entry); |
174
|
|
|
|
175
|
|
|
// And then we want life to return to normal |
176
|
2 |
|
remove_filter('gform_merge_tag_filter', 'sanitize_html_class'); |
177
|
|
|
} |
178
|
|
|
|
179
|
|
|
// And now we want the spaces to be handled nicely. |
180
|
2 |
|
$classes[] = gravityview_sanitize_html_class( $custom_class ); |
181
|
|
|
|
182
|
|
|
} |
183
|
|
|
|
184
|
38 |
|
if(!empty($field['id'])) { |
185
|
38 |
|
if( !empty( $form ) && !empty( $form['id'] ) ) { |
186
|
38 |
|
$form_id = '-'.$form['id']; |
187
|
|
|
} else { |
188
|
|
|
// @deprecated path. Form should always be given. |
189
|
|
|
gravityview()->log->warning( 'GravityView_View::getInstance() legacy API called' ); |
190
|
|
|
$gravityview_view = GravityView_View::getInstance(); |
191
|
|
|
$form_id = $gravityview_view->getFormId() ? '-'. $gravityview_view->getFormId() : ''; |
192
|
|
|
} |
193
|
|
|
|
194
|
38 |
|
$classes[] = 'gv-field'.$form_id.'-'.$field['id']; |
195
|
|
|
} |
196
|
|
|
|
197
|
38 |
|
return esc_attr(implode(' ', $classes)); |
198
|
|
|
} |
199
|
|
|
|
200
|
|
|
/** |
201
|
|
|
* Fetch Field HTML ID |
202
|
|
|
* |
203
|
|
|
* @since 1.11 |
204
|
|
|
* |
205
|
|
|
* @access public |
206
|
|
|
* @static |
207
|
|
|
* @param array $field GravityView field array passed to gravityview_field_output() |
208
|
|
|
* @param array $form Gravity Forms form array, if set. |
209
|
|
|
* @param array $entry Gravity Forms entry array |
210
|
|
|
* @return string Sanitized unique HTML `id` attribute for the field |
211
|
|
|
*/ |
212
|
34 |
|
public static function field_html_attr_id( $field, $form = array(), $entry = array() ) { |
|
|
|
|
213
|
34 |
|
$id = $field['id']; |
214
|
|
|
|
215
|
34 |
|
if ( ! empty( $id ) ) { |
216
|
34 |
|
if ( ! empty( $form ) && ! empty( $form['id'] ) ) { |
217
|
34 |
|
$form_id = '-' . $form['id']; |
218
|
|
|
} else { |
219
|
|
|
// @deprecated path. Form should always be given. |
220
|
|
|
gravityview()->log->warning( 'GravityView_View::getInstance() legacy API called' ); |
221
|
|
|
$gravityview_view = GravityView_View::getInstance(); |
222
|
|
|
$form_id = $gravityview_view->getFormId() ? '-' . $gravityview_view->getFormId() : ''; |
223
|
|
|
} |
224
|
|
|
|
225
|
34 |
|
$id = 'gv-field' . $form_id . '-' . $field['id']; |
226
|
|
|
} |
227
|
|
|
|
228
|
34 |
|
return esc_attr( $id ); |
229
|
|
|
} |
230
|
|
|
|
231
|
|
|
|
232
|
|
|
/** |
233
|
|
|
* Given an entry and a form field id, calculate the entry value for that field. |
234
|
|
|
* |
235
|
|
|
* @deprecated Use \GV\Field_Template::render() or the more low-level \GV\Field::get_value() |
236
|
|
|
* |
237
|
|
|
* @access public |
238
|
|
|
* @param array $entry |
239
|
|
|
* @param array $field |
|
|
|
|
240
|
|
|
* @return null|string |
241
|
|
|
*/ |
242
|
3 |
|
public static function field_value( $entry, $field_settings, $format = 'html' ) { |
243
|
3 |
|
gravityview()->log->notice( '\GravityView_API::field_value is deprecated. Use \GV\Field_Template::render() or \GV\Field::get_value()' ); |
244
|
3 |
|
return \GV\Mocks\GravityView_API_field_value( $entry, $field_settings, $format ); |
|
|
|
|
245
|
|
|
} |
246
|
|
|
|
247
|
|
|
/** |
248
|
|
|
* Generate an anchor tag that links to an entry. |
249
|
|
|
* |
250
|
|
|
* @since 1.6 |
251
|
|
|
* @see GVCommon::get_link_html() |
252
|
|
|
* |
253
|
|
|
* @param string $anchor_text The text or HTML inside the link |
254
|
|
|
* @param array $entry Gravity Forms entry array |
255
|
|
|
* @param array|string $passed_tag_atts Attributes to be added to the anchor tag, such as `title` or `rel`. |
256
|
|
|
* @param array $field_settings Array of field settings. Optional, but passed to the `gravityview_field_entry_link` filter |
257
|
|
|
* |
258
|
|
|
* @since 2.0 |
259
|
|
|
* @param int $base_id The post or the view that this entry is linked from. |
260
|
|
|
* |
261
|
|
|
* @return string|null Returns HTML for an anchor link. Null if $entry isn't defined or is missing an ID. |
262
|
|
|
*/ |
263
|
2 |
|
public static function entry_link_html( $entry = array(), $anchor_text = '', $passed_tag_atts = array(), $field_settings = array(), $base_id = null ) { |
264
|
|
|
|
265
|
2 |
|
if ( empty( $entry ) || ! is_array( $entry ) || ! isset( $entry['id'] ) ) { |
266
|
1 |
|
gravityview()->log->debug( 'Entry not defined; returning null', array( 'data' => $entry ) ); |
267
|
1 |
|
return NULL; |
268
|
|
|
} |
269
|
|
|
|
270
|
2 |
|
$href = self::entry_link( $entry, $base_id ); |
271
|
|
|
|
272
|
2 |
|
if( '' === $href ) { |
273
|
|
|
return NULL; |
274
|
|
|
} |
275
|
|
|
|
276
|
2 |
|
$link = gravityview_get_link( $href, $anchor_text, $passed_tag_atts ); |
277
|
|
|
|
278
|
|
|
/** |
279
|
|
|
* @filter `gravityview_field_entry_link` Modify the link HTML |
280
|
|
|
* @param string $link HTML output of the link |
281
|
|
|
* @param string $href URL of the link |
282
|
|
|
* @param array $entry The GF entry array |
283
|
|
|
* @param array $field_settings Settings for the particular GV field |
284
|
|
|
*/ |
285
|
2 |
|
$output = apply_filters( 'gravityview_field_entry_link', $link, $href, $entry, $field_settings ); |
286
|
|
|
|
287
|
2 |
|
return $output; |
288
|
|
|
} |
289
|
|
|
|
290
|
|
|
/** |
291
|
|
|
* Get the "No Results" text depending on whether there were results. |
292
|
|
|
* @param boolean $wpautop Apply wpautop() to the output? |
293
|
|
|
* |
294
|
|
|
* @since 2.0 |
295
|
|
|
* @param \GV\Template_Context $context The context |
296
|
|
|
* |
297
|
|
|
* @return string HTML of "no results" text |
298
|
|
|
*/ |
299
|
9 |
|
public static function no_results( $wpautop = true, $context = null ) { |
300
|
9 |
|
$is_search = false; |
301
|
|
|
|
302
|
9 |
|
if ( $context instanceof \GV\Template_Context ) { |
303
|
7 |
|
if ( $context->request->is_search() ) { |
304
|
7 |
|
$is_search = true; |
305
|
|
|
} |
306
|
|
|
} else { |
307
|
2 |
|
$gravityview_view = GravityView_View::getInstance(); |
308
|
|
|
|
309
|
2 |
|
if( $gravityview_view && ( $gravityview_view->curr_start || $gravityview_view->curr_end || $gravityview_view->curr_search ) ) { |
|
|
|
|
310
|
1 |
|
$is_search = true; |
311
|
|
|
} |
312
|
|
|
} |
313
|
|
|
|
314
|
9 |
|
if ( $is_search ) { |
315
|
1 |
|
$output = __( 'This search returned no results.', 'gravityview' ); |
316
|
|
|
} else { |
317
|
9 |
|
$output = __( 'No entries match your request.', 'gravityview' ); |
318
|
|
|
} |
319
|
|
|
|
320
|
|
|
/** |
321
|
|
|
* @filter `gravitview_no_entries_text` Modify the text displayed when there are no entries. |
322
|
|
|
* Note: this filter is, and always has been, misspelled. This will not be fixed, since the filter is deprecated. |
323
|
|
|
* @param string $output The existing "No Entries" text |
324
|
|
|
* @param boolean $is_search Is the current page a search result, or just a multiple entries screen? |
325
|
|
|
* @return string The modified text. |
326
|
|
|
* @deprecated Use `gravityview/template/text/no_entries` |
327
|
|
|
*/ |
328
|
9 |
|
$output = apply_filters( 'gravitview_no_entries_text', $output, $is_search ); |
329
|
|
|
|
330
|
|
|
/** |
331
|
|
|
* @filter `gravityview/template/text/no_entries` Modify the text displayed when there are no entries. |
332
|
|
|
* @since 2.0 |
333
|
|
|
* @param string $output The existing "No Entries" text |
334
|
|
|
* @param boolean $is_search Is the current page a search result, or just a multiple entries screen? |
335
|
|
|
* @param \GV\Template_Context $context The context. |
336
|
|
|
* @return string The modified text. |
337
|
|
|
*/ |
338
|
9 |
|
$output = apply_filters( 'gravityview/template/text/no_entries', $output, $is_search, $context ); |
339
|
|
|
|
340
|
9 |
|
return $wpautop ? wpautop( $output ) : $output; |
341
|
|
|
} |
342
|
|
|
|
343
|
|
|
/** |
344
|
|
|
* Generate a URL to the Directory context |
345
|
|
|
* |
346
|
|
|
* Uses `wp_cache_get` and `wp_cache_get` (since 1.3) to speed up repeated requests to get permalink, which improves load time. Since we may be doing this hundreds of times per request, it adds up! |
347
|
|
|
* |
348
|
|
|
* @param int $post_id Post ID |
349
|
|
|
* @param boolean $add_query_args Add pagination and sorting arguments |
350
|
|
|
* |
351
|
|
|
* @since 2.0 |
352
|
|
|
* @param \GV\Template_Context $context The context this is being used in. |
353
|
|
|
* |
354
|
|
|
* @return string Permalink to multiple entries view |
355
|
|
|
*/ |
356
|
46 |
|
public static function directory_link( $post_id = NULL, $add_query_args = true, $context = null ) { |
357
|
46 |
|
global $post; |
358
|
|
|
|
359
|
46 |
|
if ( empty( $post_id ) ) { |
360
|
|
|
// DataTables passes the Post ID |
361
|
21 |
|
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { |
362
|
|
|
$post_id = \GV\Utils::_POST( 'post_id', false ); |
363
|
|
|
} else { |
364
|
21 |
|
if ( $context instanceof \GV\Template_Context ) { |
365
|
|
|
// Shortcodes, embeds |
366
|
17 |
|
if ( is_a( $post, 'WP_Post' ) ) { |
367
|
5 |
|
$post_id = $post->ID; |
368
|
|
|
|
369
|
|
|
// Actual views |
370
|
|
|
} else { |
371
|
17 |
|
$post_id = $context->view ? $context->view->ID : false; |
372
|
|
|
} |
373
|
|
|
} else { |
374
|
|
|
/** @deprecated path of execution */ |
375
|
4 |
|
$gravityview_view = GravityView_View::getInstance(); |
376
|
|
|
|
377
|
|
|
// The Post ID has been passed via the shortcode |
378
|
4 |
|
if ( ! empty( $gravityview_view ) && $gravityview_view->getPostId() ) { |
|
|
|
|
379
|
2 |
|
$post_id = $gravityview_view->getPostId(); |
380
|
|
|
} else { |
381
|
|
|
// This is a GravityView post type |
382
|
2 |
|
if ( GravityView_frontend::getInstance()->isGravityviewPostType() ) { |
383
|
|
|
$post_id = isset( $gravityview_view ) ? $gravityview_view->getViewId() : $post->ID; |
384
|
|
|
} else { |
385
|
|
|
// This is an embedded GravityView; use the embedded post's ID as the base. |
386
|
2 |
|
if ( GravityView_frontend::getInstance()->isPostHasShortcode() && is_a( $post, 'WP_Post' ) ) { |
387
|
|
|
$post_id = $post->ID; |
388
|
2 |
|
} elseif ( $gravityview_view->getViewId() ) { |
389
|
|
|
// The GravityView has been embedded in a widget or in a template, and |
390
|
|
|
// is not in the current content. Thus, we defer to the View's own ID. |
391
|
1 |
|
$post_id = $gravityview_view->getViewId(); |
392
|
|
|
} |
393
|
|
|
} |
394
|
|
|
} |
395
|
|
|
} |
396
|
|
|
} |
397
|
|
|
} |
398
|
|
|
|
399
|
|
|
// No post ID, get outta here. |
400
|
46 |
|
if ( empty( $post_id ) ) { |
401
|
1 |
|
return null; |
402
|
|
|
} |
403
|
|
|
|
404
|
|
|
// If we've saved the permalink in memory, use it |
405
|
|
|
// @since 1.3 |
406
|
45 |
|
$link = wp_cache_get( 'gv_directory_link_'.$post_id ); |
407
|
|
|
|
408
|
45 |
|
if ( (int) $post_id === (int) get_option( 'page_on_front' ) ) { |
409
|
|
|
$link = home_url(); |
410
|
|
|
} |
411
|
|
|
|
412
|
45 |
|
if ( empty( $link ) ) { |
413
|
45 |
|
$link = get_permalink( $post_id ); |
414
|
|
|
|
415
|
|
|
// If not yet saved, cache the permalink. |
416
|
|
|
// @since 1.3 |
417
|
45 |
|
wp_cache_set( 'gv_directory_link_'.$post_id, $link ); |
418
|
|
|
} |
419
|
|
|
|
420
|
|
|
// Deal with returning to proper pagination for embedded views |
421
|
45 |
|
if ( $link && $add_query_args ) { |
422
|
|
|
|
423
|
41 |
|
$args = array(); |
424
|
|
|
|
425
|
41 |
|
if( $pagenum = \GV\Utils::_GET( 'pagenum' ) ) { |
426
|
2 |
|
$args['pagenum'] = intval( $pagenum ); |
427
|
|
|
} |
428
|
|
|
|
429
|
41 |
|
if( $sort = \GV\Utils::_GET( 'sort' ) ) { |
430
|
|
|
$args['sort'] = $sort; |
431
|
|
|
$args['dir'] = \GV\Utils::_GET( 'dir' ); |
432
|
|
|
} |
433
|
|
|
|
434
|
41 |
|
$link = add_query_arg( $args, $link ); |
435
|
|
|
} |
436
|
|
|
|
437
|
|
|
/** |
438
|
|
|
* @filter `gravityview_directory_link` Modify the URL to the View "directory" context |
439
|
|
|
* @since 1.19.4 |
440
|
|
|
* @param string $link URL to the View's "directory" context (Multiple Entries screen) |
441
|
|
|
* @param int $post_id ID of the post to link to. If the View is embedded, it is the post or page ID |
442
|
|
|
*/ |
443
|
45 |
|
$link = apply_filters( 'gravityview_directory_link', $link, $post_id ); |
444
|
|
|
|
445
|
|
|
/** |
446
|
|
|
* @filter `gravityview/view/links/directory` Modify the URL to the View "directory" context |
447
|
|
|
* @since 2.0 |
448
|
|
|
* @param string $link URL to the View's "directory" context (Multiple Entries screen) |
449
|
|
|
* @param \GV\Template_Context $context |
450
|
|
|
*/ |
451
|
45 |
|
return apply_filters( 'gravityview/view/links/directory', $link, $context ); |
452
|
|
|
} |
453
|
|
|
|
454
|
|
|
/** |
455
|
|
|
* Calculate an *unique* hash for an entry based on the entry ID |
456
|
|
|
* |
457
|
|
|
* This allows you to be more discrete as to the number of the entry - if you don't want users to know that you have made a certain number of sales, for example, or that their entry in the giveaway is entry #3. |
458
|
|
|
* |
459
|
|
|
* The hashed value MUST be unique, otherwise multiple entries will share the same URL, which leads to obvious problems. |
460
|
|
|
* |
461
|
|
|
* @param int|string $id Entry ID to generate the hash for. |
462
|
|
|
* @param array $entry Entry data passed to provide additional information when generating the hash. Optional - don't rely on it being available. |
463
|
|
|
* @return string Hashed unique value for entry |
464
|
|
|
*/ |
465
|
3 |
|
private static function get_custom_entry_slug( $id, $entry = array() ) { |
466
|
|
|
|
467
|
|
|
// Generate an unique hash to use as the default value |
468
|
3 |
|
$slug = substr( wp_hash( $id, 'gravityview'.$id ), 0, 8 ); |
469
|
|
|
|
470
|
|
|
/** |
471
|
|
|
* @filter `gravityview_entry_slug` Modify the unique hash ID generated, if you want to improve usability or change the format. This will allow for custom URLs, such as `{entryid}-{first-name}` or even, if unique, `{first-name}-{last-name}` |
472
|
|
|
* @param string $hash Existing hash generated by GravityView |
473
|
|
|
* @param string $id The entry ID |
474
|
|
|
* @param array $entry Entry data array. May be empty. |
475
|
|
|
*/ |
476
|
3 |
|
$slug = apply_filters( 'gravityview_entry_slug', $slug, $id, $entry ); |
477
|
|
|
|
478
|
|
|
// Make sure we have something - use the original ID as backup. |
479
|
3 |
|
if( empty( $slug ) ) { |
480
|
|
|
$slug = $id; |
481
|
|
|
} |
482
|
|
|
|
483
|
3 |
|
return sanitize_title( $slug ); |
484
|
|
|
} |
485
|
|
|
|
486
|
|
|
/** |
487
|
|
|
* Get the entry slug for the entry. By default, it is the entry ID. |
488
|
|
|
* |
489
|
|
|
* |
490
|
|
|
* @see gravityview_get_entry() |
491
|
|
|
* @uses GravityView_API::get_custom_entry_slug() If using custom slug, gets the custom slug value |
492
|
|
|
* @since 1.4 |
493
|
|
|
* @param int|string $id_or_string ID of the entry, or custom slug string |
494
|
|
|
* @param array $entry Gravity Forms Entry array, optional. Used only to provide data to customize the `gravityview_entry_slug` filter |
495
|
|
|
* @return string Unique slug ID, passed through `sanitize_title()` |
496
|
|
|
*/ |
497
|
157 |
|
public static function get_entry_slug( $id_or_string, $entry = array() ) { |
498
|
|
|
|
499
|
|
|
/** |
500
|
|
|
* Default: use the entry ID as the unique identifier |
501
|
|
|
*/ |
502
|
157 |
|
$slug = $id_or_string; |
503
|
|
|
|
504
|
|
|
/** |
505
|
|
|
* @filter `gravityview_custom_entry_slug` Whether to enable and use custom entry slugs. |
506
|
|
|
* @param boolean True: Allow for slugs based on entry values. False: always use entry IDs (default) |
507
|
|
|
*/ |
508
|
157 |
|
$custom = apply_filters( 'gravityview_custom_entry_slug', false ); |
509
|
|
|
|
510
|
|
|
// If we're using custom slug... |
511
|
157 |
|
if ( $custom ) { |
512
|
|
|
|
513
|
|
|
// Get the entry hash |
514
|
3 |
|
$hash = self::get_custom_entry_slug( $id_or_string, $entry ); |
515
|
|
|
|
516
|
|
|
// Cache the slugs |
517
|
3 |
|
static $cache = array(); |
518
|
|
|
|
519
|
3 |
|
if ( ! isset( $cache[ $id_or_string ] ) ) { |
520
|
3 |
|
global $wpdb; |
521
|
|
|
|
522
|
3 |
|
if ( version_compare( GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) ) { |
523
|
3 |
|
$table = GFFormsModel::get_entry_meta_table_name(); |
524
|
3 |
|
$column = 'entry_id'; |
525
|
|
|
} else { |
526
|
|
|
$table = RGFormsModel::get_lead_meta_table_name(); |
527
|
|
|
$column = 'lead_id'; |
528
|
|
|
} |
529
|
|
|
|
530
|
3 |
|
$results = $wpdb->get_results( $wpdb->prepare( "SELECT $column, meta_value FROM $table WHERE form_id = (SELECT form_id FROM $table WHERE $column = %d LIMIT 1) AND meta_key = 'gravityview_unique_id'", $id_or_string ) ); |
531
|
|
|
|
532
|
3 |
|
if ( $results ) { |
533
|
|
|
$cache = array_replace( $cache, array_combine( wp_list_pluck( $results, $column ), wp_list_pluck( $results, 'meta_value' ) ) ); |
534
|
|
|
} |
535
|
|
|
|
536
|
3 |
|
if ( ! isset( $cache[ $id_or_string ] ) ) { |
537
|
3 |
|
$cache[ $id_or_string ] = false; |
538
|
|
|
} |
539
|
|
|
} |
540
|
|
|
|
541
|
3 |
|
$value = $cache[ $id_or_string ]; |
542
|
|
|
|
543
|
|
|
// If it does have a hash set, and the hash is expected, use it. |
544
|
|
|
// This check allows users to change the hash structure using the |
545
|
|
|
// gravityview_entry_hash filter and have the old hashes expire. |
546
|
3 |
|
if ( empty( $value ) || $value !== $hash ) { |
547
|
3 |
|
gravityview()->log->debug( 'Setting hash for entry {entry}: {hash}', array( 'entry' => $id_or_string, 'hash' => $hash ) ); |
548
|
3 |
|
gform_update_meta( $id_or_string, 'gravityview_unique_id', $hash, \GV\Utils::get( $entry, 'form_id' ) ); |
549
|
|
|
} |
550
|
|
|
|
551
|
3 |
|
$slug = $hash; |
552
|
|
|
|
553
|
3 |
|
unset( $value, $hash ); |
554
|
|
|
} |
555
|
|
|
|
556
|
157 |
|
return sanitize_title( $slug ); |
557
|
|
|
} |
558
|
|
|
|
559
|
|
|
/** |
560
|
|
|
* If using the entry custom slug feature, make sure the new entries have the custom slug created and saved as meta |
561
|
|
|
* |
562
|
|
|
* Triggered by add_action( 'gform_entry_created', array( 'GravityView_API', 'entry_create_custom_slug' ), 10, 2 ); |
563
|
|
|
* |
564
|
|
|
* @param $entry array Gravity Forms entry object |
565
|
|
|
* @param $form array Gravity Forms form object |
566
|
|
|
*/ |
567
|
|
|
public static function entry_create_custom_slug( $entry, $form ) { |
|
|
|
|
568
|
|
|
/** |
569
|
|
|
* @filter `gravityview_custom_entry_slug` On entry creation, check if we are using the custom entry slug feature and update the meta |
570
|
|
|
* @param boolean $custom Should we process the custom entry slug? |
571
|
|
|
*/ |
572
|
|
|
$custom = apply_filters( 'gravityview_custom_entry_slug', false ); |
573
|
|
|
if( $custom ) { |
574
|
|
|
// create the gravityview_unique_id and save it |
575
|
|
|
|
576
|
|
|
// Get the entry hash |
577
|
|
|
$hash = self::get_custom_entry_slug( $entry['id'], $entry ); |
578
|
|
|
|
579
|
|
|
gravityview()->log->debug( 'Setting hash for entry {entry_id}: {hash}', array( 'entry_id' => $entry['id'], 'hash' => $hash ) ); |
580
|
|
|
|
581
|
|
|
gform_update_meta( $entry['id'], 'gravityview_unique_id', $hash, \GV\Utils::get( $entry, 'form_id' ) ); |
582
|
|
|
|
583
|
|
|
} |
584
|
|
|
} |
585
|
|
|
|
586
|
|
|
|
587
|
|
|
|
588
|
|
|
|
589
|
|
|
/** |
590
|
|
|
* return href for single entry |
591
|
|
|
* @param array|int $entry Entry array or entry ID |
592
|
|
|
* @param int|null $post_id If wanting to define the parent post, pass a post ID |
593
|
|
|
* @param boolean $add_directory_args True: Add args to help return to directory; False: only include args required to get to entry {@since 1.7.3} |
594
|
|
|
* @return string Link to the entry with the directory parent slug, or empty string if embedded post or View doesn't exist |
595
|
|
|
*/ |
596
|
6 |
|
public static function entry_link( $entry, $post_id = NULL, $add_directory_args = true ) { |
597
|
|
|
|
598
|
6 |
|
if ( ! empty( $entry ) && ! is_array( $entry ) ) { |
599
|
|
|
$entry = GVCommon::get_entry( $entry ); |
600
|
6 |
|
} else if( empty( $entry ) ) { |
601
|
|
|
// @deprecated path |
602
|
|
|
$entry = GravityView_frontend::getInstance()->getEntry(); |
603
|
|
|
} |
604
|
|
|
|
605
|
|
|
// Second parameter used to be passed as $field; this makes sure it's not an array |
606
|
6 |
|
if ( ! is_numeric( $post_id ) ) { |
607
|
1 |
|
$post_id = NULL; |
608
|
|
|
} |
609
|
|
|
|
610
|
|
|
// Get the permalink to the View |
611
|
6 |
|
$directory_link = self::directory_link( $post_id, false ); |
612
|
|
|
|
613
|
|
|
// No post ID? Get outta here. |
614
|
6 |
|
if ( empty( $directory_link ) ) { |
615
|
1 |
|
return ''; |
616
|
|
|
} |
617
|
|
|
|
618
|
5 |
|
$query_arg_name = \GV\Entry::get_endpoint_name(); |
619
|
|
|
|
620
|
5 |
|
if ( ! empty( $entry['_multi'] ) ) { |
621
|
1 |
|
$entry_slugs = array(); |
622
|
1 |
|
foreach ( $entry['_multi'] as $_multi ) { |
623
|
|
|
|
624
|
1 |
|
if( $gv_multi = \GV\GF_Entry::from_entry( $_multi ) ) { |
625
|
1 |
|
$entry_slugs[] = $gv_multi->get_slug(); |
626
|
|
|
} else { |
627
|
|
|
$entry_slugs[] = \GravityView_API::get_entry_slug( $entry['id'], $entry ); |
628
|
|
|
} |
629
|
|
|
|
630
|
1 |
|
unset( $gv_multi ); |
631
|
|
|
|
632
|
1 |
|
$forms[] = $_multi['form_id']; |
|
|
|
|
633
|
|
|
} |
634
|
1 |
|
$entry_slug = implode( ',', $entry_slugs ); |
635
|
|
|
} else { |
636
|
|
|
|
637
|
|
|
// Fallback when |
638
|
5 |
|
if( $gv_entry = \GV\GF_Entry::from_entry( $entry ) ) { |
639
|
5 |
|
$entry_slug = $gv_entry->get_slug(); |
640
|
|
|
} else { |
641
|
|
|
$entry_slug = \GravityView_API::get_entry_slug( $entry['id'], $entry ); |
642
|
|
|
} |
643
|
|
|
|
644
|
5 |
|
unset( $gv_entry ); |
645
|
|
|
} |
646
|
|
|
|
647
|
5 |
|
if ( get_option('permalink_structure') && !is_preview() ) { |
648
|
|
|
|
649
|
|
|
$args = array(); |
650
|
|
|
|
651
|
|
|
/** |
652
|
|
|
* Make sure the $directory_link doesn't contain any query otherwise it will break when adding the entry slug. |
653
|
|
|
* @since 1.16.5 |
654
|
|
|
*/ |
655
|
|
|
$link_parts = explode( '?', $directory_link ); |
656
|
|
|
|
657
|
|
|
$query = !empty( $link_parts[1] ) ? '?'.$link_parts[1] : ''; |
658
|
|
|
|
659
|
|
|
$directory_link = trailingslashit( $link_parts[0] ) . $query_arg_name . '/'. $entry_slug .'/' . $query; |
660
|
|
|
|
661
|
|
|
} else { |
662
|
|
|
|
663
|
5 |
|
$args = array( $query_arg_name => $entry_slug ); |
664
|
|
|
} |
665
|
|
|
|
666
|
|
|
/** |
667
|
|
|
* @since 1.7.3 |
668
|
|
|
*/ |
669
|
5 |
|
if ( $add_directory_args ) { |
670
|
|
|
|
671
|
5 |
|
if ( ! empty( $_GET['pagenum'] ) ) { |
672
|
|
|
$args['pagenum'] = intval( $_GET['pagenum'] ); |
673
|
|
|
} |
674
|
|
|
|
675
|
|
|
/** |
676
|
|
|
* @since 1.7 |
677
|
|
|
*/ |
678
|
5 |
|
if ( $sort = \GV\Utils::_GET( 'sort' ) ) { |
679
|
|
|
$args['sort'] = $sort; |
680
|
|
|
$args['dir'] = \GV\Utils::_GET( 'dir' ); |
681
|
|
|
} |
682
|
|
|
|
683
|
|
|
} |
684
|
|
|
|
685
|
5 |
|
if( $post_id ) { |
686
|
5 |
|
$passed_post = get_post( $post_id ); |
687
|
5 |
|
$views = \GV\View_Collection::from_post( $passed_post ); |
688
|
5 |
|
$has_multiple_views = $views->count() > 1; |
689
|
|
|
} else { |
690
|
|
|
$has_multiple_views = class_exists( 'GravityView_View_Data' ) && GravityView_View_Data::getInstance()->has_multiple_views(); |
|
|
|
|
691
|
|
|
} |
692
|
|
|
|
693
|
5 |
|
if ( $has_multiple_views ) { |
694
|
1 |
|
$args['gvid'] = gravityview_get_view_id(); |
695
|
|
|
} |
696
|
|
|
|
697
|
5 |
|
return add_query_arg( $args, $directory_link ); |
698
|
|
|
|
699
|
|
|
} |
700
|
|
|
|
701
|
|
|
|
702
|
|
|
} |
703
|
|
|
|
704
|
|
|
|
705
|
|
|
// inside loop functions |
706
|
|
|
|
707
|
|
|
/** |
708
|
|
|
* @deprecated Use \GV\Field::get_label() |
709
|
|
|
*/ |
710
|
|
|
function gv_label( $field, $entry = NULL ) { |
711
|
2 |
|
return GravityView_API::field_label( $field, $entry ); |
|
|
|
|
712
|
|
|
} |
713
|
|
|
|
714
|
|
|
function gv_class( $field, $form = NULL, $entry = array() ) { |
715
|
37 |
|
return GravityView_API::field_class( $field, $form, $entry ); |
716
|
|
|
} |
717
|
|
|
|
718
|
|
|
/** |
719
|
|
|
* Generate a CSS class to be added to the wrapper <div> of a View |
720
|
|
|
* |
721
|
|
|
* @since 1.5.4 |
722
|
|
|
* @since 1.16 Added $echo parameter. |
723
|
|
|
* @since 2.0 Added $context parameter. |
724
|
|
|
* |
725
|
|
|
* @param string $passed_css_class Default: `gv-container gv-container-{view id}`. If View is hidden until search, adds ` hidden` |
726
|
|
|
* @param boolean $echo Whether to echo the output. Default: true |
727
|
|
|
* @param \GV\Template_Context $context The template context. |
728
|
|
|
* |
729
|
|
|
* @return string CSS class, sanitized by gravityview_sanitize_html_class() |
730
|
|
|
*/ |
731
|
|
|
function gv_container_class( $passed_css_class = '', $echo = true, $context = null ) { |
732
|
38 |
|
if ( $context instanceof \GV\Template_Context ) { |
733
|
36 |
|
$hide_until_searched = false; |
734
|
36 |
|
$total_entries = 0; |
735
|
36 |
|
$view_id = 0; |
736
|
36 |
|
if ( $context->view ) { |
737
|
36 |
|
$view_id = $context->view->ID; |
738
|
36 |
|
if( $context->view->settings->get( 'hide_until_searched' ) ) { |
739
|
4 |
|
$hide_until_searched = ( empty( $context->entry ) && ! $context->request->is_search() ); |
740
|
|
|
} |
741
|
|
|
} |
742
|
36 |
|
if ( $context->entries ) { |
743
|
23 |
|
$total_entries = $context->entries->total(); |
744
|
17 |
|
} else if ( $context->entry ) { |
745
|
36 |
|
$total_entries = 1; |
746
|
|
|
} |
747
|
|
|
} else { |
748
|
|
|
/** @deprecated legacy execution path */ |
749
|
3 |
|
$view_id = GravityView_View::getInstance()->getViewId(); |
750
|
3 |
|
$hide_until_searched = GravityView_View::getInstance()->isHideUntilSearched(); |
751
|
3 |
|
$total_entries = GravityView_View::getInstance()->getTotalEntries(); |
752
|
|
|
} |
753
|
|
|
|
754
|
38 |
|
$passed_css_class = trim( $passed_css_class ); |
755
|
|
|
|
756
|
38 |
|
$default_css_class = ! empty( $view_id ) ? sprintf( 'gv-container gv-container-%d', $view_id ) : 'gv-container'; |
757
|
|
|
|
758
|
38 |
|
if ( $hide_until_searched ) { |
759
|
4 |
|
$default_css_class .= ' hidden'; |
760
|
|
|
} |
761
|
|
|
|
762
|
38 |
|
if ( 0 === $total_entries ) { |
763
|
7 |
|
$default_css_class .= ' gv-container-no-results'; |
764
|
|
|
} |
765
|
|
|
|
766
|
38 |
|
$css_class = trim( $passed_css_class . ' '. $default_css_class ); |
767
|
|
|
|
768
|
|
|
/** |
769
|
|
|
* @filter `gravityview/render/container/class` Modify the CSS class to be added to the wrapper <div> of a View |
770
|
|
|
* @since 1.5.4 |
771
|
|
|
* @param[in,out] string $css_class Default: `gv-container gv-container-{view id}`. If View is hidden until search, adds ` hidden`. If the View has no results, adds `gv-container-no-results` |
772
|
|
|
* @since 2.0 |
773
|
|
|
* @param \GV\Template_Context $context The context. |
774
|
|
|
*/ |
775
|
38 |
|
$css_class = apply_filters( 'gravityview/render/container/class', $css_class, $context ); |
776
|
|
|
|
777
|
38 |
|
$css_class = gravityview_sanitize_html_class( $css_class ); |
778
|
|
|
|
779
|
38 |
|
if ( $echo ) { |
780
|
38 |
|
echo $css_class; |
781
|
|
|
} |
782
|
|
|
|
783
|
38 |
|
return $css_class; |
784
|
|
|
} |
785
|
|
|
|
786
|
|
|
/** |
787
|
|
|
* @deprecated Use \GV\Field_Template::render() |
788
|
|
|
*/ |
789
|
|
|
function gv_value( $entry, $field ) { |
790
|
|
|
|
791
|
2 |
|
$value = GravityView_API::field_value( $entry, $field ); |
|
|
|
|
792
|
|
|
|
793
|
2 |
|
if( $value === '' ) { |
794
|
|
|
/** |
795
|
|
|
* @filter `gravityview_empty_value` What to display when a field is empty |
796
|
|
|
* @param string $value (empty string) |
797
|
|
|
*/ |
798
|
1 |
|
$value = apply_filters( 'gravityview_empty_value', '' ); |
799
|
|
|
} |
800
|
|
|
|
801
|
2 |
|
return $value; |
802
|
|
|
} |
803
|
|
|
|
804
|
|
|
function gv_directory_link( $post = NULL, $add_pagination = true, $context = null ) { |
805
|
18 |
|
return GravityView_API::directory_link( $post, $add_pagination, $context ); |
806
|
|
|
} |
807
|
|
|
|
808
|
|
|
function gv_entry_link( $entry, $post_id = NULL ) { |
809
|
2 |
|
return GravityView_API::entry_link( $entry, $post_id ); |
810
|
|
|
} |
811
|
|
|
|
812
|
|
|
function gv_no_results( $wpautop = true, $context = null ) { |
813
|
8 |
|
return GravityView_API::no_results( $wpautop, $context ); |
814
|
|
|
} |
815
|
|
|
|
816
|
|
|
/** |
817
|
|
|
* Generate HTML for the back link from single entry view |
818
|
|
|
* @since 1.0.1 |
819
|
|
|
* @since 2.0 |
820
|
|
|
* @param \GV\Template_Context $context The context this link is being displayed from. |
821
|
|
|
* @return string|null If no GV post exists, null. Otherwise, HTML string of back link. |
822
|
|
|
*/ |
823
|
|
|
function gravityview_back_link( $context = null ) { |
824
|
|
|
|
825
|
17 |
|
$href = gv_directory_link( null, true, $context ); |
826
|
|
|
|
827
|
|
|
/** |
828
|
|
|
* @filter `gravityview_go_back_url` Modify the back link URL |
829
|
|
|
* @since 1.17.5 |
830
|
|
|
* @see gv_directory_link() Generated the original back link |
831
|
|
|
* @param string $href Existing label URL |
832
|
|
|
* @deprecated Use `gravityview/template/links/back/url` |
833
|
|
|
*/ |
834
|
17 |
|
$href = apply_filters( 'gravityview_go_back_url', $href ); |
835
|
|
|
|
836
|
|
|
/** |
837
|
|
|
* @filter `gravityview/template/links/back/url` Modify the back link URL |
838
|
|
|
* @since 2.0 |
839
|
|
|
* @see gv_directory_link() Generated the original back link |
840
|
|
|
* @param string $href Existing label URL |
841
|
|
|
* @param \GV\Template_Context The context. |
842
|
|
|
*/ |
843
|
17 |
|
$href = apply_filters( 'gravityview/template/links/back/url', $href, $context ); |
844
|
|
|
|
845
|
17 |
|
if ( empty( $href ) ) { |
846
|
4 |
|
return NULL; |
847
|
|
|
} |
848
|
|
|
|
849
|
14 |
|
if ( $context instanceof \GV\Template_Context ) { |
850
|
14 |
|
$view_id = $context->view->ID; |
851
|
14 |
|
$view_label = $context->template->get_back_label(); |
|
|
|
|
852
|
|
|
} else { |
853
|
|
|
/** @deprecated legacy path */ |
854
|
|
|
$gravityview_view = GravityView_View::getInstance(); |
855
|
|
|
$view_id = $gravityview_view->getViewId(); |
856
|
|
|
$view_label = $gravityview_view->getBackLinkLabel() ? $gravityview_view->getBackLinkLabel() : false; |
|
|
|
|
857
|
|
|
} |
858
|
|
|
|
859
|
|
|
/** Default */ |
860
|
14 |
|
$label = $view_label ? $view_label : __( '← Go back', 'gravityview' ); |
861
|
|
|
|
862
|
|
|
/** |
863
|
|
|
* @filter `gravityview_go_back_label` Modify the back link text |
864
|
|
|
* @since 1.0.9 |
865
|
|
|
* @param string $label Existing label text |
866
|
|
|
* @deprecated Use `gravityview/template/links/back/label` |
867
|
|
|
*/ |
868
|
14 |
|
$label = apply_filters( 'gravityview_go_back_label', $label ); |
869
|
|
|
|
870
|
|
|
/** |
871
|
|
|
* @filter `gravityview/template/links/back/label` Modify the back link text |
872
|
|
|
* @since 2.0 |
873
|
|
|
* @see gv_directory_link() Generated the original back link |
874
|
|
|
* @param string $label Existing label text |
875
|
|
|
* @param \GV\Template_Context The context. |
876
|
|
|
*/ |
877
|
14 |
|
$label = apply_filters( 'gravityview/template/links/back/label', $label, $context ); |
878
|
|
|
|
879
|
|
|
/** |
880
|
|
|
* @filter `gravityview/template/links/back/atts` Modify the attributes used on the back link anchor tag |
881
|
|
|
* @since 2.1 |
882
|
|
|
* @param array $atts Original attributes, default: [ data-viewid => $view_id ] |
883
|
|
|
* @param \GV\Template_Context The context. |
884
|
|
|
*/ |
885
|
14 |
|
$atts = apply_filters( 'gravityview/template/links/back/atts', array( 'data-viewid' => $view_id ), $context ); |
886
|
|
|
|
887
|
14 |
|
$link = gravityview_get_link( $href, esc_html( $label ), $atts ); |
888
|
|
|
|
889
|
14 |
|
return $link; |
890
|
|
|
} |
891
|
|
|
|
892
|
|
|
/** |
893
|
|
|
* Handle getting values for complex Gravity Forms fields |
894
|
|
|
* |
895
|
|
|
* If the field is complex, like a product, the field ID, for example, 11, won't exist. Instead, |
896
|
|
|
* it will be 11.1, 11.2, and 11.3. This handles being passed 11 and 11.2 with the same function. |
897
|
|
|
* |
898
|
|
|
* @since 1.0.4 |
899
|
|
|
* @param array $entry GF entry array |
900
|
|
|
* @param string $field_id [description] |
901
|
|
|
* @param string $display_value The value generated by Gravity Forms |
902
|
|
|
* @return string Value |
903
|
|
|
*/ |
904
|
|
|
function gravityview_get_field_value( $entry, $field_id, $display_value ) { |
905
|
|
|
|
906
|
15 |
|
if( floatval( $field_id ) === floor( floatval( $field_id ) ) ) { |
907
|
|
|
|
908
|
|
|
// For the complete field value as generated by Gravity Forms |
909
|
12 |
|
return $display_value; |
910
|
|
|
|
911
|
|
|
} else { |
912
|
|
|
|
913
|
|
|
// For one part of the address (City, ZIP, etc.) |
914
|
7 |
|
return isset( $entry[ $field_id ] ) ? $entry[ $field_id ] : ''; |
915
|
|
|
|
916
|
|
|
} |
917
|
|
|
|
918
|
|
|
} |
919
|
|
|
|
920
|
|
|
/** |
921
|
|
|
* Take a passed CSV of terms and generate a linked list of terms |
922
|
|
|
* |
923
|
|
|
* Gravity Forms passes categories as "Name:ID" so we handle that using the ID, which |
924
|
|
|
* is more accurate than checking the name, which is more likely to change. |
925
|
|
|
* |
926
|
|
|
* @param string $value Existing value |
927
|
|
|
* @param string $taxonomy Type of term (`post_tag` or `category`) |
928
|
|
|
* @return string CSV of linked terms |
929
|
|
|
*/ |
930
|
|
|
function gravityview_convert_value_to_term_list( $value, $taxonomy = 'post_tag' ) { |
931
|
|
|
|
932
|
1 |
|
$output = array(); |
933
|
|
|
|
934
|
1 |
|
if ( is_array( $value ) ) { |
935
|
1 |
|
$terms = array_filter( array_values( $value ), 'strlen' ); |
936
|
|
|
} else { |
937
|
1 |
|
$terms = explode( ', ', $value ); |
938
|
|
|
} |
939
|
|
|
|
940
|
1 |
|
foreach ($terms as $term_name ) { |
941
|
|
|
|
942
|
|
|
// If we're processing a category, |
943
|
1 |
|
if( $taxonomy === 'category' ) { |
944
|
|
|
|
945
|
|
|
// Use rgexplode to prevent errors if : doesn't exist |
946
|
1 |
|
list( $term_name, $term_id ) = rgexplode( ':', $term_name, 2 ); |
947
|
|
|
|
948
|
|
|
// The explode was succesful; we have the category ID |
949
|
1 |
|
if( !empty( $term_id )) { |
950
|
1 |
|
$term = get_term_by( 'id', $term_id, $taxonomy ); |
951
|
|
|
} else { |
952
|
|
|
// We have to fall back to the name |
953
|
1 |
|
$term = get_term_by( 'name', $term_name, $taxonomy ); |
954
|
|
|
} |
955
|
|
|
|
956
|
|
|
} else { |
957
|
|
|
// Use the name of the tag to get the full term information |
958
|
1 |
|
$term = get_term_by( 'name', $term_name, $taxonomy ); |
959
|
|
|
} |
960
|
|
|
|
961
|
|
|
// There's still a tag/category here. |
962
|
1 |
|
if( $term ) { |
963
|
|
|
|
964
|
1 |
|
$term_link = get_term_link( $term, $taxonomy ); |
965
|
|
|
|
966
|
|
|
// If there was an error, continue to the next term. |
967
|
1 |
|
if ( is_wp_error( $term_link ) ) { |
968
|
|
|
continue; |
969
|
|
|
} |
970
|
|
|
|
971
|
1 |
|
$output[] = gravityview_get_link( $term_link, esc_html( $term->name ) ); |
972
|
|
|
} |
973
|
|
|
} |
974
|
|
|
|
975
|
1 |
|
return implode(', ', $output ); |
976
|
|
|
} |
977
|
|
|
|
978
|
|
|
/** |
979
|
|
|
* Get the links for post_tags and post_category output based on post ID |
980
|
|
|
* @param int $post_id The ID of the post |
981
|
|
|
* @param boolean $link Add links or no? |
982
|
|
|
* @param string $taxonomy Taxonomy of term to fetch. |
983
|
|
|
* @return string String with terms |
984
|
|
|
*/ |
985
|
|
|
function gravityview_get_the_term_list( $post_id, $link = true, $taxonomy = 'post_tag' ) { |
986
|
|
|
|
987
|
1 |
|
$output = get_the_term_list( $post_id, $taxonomy, NULL, ', ' ); |
988
|
|
|
|
989
|
1 |
|
if( empty( $link ) ) { |
990
|
1 |
|
return strip_tags( $output); |
991
|
|
|
} |
992
|
|
|
|
993
|
1 |
|
return $output; |
994
|
|
|
|
995
|
|
|
} |
996
|
|
|
|
997
|
|
|
|
998
|
|
|
/** |
999
|
|
|
* Get all views processed so far for the current page load |
1000
|
|
|
* |
1001
|
|
|
* @see GravityView_View_Data::add_view() |
1002
|
|
|
* @return array Array of View data, each View data with `id`, `view_id`, `form_id`, `template_id`, `atts`, `fields`, `widgets`, `form` keys. |
1003
|
|
|
*/ |
1004
|
|
|
function gravityview_get_current_views() { |
1005
|
|
|
|
1006
|
1 |
|
$fe = GravityView_frontend::getInstance(); |
1007
|
|
|
|
1008
|
|
|
// Solve problem when loading content via admin-ajax.php |
1009
|
1 |
|
if( ! $fe->getGvOutputData() ) { |
1010
|
|
|
|
1011
|
1 |
|
gravityview()->log->debug( 'gv_output_data not defined; parsing content.' ); |
1012
|
|
|
|
1013
|
1 |
|
$fe->parse_content(); |
1014
|
|
|
} |
1015
|
|
|
|
1016
|
|
|
// Make 100% sure that we're dealing with a properly called situation |
1017
|
1 |
|
if( !is_a( $fe->getGvOutputData(), 'GravityView_View_Data' ) ) { |
1018
|
|
|
|
1019
|
|
|
gravityview()->log->debug( 'gv_output_data not an object or get_view not callable.', array( 'data' => $fe->getGvOutputData() ) ); |
1020
|
|
|
|
1021
|
|
|
return array(); |
1022
|
|
|
} |
1023
|
|
|
|
1024
|
1 |
|
return $fe->getGvOutputData()->get_views(); |
|
|
|
|
1025
|
|
|
} |
1026
|
|
|
|
1027
|
|
|
/** |
1028
|
|
|
* Get data for a specific view |
1029
|
|
|
* |
1030
|
|
|
* @deprecated use \GV\View API instead |
1031
|
|
|
* @since 2.5 |
1032
|
|
|
* |
1033
|
|
|
* @see GravityView_View_Data::get_view() |
1034
|
|
|
* @return array View data with `id`, `view_id`, `form_id`, `template_id`, `atts`, `fields`, `widgets`, `form` keys. |
1035
|
|
|
*/ |
1036
|
|
|
function gravityview_get_current_view_data( $view_id = 0 ) { |
1037
|
|
|
if ( $view_id ) { |
1038
|
|
|
if ( $view = \GV\View::by_id( $view_id ) ) { |
1039
|
|
|
return $view; // implements ArrayAccess |
1040
|
|
|
} |
1041
|
|
|
return array(); |
1042
|
|
|
} |
1043
|
|
|
|
1044
|
|
|
$fe = GravityView_frontend::getInstance(); |
1045
|
|
|
|
1046
|
|
|
// If not set, grab the current view ID |
1047
|
|
|
if ( empty( $view_id ) ) { |
1048
|
|
|
$view_id = $fe->get_context_view_id(); |
1049
|
|
|
} |
1050
|
|
|
|
1051
|
|
|
if ( ! $fe->getGvOutputData() ) { return array(); } |
1052
|
|
|
|
1053
|
|
|
return $fe->getGvOutputData()->get_view( $view_id ); |
|
|
|
|
1054
|
|
|
} |
1055
|
|
|
|
1056
|
|
|
// Templates' hooks |
1057
|
|
|
function gravityview_before() { |
1058
|
|
|
/** |
1059
|
|
|
* @action `gravityview/template/before` Append content to the view. |
1060
|
|
|
* @param object $gravityview The $gravityview object available in templates. |
1061
|
|
|
*/ |
1062
|
37 |
|
if ( count( $args = func_get_args() ) ) { |
1063
|
35 |
|
$gravityview = reset( $args ); |
1064
|
35 |
|
if ( $gravityview instanceof \GV\Template_Context ) { |
1065
|
|
|
/** |
1066
|
|
|
* @action `gravityview/template/before` Prepend content to the view. |
1067
|
|
|
* @param \GV\Template_Context $gravityview The $gravityview object available in templates. |
1068
|
|
|
*/ |
1069
|
35 |
|
do_action( 'gravityview/template/before', $gravityview ); |
1070
|
|
|
|
1071
|
|
|
/** |
1072
|
|
|
* @deprecated Use `gravityview/template/before` |
1073
|
|
|
*/ |
1074
|
35 |
|
return do_action( 'gravityview_before', $gravityview->view->ID ); |
1075
|
|
|
} |
1076
|
|
|
} |
1077
|
|
|
|
1078
|
|
|
/** |
1079
|
|
|
* @action `gravityview_before` Prepend content to the View container `<div>` |
1080
|
|
|
* @deprecated Use `gravityview/template/before`. |
1081
|
|
|
* @param int $view_id The ID of the View being displayed |
1082
|
|
|
*/ |
1083
|
2 |
|
do_action( 'gravityview_before', gravityview_get_view_id() ); |
1084
|
2 |
|
} |
1085
|
|
|
|
1086
|
|
|
function gravityview_header() { |
1087
|
|
|
/** |
1088
|
|
|
* @action `gravityview/template/header` Append content to the view. |
1089
|
|
|
* @param object $gravityview The $gravityview object available in templates. |
1090
|
|
|
*/ |
1091
|
33 |
|
if ( count( $args = func_get_args() ) ) { |
1092
|
31 |
|
$gravityview = reset( $args ); |
1093
|
31 |
|
if ( $gravityview instanceof \GV\Template_Context ) { |
1094
|
|
|
/** |
1095
|
|
|
* @action `gravityview/template/header` Prepend content to the view container <div>. |
1096
|
|
|
* @param \GV\Template_Context $gravityview The $gravityview object available in templates. |
1097
|
|
|
*/ |
1098
|
31 |
|
do_action( 'gravityview/template/header', $gravityview ); |
1099
|
|
|
|
1100
|
|
|
/** |
1101
|
|
|
* @deprecated Use `gravityview/template/header` |
1102
|
|
|
*/ |
1103
|
31 |
|
return do_action( 'gravityview_header', $gravityview->view->ID ); |
1104
|
|
|
} |
1105
|
|
|
} |
1106
|
|
|
|
1107
|
|
|
/** |
1108
|
|
|
* @action `gravityview_header` Prepend content to the View container `<div>` |
1109
|
|
|
* @deprecated Use `gravityview/template/header`. |
1110
|
|
|
* @param int $view_id The ID of the View being displayed |
1111
|
|
|
*/ |
1112
|
2 |
|
do_action( 'gravityview_header', gravityview_get_view_id() ); |
1113
|
2 |
|
} |
1114
|
|
|
|
1115
|
|
|
function gravityview_footer() { |
1116
|
|
|
/** |
1117
|
|
|
* @action `gravityview/template/footer` Append content to the view. |
1118
|
|
|
* @param object $gravityview The $gravityview object available in templates. |
1119
|
|
|
*/ |
1120
|
33 |
|
if ( count( $args = func_get_args() ) ) { |
1121
|
31 |
|
$gravityview = reset( $args ); |
1122
|
31 |
|
if ( $gravityview instanceof \GV\Template_Context ) { |
1123
|
|
|
/** |
1124
|
|
|
* @action `gravityview/template/footer` Prepend outside of the view container <div>. |
1125
|
|
|
* @param \GV\Template_Context $gravityview The $gravityview object available in templates. |
1126
|
|
|
*/ |
1127
|
31 |
|
do_action( 'gravityview/template/footer', $gravityview ); |
1128
|
|
|
|
1129
|
|
|
/** |
1130
|
|
|
* @deprecated Use `gravityview/template/footer` |
1131
|
|
|
*/ |
1132
|
31 |
|
return do_action( 'gravityview_footer', $gravityview->view->ID ); |
1133
|
|
|
} |
1134
|
|
|
} |
1135
|
|
|
|
1136
|
|
|
/** |
1137
|
|
|
* @action `gravityview_after` Display content after a View. Used to render footer widget areas. Rendered outside the View container `<div>` |
1138
|
|
|
* @deprecated Use `gravityview/template/footer`. |
1139
|
|
|
* @param int $view_id The ID of the View being displayed |
1140
|
|
|
*/ |
1141
|
2 |
|
do_action( 'gravityview_footer', gravityview_get_view_id() ); |
1142
|
2 |
|
} |
1143
|
|
|
|
1144
|
|
|
function gravityview_after() { |
1145
|
37 |
|
if ( count( $args = func_get_args() ) ) { |
1146
|
35 |
|
$gravityview = reset( $args ); |
1147
|
35 |
|
if ( $gravityview instanceof \GV\Template_Context ) { |
1148
|
|
|
/** |
1149
|
|
|
* @action `gravityview/template/after` Append content to the view. |
1150
|
|
|
* @param \GV\Template_Context $gravityview The $gravityview object available in templates. |
1151
|
|
|
*/ |
1152
|
35 |
|
do_action( 'gravityview/template/after', $gravityview ); |
1153
|
|
|
|
1154
|
|
|
/** |
1155
|
|
|
* @deprecated Use `gravityview/template/after` |
1156
|
|
|
*/ |
1157
|
35 |
|
do_action( 'gravityview_after', $gravityview->view->ID ); |
1158
|
|
|
|
1159
|
35 |
|
return; |
1160
|
|
|
} |
1161
|
|
|
} |
1162
|
|
|
|
1163
|
|
|
/** |
1164
|
|
|
* @action `gravityview_after` Append content to the View container `<div>` |
1165
|
|
|
* @deprecated Use `gravityview/template/after` |
1166
|
|
|
* @param int $view_id The ID of the View being displayed |
1167
|
|
|
*/ |
1168
|
2 |
|
do_action( 'gravityview_after', gravityview_get_view_id() ); |
1169
|
2 |
|
} |
1170
|
|
|
|
1171
|
|
|
/** |
1172
|
|
|
* Get the current View ID being rendered |
1173
|
|
|
* |
1174
|
|
|
* @global GravityView_View $gravityview_view |
1175
|
|
|
* |
1176
|
|
|
* @return int View ID, if exists. `0` if `GravityView_View` doesn't exist, like in the admin, or no View is set. |
1177
|
|
|
*/ |
1178
|
|
|
function gravityview_get_view_id() { |
1179
|
|
|
|
1180
|
2 |
|
if ( ! class_exists( 'GravityView_View' ) ) { |
1181
|
|
|
return 0; |
1182
|
|
|
} |
1183
|
|
|
|
1184
|
2 |
|
return GravityView_View::getInstance()->getViewId(); |
1185
|
|
|
} |
1186
|
|
|
|
1187
|
|
|
/** |
1188
|
|
|
* Returns the current GravityView context, or empty string if not GravityView |
1189
|
|
|
* |
1190
|
|
|
* - Returns empty string on GravityView archive pages |
1191
|
|
|
* - Returns empty string on archive pages containing embedded Views |
1192
|
|
|
* - Returns empty string for embedded Views, not 'directory' |
1193
|
|
|
* - Returns empty string for embedded entries (oEmbed or [gventry]), not 'single' |
1194
|
|
|
* - Returns 'single' when viewing a [gravityview] shortcode-embedded single entry |
1195
|
|
|
* |
1196
|
|
|
* @global GravityView_View $gravityview_view |
1197
|
|
|
* @deprecated since 2.0.6.2 Use `gravityview()->request` |
1198
|
|
|
* @return string View context "directory", "single", "edit", or empty string if not GravityView |
1199
|
|
|
*/ |
1200
|
|
|
function gravityview_get_context() { |
1201
|
4 |
|
global $wp_query; |
1202
|
|
|
|
1203
|
4 |
|
if ( isset( $wp_query ) && $wp_query->post_count > 1 ) { |
1204
|
|
|
return ''; |
1205
|
|
|
} |
1206
|
|
|
|
1207
|
|
|
/** |
1208
|
|
|
* @filter `gravityview_is_edit_entry` Whether we're currently on the Edit Entry screen \n |
1209
|
|
|
* The Edit Entry functionality overrides this value. |
1210
|
|
|
* @param boolean $is_edit_entry |
1211
|
|
|
*/ |
1212
|
4 |
|
$is_edit_entry = apply_filters( 'gravityview_is_edit_entry', false ); |
1213
|
|
|
|
1214
|
4 |
|
if ( $is_edit_entry ) { |
1215
|
|
|
return 'edit'; |
1216
|
4 |
|
} else if ( gravityview()->request->is_entry() ) { |
1217
|
1 |
|
return 'single'; |
1218
|
4 |
|
} else if ( gravityview()->request->is_view() ) { |
1219
|
4 |
|
return 'directory'; |
1220
|
|
|
} |
1221
|
|
|
|
1222
|
|
|
return ''; |
1223
|
|
|
} |
1224
|
|
|
|
1225
|
|
|
|
1226
|
|
|
/** |
1227
|
|
|
* Return an array of files prepared for output. Wrapper for GravityView_Field_FileUpload::get_files_array() |
1228
|
|
|
* |
1229
|
|
|
* Processes files by file type and generates unique output for each. |
1230
|
|
|
* |
1231
|
|
|
* Returns array for each file, with the following keys: |
1232
|
|
|
* |
1233
|
|
|
* `file_path` => The file path of the file, with a line break |
1234
|
|
|
* `html` => The file output HTML formatted |
1235
|
|
|
* |
1236
|
|
|
* @see GravityView_Field_FileUpload::get_files_array() |
1237
|
|
|
* |
1238
|
|
|
* @since 1.2 |
1239
|
|
|
* @param string $value Field value passed by Gravity Forms. String of file URL, or serialized string of file URL array |
1240
|
|
|
* @param string $gv_class Field class to add to the output HTML |
1241
|
|
|
* @since 2.0 |
1242
|
|
|
* @param \GV\Template_Context $context The context |
1243
|
|
|
* @return array Array of file output, with `file_path` and `html` keys (see comments above) |
1244
|
|
|
*/ |
1245
|
|
|
function gravityview_get_files_array( $value, $gv_class = '', $context = null ) { |
1246
|
|
|
/** @define "GRAVITYVIEW_DIR" "../" */ |
1247
|
|
|
|
1248
|
5 |
|
if( !class_exists( 'GravityView_Field' ) ) { |
1249
|
|
|
include_once( GRAVITYVIEW_DIR .'includes/fields/class-gravityview-field.php' ); |
1250
|
|
|
} |
1251
|
|
|
|
1252
|
5 |
|
if( !class_exists( 'GravityView_Field_FileUpload' ) ) { |
1253
|
|
|
include_once( GRAVITYVIEW_DIR .'includes/fields/class-gravityview-field-fileupload.php' ); |
1254
|
|
|
} |
1255
|
|
|
|
1256
|
5 |
|
if ( is_null( $context ) ) { |
1257
|
|
|
_doing_it_wrong( __FUNCTION__, '2.0', 'Please pass an \GV\Template_Context object as the 3rd parameter' ); |
1258
|
|
|
} |
1259
|
|
|
|
1260
|
5 |
|
return GravityView_Field_FileUpload::get_files_array( $value, $gv_class, $context ); |
1261
|
|
|
} |
1262
|
|
|
|
1263
|
|
|
/** |
1264
|
|
|
* Generate a mapping link from an address |
1265
|
|
|
* |
1266
|
|
|
* The address should be plain text with new line (`\n`) or `<br />` line breaks separating sections |
1267
|
|
|
* |
1268
|
|
|
* @todo use GF's field get_export_value() instead |
1269
|
|
|
* |
1270
|
|
|
* @see https://gravityview.co/support/documentation/201608159 Read how to modify the link |
1271
|
|
|
* @param string $address Address |
1272
|
|
|
* @return string URL of link to map of address |
1273
|
|
|
*/ |
1274
|
|
|
function gravityview_get_map_link( $address ) { |
1275
|
|
|
|
1276
|
1 |
|
$address_qs = str_replace( array( '<br />', "\n" ), ' ', $address ); // Replace \n with spaces |
1277
|
1 |
|
$address_qs = urlencode( $address_qs ); |
1278
|
|
|
|
1279
|
1 |
|
$url = "https://maps.google.com/maps?q={$address_qs}"; |
1280
|
|
|
|
1281
|
1 |
|
$link_text = esc_html__( 'Map It', 'gravityview' ); |
1282
|
|
|
|
1283
|
1 |
|
$link = gravityview_get_link( $url, $link_text, 'class=map-it-link' ); |
1284
|
|
|
|
1285
|
|
|
/** |
1286
|
|
|
* @filter `gravityview_map_link` Modify the map link generated. You can use a different mapping service, for example. |
1287
|
|
|
* @param[in,out] string $link Map link |
1288
|
|
|
* @param[in] string $address Address to generate link for |
1289
|
|
|
* @param[in] string $url URL generated by the function |
1290
|
|
|
*/ |
1291
|
1 |
|
$link = apply_filters( 'gravityview_map_link', $link, $address, $url ); |
1292
|
|
|
|
1293
|
1 |
|
return $link; |
1294
|
|
|
} |
1295
|
|
|
|
1296
|
|
|
|
1297
|
|
|
/** |
1298
|
|
|
* Output field based on a certain html markup |
1299
|
|
|
* |
1300
|
|
|
* markup - string to be used on a sprintf statement. |
1301
|
|
|
* Use: |
1302
|
|
|
* {{label}} - field label |
1303
|
|
|
* {{value}} - entry field value |
1304
|
|
|
* {{class}} - field class |
1305
|
|
|
* |
1306
|
|
|
* wpautop - true will filter the value using wpautop function |
1307
|
|
|
* |
1308
|
|
|
* @since 1.1.5 |
1309
|
|
|
* @param array $passed_args Associative array with field data. `field` and `form` are required. |
1310
|
|
|
* @since 2.0 |
1311
|
|
|
* @param \GV\Template_Context The template context. |
1312
|
|
|
* @return string Field output. If empty value and hide empty is true, return empty. |
1313
|
|
|
*/ |
1314
|
|
|
function gravityview_field_output( $passed_args, $context = null ) { |
1315
|
|
|
$defaults = array( |
1316
|
34 |
|
'entry' => null, |
1317
|
|
|
'field' => null, |
1318
|
|
|
'form' => null, |
1319
|
|
|
'hide_empty' => true, |
1320
|
|
|
'markup' => '<div id="{{ field_id }}" class="{{ class }}">{{ label }}{{ value }}</div>', |
1321
|
|
|
'label_markup' => '', |
1322
|
|
|
'wpautop' => false, |
1323
|
|
|
'zone_id' => null, |
1324
|
|
|
); |
1325
|
|
|
|
1326
|
34 |
|
$args = wp_parse_args( $passed_args, $defaults ); |
1327
|
|
|
|
1328
|
|
|
/** |
1329
|
|
|
* @filter `gravityview/field_output/args` Modify the args before generation begins |
1330
|
|
|
* @since 1.7 |
1331
|
|
|
* @param array $args Associative array; `field` and `form` is required. |
1332
|
|
|
* @param array $passed_args Original associative array with field data. `field` and `form` are required. |
1333
|
|
|
* @since 2.0 |
1334
|
|
|
* @param \GV\Template_Context $context The context. |
1335
|
|
|
* @deprecated |
1336
|
|
|
*/ |
1337
|
34 |
|
$args = apply_filters( 'gravityview/field_output/args', $args, $passed_args, $context ); |
1338
|
|
|
|
1339
|
|
|
/** |
1340
|
|
|
* @filter `gravityview/template/field_output/context` Modify the context before generation begins. |
1341
|
|
|
* @since 2.0 |
1342
|
|
|
* @param[in,out] \GV\Template_Context $context The context. |
1343
|
|
|
* @param array $args The sanitized arguments, these should not be trusted any longer. |
1344
|
|
|
* @param array $passed_args The passed arguments, these should not be trusted any longer. |
1345
|
|
|
*/ |
1346
|
34 |
|
$context = apply_filters( 'gravityview/template/field_output/context', $context, $args, $passed_args ); |
1347
|
|
|
|
1348
|
34 |
|
if ( $context instanceof \GV\Template_Context ) { |
1349
|
32 |
|
if ( ! $context->field || ! $context->view || ! $context->view->form ) { |
1350
|
|
|
gravityview()->log->error( 'Field or form are empty.', array( 'data' => array( $context->field, $context->view->form ) ) ); |
1351
|
32 |
|
return ''; |
1352
|
|
|
} |
1353
|
|
|
} else { |
1354
|
|
|
// @deprecated path |
1355
|
|
|
// Required fields. |
1356
|
2 |
|
if ( empty( $args['field'] ) || empty( $args['form'] ) ) { |
1357
|
|
|
gravityview()->log->error( 'Field or form are empty.', array( 'data' => $args ) ); |
1358
|
|
|
return ''; |
1359
|
|
|
} |
1360
|
|
|
} |
1361
|
|
|
|
1362
|
34 |
|
if ( $context instanceof \GV\Template_Context ) { |
1363
|
32 |
|
$entry = $args['entry'] ? : ( $context->entry ? $context->entry->as_entry() : array() ); |
1364
|
32 |
|
$field = $args['field'] ? : ( $context->field ? $context->field->as_configuration() : array() ); |
1365
|
32 |
|
$form = $args['form'] ? : ( $context->view->form ? $context->view->form->form : array() ); |
|
|
|
|
1366
|
|
|
} else { |
1367
|
|
|
// @deprecated path |
1368
|
2 |
|
$entry = empty( $args['entry'] ) ? array() : $args['entry']; |
1369
|
2 |
|
$field = $args['field']; |
1370
|
2 |
|
$form = $args['form']; |
1371
|
|
|
} |
1372
|
|
|
|
1373
|
|
|
/** |
1374
|
|
|
* Create the content variables for replacing. |
1375
|
|
|
* @since 1.11 |
1376
|
|
|
*/ |
1377
|
|
|
$placeholders = array( |
1378
|
34 |
|
'value' => '', |
1379
|
|
|
'width' => '', |
1380
|
|
|
'width:style' => '', |
1381
|
|
|
'label' => '', |
1382
|
|
|
'label_value' => '', |
1383
|
|
|
'label_value:esc_attr' => '', |
1384
|
|
|
'label_value:data-label' => '', |
1385
|
|
|
'class' => '', |
1386
|
|
|
'field_id' => '', |
1387
|
|
|
); |
1388
|
|
|
|
1389
|
34 |
|
if ( $context instanceof \GV\Template_Context ) { |
1390
|
32 |
|
$placeholders['value'] = \GV\Utils::get( $args, 'value', '' ); |
1391
|
|
|
} else { |
1392
|
|
|
// @deprecated path |
1393
|
2 |
|
$placeholders['value'] = gv_value( $entry, $field ); |
|
|
|
|
1394
|
|
|
} |
1395
|
|
|
|
1396
|
|
|
// If the value is empty and we're hiding empty, return empty. |
1397
|
34 |
|
if ( $placeholders['value'] === '' && ! empty( $args['hide_empty'] ) ) { |
1398
|
5 |
|
return ''; |
1399
|
|
|
} |
1400
|
|
|
|
1401
|
34 |
|
if ( $placeholders['value'] !== '' && ! empty( $args['wpautop'] ) ) { |
1402
|
5 |
|
$placeholders['value'] = wpautop( $placeholders['value'] ); |
1403
|
|
|
} |
1404
|
|
|
|
1405
|
|
|
// Get width setting, if exists |
1406
|
34 |
|
$placeholders['width'] = GravityView_API::field_width( $field ); |
1407
|
|
|
|
1408
|
|
|
// If replacing with CSS inline formatting, let's do it. |
1409
|
34 |
|
$placeholders['width:style'] = GravityView_API::field_width( $field, 'width:' . $placeholders['width'] . '%;' ); |
1410
|
|
|
|
1411
|
|
|
// Grab the Class using `gv_class` |
1412
|
34 |
|
$placeholders['class'] = gv_class( $field, $form, $entry ); |
1413
|
34 |
|
$placeholders['field_id'] = GravityView_API::field_html_attr_id( $field, $form, $entry ); |
1414
|
|
|
|
1415
|
34 |
|
if ( $context instanceof \GV\Template_Context ) { |
1416
|
32 |
|
$placeholders['label_value'] = \GV\Utils::get( $args, 'label' ); |
1417
|
|
|
} else { |
1418
|
|
|
// Default Label value |
1419
|
2 |
|
$placeholders['label_value'] = gv_label( $field, $entry ); |
|
|
|
|
1420
|
|
|
} |
1421
|
|
|
|
1422
|
34 |
|
$placeholders['label_value:data-label'] = trim( esc_attr( strip_tags( str_replace( '> ', '>', $placeholders['label_value'] ) ) ) ); |
1423
|
34 |
|
$placeholders['label_value:esc_attr'] = esc_attr( $placeholders['label_value'] ); |
1424
|
|
|
|
1425
|
34 |
|
if ( empty( $placeholders['label'] ) && ! empty( $placeholders['label_value'] ) ){ |
1426
|
34 |
|
$placeholders['label'] = '<span class="gv-field-label">{{ label_value }}</span>'; |
1427
|
|
|
} |
1428
|
|
|
|
1429
|
|
|
/** |
1430
|
|
|
* @filter `gravityview/field_output/pre_html` Allow Pre filtering of the HTML |
1431
|
|
|
* @since 1.11 |
1432
|
|
|
* @param string $markup The HTML for the markup |
1433
|
|
|
* @param array $args All args for the field output |
1434
|
|
|
* @since 2.0 |
1435
|
|
|
* @param \GV\Template_Context $context The context. |
1436
|
|
|
*/ |
1437
|
34 |
|
$html = apply_filters( 'gravityview/field_output/pre_html', $args['markup'], $args, $context ); |
1438
|
|
|
|
1439
|
|
|
/** |
1440
|
|
|
* @filter `gravityview/field_output/open_tag` Modify the opening tags for the template content placeholders |
1441
|
|
|
* @since 1.11 |
1442
|
|
|
* @param string $open_tag Open tag for template content placeholders. Default: `{{` |
1443
|
|
|
* @since 2.0 |
1444
|
|
|
* @param \GV\Template_Context $context The context. |
1445
|
|
|
*/ |
1446
|
34 |
|
$open_tag = apply_filters( 'gravityview/field_output/open_tag', '{{', $args, $context ); |
1447
|
|
|
|
1448
|
|
|
/** |
1449
|
|
|
* @filter `gravityview/field_output/close_tag` Modify the closing tags for the template content placeholders |
1450
|
|
|
* @since 1.11 |
1451
|
|
|
* @param string $close_tag Close tag for template content placeholders. Default: `}}` |
1452
|
|
|
* @since 2.0 |
1453
|
|
|
* @param \GV\Template_Context $context The context. |
1454
|
|
|
*/ |
1455
|
34 |
|
$close_tag = apply_filters( 'gravityview/field_output/close_tag', '}}', $args, $context ); |
1456
|
|
|
|
1457
|
|
|
/** |
1458
|
|
|
* Loop through each of the tags to replace and replace both `{{tag}}` and `{{ tag }}` with the values |
1459
|
|
|
* @since 1.11 |
1460
|
|
|
*/ |
1461
|
34 |
|
foreach ( $placeholders as $tag => $value ) { |
1462
|
|
|
|
1463
|
|
|
// If the tag doesn't exist just skip it |
1464
|
34 |
|
if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ){ |
1465
|
34 |
|
continue; |
1466
|
|
|
} |
1467
|
|
|
|
1468
|
|
|
// Array to search |
1469
|
|
|
$search = array( |
1470
|
34 |
|
$open_tag . $tag . $close_tag, |
1471
|
34 |
|
$open_tag . ' ' . $tag . ' ' . $close_tag, |
1472
|
|
|
); |
1473
|
|
|
|
1474
|
|
|
/** |
1475
|
|
|
* `gravityview/field_output/context/{$tag}` Allow users to filter content on context |
1476
|
|
|
* @since 1.11 |
1477
|
|
|
* @param string $value The content to be shown instead of the {{tag}} placeholder |
1478
|
|
|
* @param array $args Arguments passed to the function |
1479
|
|
|
* @since 2.0 |
1480
|
|
|
* @param \GV\Template_Context $context The context. |
1481
|
|
|
*/ |
1482
|
34 |
|
$value = apply_filters( 'gravityview/field_output/context/' . $tag, $value, $args, $context ); |
1483
|
|
|
|
1484
|
|
|
// Finally do the replace |
1485
|
34 |
|
$html = str_replace( $search, $value, $html ); |
1486
|
|
|
} |
1487
|
|
|
|
1488
|
|
|
/** |
1489
|
|
|
* @filter `gravityview_field_output` Modify field HTML output |
1490
|
|
|
* @param string $html Existing HTML output |
1491
|
|
|
* @param array $args Arguments passed to the function |
1492
|
|
|
* @since 2.0 |
1493
|
|
|
* @param \GV\Template_Context $context The context. |
1494
|
|
|
*/ |
1495
|
34 |
|
$html = apply_filters( 'gravityview_field_output', $html, $args, $context ); |
1496
|
|
|
|
1497
|
|
|
/** |
1498
|
|
|
* @filter `gravityview/field_output/html` Modify field HTML output |
1499
|
|
|
* @param string $html Existing HTML output |
1500
|
|
|
* @param array $args Arguments passed to the function |
1501
|
|
|
* @since 2.0 |
1502
|
|
|
* @param \GV\Template_Context $context The context. |
1503
|
|
|
*/ |
1504
|
34 |
|
$html = apply_filters( 'gravityview/field_output/html', $html, $args, $context ); |
1505
|
|
|
|
1506
|
|
|
/** @since 2.0.8 Remove unused atts */ |
1507
|
34 |
|
$html = str_replace( array( ' style=""', ' class=""', ' id=""' ), '', $html ); |
1508
|
|
|
|
1509
|
34 |
|
return $html; |
1510
|
|
|
} |
1511
|
|
|
|
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.