-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathclass-acf-field.php
executable file
·371 lines (333 loc) · 12.8 KB
/
class-acf-field.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
<?php
if ( ! class_exists( 'acf_field' ) ) :
#[AllowDynamicProperties]
class acf_field {
// field information properties.
public $name = '';
public $label = '';
public $category = 'basic';
public $description = '';
public $doc_url = false;
public $tutorial_url = false;
public $preview_image = false;
public $pro = false;
public $defaults = array();
public $l10n = array();
public $public = true;
public $show_in_rest = true;
public $supports = array(
'escaping_html' => false, // Set true when a field handles its own HTML escaping in format_value
'required' => true,
);
/**
* Initializes the `acf_field` class. To initialize a field type that is
* extending this class, use the `initialize()` method in the child class instead.
*
* @since 5.0.0
*/
public function __construct() {
// Initialize the field type.
$this->initialize();
// Register info about the field type.
acf_register_field_type_info(
array(
'label' => $this->label,
'name' => $this->name,
'category' => $this->category,
'description' => $this->description,
'doc_url' => $this->doc_url,
'tutorial_url' => $this->tutorial_url,
'preview_image' => $this->preview_image,
'pro' => $this->pro,
'public' => $this->public,
)
);
// value
$this->add_field_filter( 'acf/load_value', array( $this, 'load_value' ), 10, 3 );
$this->add_field_filter( 'acf/update_value', array( $this, 'update_value' ), 10, 3 );
$this->add_field_filter( 'acf/format_value', array( $this, 'format_value' ), 10, 4 );
$this->add_field_filter( 'acf/validate_value', array( $this, 'validate_value' ), 10, 4 );
$this->add_field_action( 'acf/delete_value', array( $this, 'delete_value' ), 10, 3 );
// field
$this->add_field_filter( 'acf/validate_rest_value', array( $this, 'validate_rest_value' ), 10, 3 );
$this->add_field_filter( 'acf/validate_field', array( $this, 'validate_field' ), 10, 1 );
$this->add_field_filter( 'acf/load_field', array( $this, 'load_field' ), 10, 1 );
$this->add_field_filter( 'acf/update_field', array( $this, 'update_field' ), 10, 1 );
$this->add_field_filter( 'acf/duplicate_field', array( $this, 'duplicate_field' ), 10, 1 );
$this->add_field_action( 'acf/delete_field', array( $this, 'delete_field' ), 10, 1 );
$this->add_field_action( 'acf/render_field', array( $this, 'render_field' ), 9, 1 );
$this->add_field_action( 'acf/render_field_settings', array( $this, 'render_field_settings' ), 9, 1 );
$this->add_field_filter( 'acf/prepare_field', array( $this, 'prepare_field' ), 10, 1 );
$this->add_field_filter( 'acf/translate_field', array( $this, 'translate_field' ), 10, 1 );
// input actions
$this->add_action( 'acf/input/admin_enqueue_scripts', array( $this, 'input_admin_enqueue_scripts' ), 10, 0 );
$this->add_action( 'acf/input/admin_head', array( $this, 'input_admin_head' ), 10, 0 );
$this->add_action( 'acf/input/form_data', array( $this, 'input_form_data' ), 10, 1 );
$this->add_filter( 'acf/input/admin_l10n', array( $this, 'input_admin_l10n' ), 10, 1 );
$this->add_action( 'acf/input/admin_footer', array( $this, 'input_admin_footer' ), 10, 1 );
// field group actions
$this->add_action( 'acf/field_group/admin_enqueue_scripts', array( $this, 'field_group_admin_enqueue_scripts' ), 10, 0 );
$this->add_action( 'acf/field_group/admin_head', array( $this, 'field_group_admin_head' ), 10, 0 );
$this->add_action( 'acf/field_group/admin_footer', array( $this, 'field_group_admin_footer' ), 10, 0 );
// Add field global settings configurable by supports on specific field types.
$this->add_field_action( 'acf/field_group/render_field_settings_tab/validation', array( $this, 'render_required_setting' ), 5 );
$this->add_field_action( 'acf/field_group/render_field_settings_tab/presentation', array( $this, 'render_bindings_setting' ), 5 );
foreach ( acf_get_combined_field_type_settings_tabs() as $tab_key => $tab_label ) {
$this->add_field_action( "acf/field_group/render_field_settings_tab/{$tab_key}", array( $this, "render_field_{$tab_key}_settings" ), 9, 1 );
}
}
/**
* Initializes the field type. Overridden in child classes.
*
* @since 5.6.0
*/
public function initialize() {
/* do nothing */
}
/**
* Checks a function `is_callable()` before adding the filter, since
* classes that extend `acf_field` might not implement all filters.
*
* @since 5.0.0
*
* @param string $tag The name of the filter to add the callback to.
* @param string $function_to_add The callback to be run when the filter is applied.
* @param integer $priority The priority to add the filter on.
* @param integer $accepted_args The number of args to pass to the function.
* @return void
*/
public function add_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
// Bail early if not callable.
if ( ! is_callable( $function_to_add ) ) {
return;
}
add_filter( $tag, $function_to_add, $priority, $accepted_args );
}
/**
* Adds a filter specific to the current field type.
*
* @since 5.4.0
*
* @param string $tag The name of the filter to add the callback to.
* @param string $function_to_add The callback to be run when the filter is applied.
* @param integer $priority The priority to add the filter on.
* @param integer $accepted_args The number of args to pass to the function.
* @return void
*/
public function add_field_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
// Append the field type name to the tag before adding the filter.
$tag .= '/type=' . $this->name;
$this->add_filter( $tag, $function_to_add, $priority, $accepted_args );
}
/**
* Checks a function `is_callable()` before adding the action, since
* classes that extend `acf_field` might not implement all actions.
*
* @since 5.0.0
*
* @param string $tag The name of the action to add the callback to.
* @param string $function_to_add The callback to be run when the action is ran.
* @param integer $priority The priority to add the action on.
* @param integer $accepted_args The number of args to pass to the function.
* @return void
*/
public function add_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
// Bail early if not callable
if ( ! is_callable( $function_to_add ) ) {
return;
}
add_action( $tag, $function_to_add, $priority, $accepted_args );
}
/**
* Adds an action specific to the current field type.
*
* @since 5.4.0
*
* @param string $tag The name of the action to add the callback to.
* @param string $function_to_add The callback to be run when the action is ran.
* @param integer $priority The priority to add the action on.
* @param integer $accepted_args The number of args to pass to the function.
* @return void
*/
public function add_field_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
// Append the field type name to the tag before adding the action.
$tag .= '/type=' . $this->name;
$this->add_action( $tag, $function_to_add, $priority, $accepted_args );
}
/**
* Appends default settings to a field.
* Runs on `acf/validate_field/type={$this->name}`.
*
* @since 3.6
*
* @param array $field The field array.
* @return array $field
*/
public function validate_field( $field ) {
// Bail early if no defaults.
if ( ! is_array( $this->defaults ) ) {
return $field;
}
// Merge in defaults but keep order of $field keys.
foreach ( $this->defaults as $k => $v ) {
if ( ! isset( $field[ $k ] ) ) {
$field[ $k ] = $v;
}
}
return $field;
}
/**
* Append l10n text translations to an array which is later passed to JS.
* Runs on `acf/input/admin_l10n`.
*
* @since 3.6
*
* @param array $l10n
* @return array $l10n
*/
public function input_admin_l10n( $l10n ) {
// Bail early if no defaults.
if ( empty( $this->l10n ) ) {
return $l10n;
}
// Append.
$l10n[ $this->name ] = $this->l10n;
return $l10n;
}
/**
* Add additional validation for fields being updated via the REST API.
*
* @param boolean $valid The current validity booleean
* @param integer $value The value of the field
* @param array $field The field array
* @return boolean|WP_Error
*/
public function validate_rest_value( $valid, $value, $field ) {
return $valid;
}
/**
* Return the schema array for the REST API.
*
* @param array $field
* @return array
*/
public function get_rest_schema( array $field ) {
$schema = array(
'type' => array( 'string', 'null' ),
'required' => ! empty( $field['required'] ),
);
if ( isset( $field['default_value'] ) && '' !== $field['default_value'] ) {
$schema['default'] = $field['default_value'];
}
return $schema;
}
/**
* Return an array of links for addition to the REST API response. Each link is an array and must have both `rel` and
* `href` keys. The `href` key must be a REST API resource URL. If a link is marked as `embeddable`, the `_embed` URL
* parameter will trigger WordPress to dispatch an internal sub request and load the object within the same request
* under the `_embedded` response property.
*
* e.g;
* [
* [
* 'rel' => 'acf:post',
* 'href' => 'https://example.com/wp-json/wp/v2/posts/497',
* 'embeddable' => true,
* ],
* [
* 'rel' => 'acf:user',
* 'href' => 'https://example.com/wp-json/wp/v2/users/2',
* 'embeddable' => true,
* ],
* ]
*
* @param mixed $value The raw (unformatted) field value.
* @param string|integer $post_id
* @param array $field
* @return array
*/
public function get_rest_links( $value, $post_id, array $field ) {
return array();
}
/**
* Apply basic formatting to prepare the value for default REST output.
*
* @param mixed $value
* @param string|integer $post_id
* @param array $field
* @return mixed
*/
public function format_value_for_rest( $value, $post_id, array $field ) {
return $value;
}
/**
* Renders the "Required" setting on the field type "Validation" settings tab.
*
* @since 6.2.5
*
* @param array $field The field type being rendered.
* @return void
*/
public function render_required_setting( $field ) {
$supports_required = acf_field_type_supports( $field['type'], 'required', true );
// Only prevent rendering if explicitly disabled.
if ( ! $supports_required ) {
return;
}
acf_render_field_setting(
$field,
array(
'label' => __( 'Required', 'acf' ),
'instructions' => '',
'type' => 'true_false',
'name' => 'required',
'ui' => 1,
'class' => 'field-required',
),
true
);
}
/**
* Renders the "Allow in Bindings" setting on the field type "Presentation" settings tab.
*
* @since 6.3.6
*
* @param array $field The field type being rendered.
* @return void
*/
public function render_bindings_setting( $field ) {
$supports_bindings = acf_field_type_supports( $field['type'], 'bindings', true );
// Only prevent rendering if explicitly disabled.
if ( ! $supports_bindings ) {
return;
}
/* translators: %s A "Learn More" link to documentation explaining the setting further. */
$binding_string = esc_html__( 'Allow content editors to access and display the field value in the editor UI using Block Bindings or the ACF Shortcode. %s', 'acf' );
$binding_url = '<a target="_blank" href="' . acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/bindings-security/', 'docs', 'field-settings' ) . '">' . esc_html__( 'Learn more.', 'acf' ) . '</a>';
$binding_instructions = sprintf(
$binding_string,
$binding_url
);
// This field setting has a unique behaviour. If the value isn't defined on the field object, it defaults to true, but for new fields, it defaults to off.
if ( ! isset( $field['allow_in_bindings'] ) ) {
if ( empty( $field['ID'] ) ) {
$field['allow_in_bindings'] = false;
} else {
$field['allow_in_bindings'] = true;
}
}
acf_render_field_setting(
$field,
array(
'label' => __( 'Allow Access to Value in Editor UI', 'acf' ),
'instructions' => $binding_instructions,
'type' => 'true_false',
'name' => 'allow_in_bindings',
'ui' => 1,
'class' => 'field-show-in-bindings',
),
true
);
}
}
endif; // class_exists check