forked from toddsby/acf5-beta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acf.php
543 lines (426 loc) · 11.4 KB
/
acf.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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
<?php
/*
Plugin Name: Advanced Custom Fields Pro
Plugin URI: http://www.advancedcustomfields.com/
Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
Version: 5.0.0 beta
Author: elliot condon
Author URI: http://www.elliotcondon.com/
License: GPL
Copyright: Elliot Condon
Text Domain: acf
Domain Path: /lang
*/
// Current with acf v4 as of 27th Feb 1dde13a0bb8af763ef086f2ca0be4553ac955346
if( !class_exists('acf') ):
class acf {
// vars
var $settings;
/*
* __construct
*
* A dummy constructor to ensure ACF is only initialized once
*
* @type function
* @date 23/06/12
* @since 5.0.0
*
* @param N/A
* @return N/A
*/
function __construct() {
/* Do nothing here */
}
/*
* initialize
*
* The real constructor to initialize ACF
*
* @type function
* @date 28/09/13
* @since 5.0.0
*
* @param $post_id (int)
* @return $post_id (int)
*/
function initialize() {
// vars
$this->settings = array(
// basic
'name' => __('Advanced Custom Fields', 'acf'),
'version' => '5.0.0',
// urls
'basename' => plugin_basename( __FILE__ ),
'path' => plugin_dir_path( __FILE__ ),
'dir' => plugin_dir_url( __FILE__ ),
// options
'show_admin' => true,
'stripslashes' => true,
'local' => true,
'json' => true,
'save_json' => '',
'load_json' => array()
);
// include helpers
include_once('api/api-helpers.php');
// set text domain
load_textdomain( 'acf', acf_get_path( 'lang/acf-' . get_locale() . '.mo' ) );
// api
acf_include('api/api-value.php');
acf_include('api/api-field.php');
acf_include('api/api-field-group.php');
acf_include('api/api-template.php');
// core
acf_include('core/field.php');
acf_include('core/input.php');
acf_include('core/json.php');
acf_include('core/local.php');
acf_include('core/location.php');
acf_include('core/revisions.php');
acf_include('core/compatibility.php');
// forms
acf_include('forms/attachment.php');
acf_include('forms/comment.php');
acf_include('forms/post.php');
acf_include('forms/taxonomy.php');
acf_include('forms/user.php');
acf_include('forms/widget.php');
// admin
if( is_admin() ) {
acf_include('admin/admin.php');
acf_include('admin/field-group.php');
acf_include('admin/field-groups.php');
acf_include('admin/update.php');
acf_include('admin/settings-export.php');
acf_include('admin/settings-addons.php');
acf_include('admin/settings-info.php');
}
// fields
acf_include('fields/text.php');
acf_include('fields/textarea.php');
acf_include('fields/number.php');
acf_include('fields/email.php');
acf_include('fields/password.php');
acf_include('fields/wysiwyg.php');
acf_include('fields/oembed.php');
acf_include('fields/image.php');
acf_include('fields/file.php');
acf_include('fields/select.php');
acf_include('fields/checkbox.php');
acf_include('fields/radio.php');
acf_include('fields/true_false.php');
acf_include('fields/post_object.php');
acf_include('fields/page_link.php');
acf_include('fields/relationship.php');
acf_include('fields/taxonomy.php');
acf_include('fields/user.php');
acf_include('fields/google-map.php');
acf_include('fields/date_picker.php');
acf_include('fields/color_picker.php');
acf_include('fields/message.php');
acf_include('fields/tab.php');
// pro
acf_include('pro/acf-pro.php');
// actions
add_action('plugins_loaded', array($this, 'wp_plugins_loaded'), 99);
add_action('setup_theme', array($this, 'wp_setup_theme'), 99);
add_action('after_setup_theme', array($this, 'wp_after_setup_theme'), 5);
add_action('init', array($this, 'wp_init'), 5);
add_filter('posts_where', array($this, 'wp_posts_where'), 10, 2 );
}
/*
* wp_plugins_loaded
*
* This function will fire once all plugins have loaded
*
* @type function
* @date 5/03/2014
* @since 5.0.0
*
* @param n/a
* @return n/a
*/
function wp_plugins_loaded() {
// wpml
if( defined('ICL_SITEPRESS_VERSION') )
{
acf_include('core/wpml.php');
}
}
/*
* wp_setup_theme
*
* This function will fire before the functions.php file is read
*
* @type function
* @date 10/03/2014
* @since 5.0.0
*
* @param n/a
* @return n/a
*/
function wp_setup_theme() {
acf_update_setting('setup_theme', true);
}
/*
* wp_after_setup_theme
*
* This function will fire after the functions.php file is read
*
* @type function
* @date 10/03/2014
* @since 5.0.0
*
* @param n/a
* @return n/a
*/
function wp_after_setup_theme() {
$this->complete();
}
/*
* complete
*
* This function will ensure all files are included
*
* @type function
* @date 10/03/2014
* @since 5.0.0
*
* @param n/a
* @return n/a
*/
function complete() {
// bail early if actions have not passed 'setup_theme'
if( ! acf_get_setting('setup_theme') )
{
return;
}
// once run once
if( acf_get_setting('complete') )
{
return;
}
// update setting
acf_update_setting('complete', true);
// action for 3rd party customization
do_action('acf/include_field_types', 5);
do_action('acf/include_fields', 5);
}
/*
* wp_init
*
* This function will run on the WP init action and setup many things
*
* @type action (init)
* @date 28/09/13
* @since 5.0.0
*
* @param N/A
* @return N/A
*/
function wp_init()
{
// Create post type 'acf-field-group'
register_post_type( 'acf-field-group', array(
'labels' => array(
'name' => __( 'Field Groups', 'acf' ),
'singular_name' => __( 'Field Group', 'acf' ),
'add_new' => __( 'Add New' , 'acf' ),
'add_new_item' => __( 'Add New Field Group' , 'acf' ),
'edit_item' => __( 'Edit Field Group' , 'acf' ),
'new_item' => __( 'New Field Group' , 'acf' ),
'view_item' => __( 'View Field Group', 'acf' ),
'search_items' => __( 'Search Field Groups', 'acf' ),
'not_found' => __( 'No Field Groups found', 'acf' ),
'not_found_in_trash' => __( 'No Field Groups found in Trash', 'acf' ),
),
'public' => false,
'show_ui' => true,
'_builtin' => false,
'capability_type' => 'page',
'hierarchical' => true,
'rewrite' => false,
'query_var' => false,
'supports' => array( 'title' ),
'show_in_menu' => false,
));
// Create post type 'acf-field'
register_post_type( 'acf-field', array(
'labels' => array(
'name' => __( 'Fields', 'acf' ),
'singular_name' => __( 'Field', 'acf' ),
'add_new' => __( 'Add New' , 'acf' ),
'add_new_item' => __( 'Add New Field' , 'acf' ),
'edit_item' => __( 'Edit Field' , 'acf' ),
'new_item' => __( 'New Field' , 'acf' ),
'view_item' => __( 'View Field', 'acf' ),
'search_items' => __( 'Search Fields', 'acf' ),
'not_found' => __( 'No Fields found', 'acf' ),
'not_found_in_trash' => __( 'No Fields found in Trash', 'acf' ),
),
'public' => false,
'show_ui' => false,
'_builtin' => false,
'capability_type' => 'page',
'hierarchical' => true,
'rewrite' => false,
'query_var' => false,
'supports' => array( 'title' ),
'show_in_menu' => false,
));
// min
//$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
$min = '';
// register scripts
$scripts = array();
$scripts[] = array(
'handle' => 'select2',
'src' => acf_get_dir( "inc/select2/select2{$min}.js" ),
'deps' => array('jquery'),
);
$scripts[] = array(
'handle' => 'acf-input',
'src' => acf_get_dir( "js/input{$min}.js" ),
'deps' => array('jquery', 'jquery-ui-core', 'jquery-ui-datepicker', 'underscore', 'select2'),
);
$scripts[] = array(
'handle' => 'acf-field-group',
'src' => acf_get_dir( "js/field-group{$min}.js"),
'deps' => array('acf-input'),
);
foreach( $scripts as $script )
{
wp_register_script( $script['handle'], $script['src'], $script['deps'], acf_get_setting('version') );
}
// register styles
$styles = array();
$styles[] = array(
'handle' => 'select2',
'src' => acf_get_dir( 'inc/select2/select2.css' ),
'deps' => array(),
);
$styles[] = array(
'handle' => 'acf-datepicker',
'src' => acf_get_dir( 'inc/datepicker/jquery-ui-1.10.4.custom.min.css' ),
'deps' => array(),
);
$styles[] = array(
'handle' => 'acf-global',
'src' => acf_get_dir( 'css/global.css' ),
'deps' => array(),
);
$styles[] = array(
'handle' => 'acf-field-group',
'src' => acf_get_dir( 'css/field-group.css' ),
'deps' => array(),
);
$styles[] = array(
'handle' => 'acf-input',
'src' => acf_get_dir( 'css/input.css' ),
'deps' => array('acf-datepicker', 'select2'),
);
foreach( $styles as $style )
{
wp_register_style( $style['handle'], $style['src'], $style['deps'], acf_get_setting('version') );
}
}
/*
* wp_posts_where
*
* This function will add in some new parameters to the WP_Query args allowing fields to be found via key / name
*
* @type filter
* @date 5/12/2013
* @since 5.0.0
*
* @param $where (string)
* @param $wp_query (object)
* @return $where (string)
*/
function wp_posts_where( $where, $wp_query ) {
// global
global $wpdb;
// acf_field_key
if( $field_key = $wp_query->get('acf_field_key') )
{
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_name = %s", $field_key );
}
// acf_field_name
if( $field_name = $wp_query->get('acf_field_name') )
{
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_excerpt = %s", $field_name );
// acf_post_id
if( $post_id = $wp_query->get('acf_post_id') )
{
$where .= $wpdb->prepare(" AND {$wpdb->postmeta}.post_id = %d", $post_id );
}
}
// acf_group_key
if( $group_key = $wp_query->get('acf_group_key') )
{
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_name = %s", $group_key );
}
return $where;
}
/*
* debug SQL
*
* description
*
* @type function
* @date 27/02/2014
* @since 5.0.0
*
* @param $post_id (int)
* @return $post_id (int)
*/
function wp_posts_join( $join, $wp_query ) {
/*
// acf_field_name
if( $post_id = $wp_query->get('acf_post_id') )
{
$join = str_replace('.ID', '.post_name', $join);
$join = str_replace('.post_id', '.meta_value', $join);
}
*/
return $join;
}
function posts_request( $thing ) {
/*
echo '<pre>';
print_r($thing );
echo '</pre>';
die;
*/
return $thing;
}
}
/*
* acf
*
* The main function responsible for returning the one true acf Instance to functions everywhere.
* Use this function like you would a global variable, except without needing to declare the global.
*
* Example: <?php $acf = acf(); ?>
*
* @type function
* @date 4/09/13
* @since 4.3.0
*
* @param N/A
* @return (object)
*/
function acf()
{
global $acf;
if( !isset($acf) )
{
$acf = new acf();
$acf->initialize();
}
return $acf;
}
// initialize
acf();
endif; // class_exists check
?>