forked from croata/acf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acf.php
908 lines (717 loc) · 19.7 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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
<?php
/*
Plugin Name: Advanced Custom Fields
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: 4.3.0
Author: Elliot Condon
Author URI: http://www.elliotcondon.com/
License: GPL
Copyright: Elliot Condon
*/
if( !class_exists('acf') ):
class acf
{
// vars
var $settings;
/*
* Constructor
*
* This function will construct all the neccessary actions, filters and functions for the ACF plugin to work
*
* @type function
* @date 23/06/12
* @since 1.0.0
*
* @param N/A
* @return N/A
*/
function __construct()
{
// helpers
add_filter('acf/helpers/get_path', array($this, 'helpers_get_path'), 1, 1);
add_filter('acf/helpers/get_dir', array($this, 'helpers_get_dir'), 1, 1);
// vars
$this->settings = array(
'path' => apply_filters('acf/helpers/get_path', __FILE__),
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
'version' => '4.3.0',
'upgrade_version' => '3.4.1',
);
// set text domain
load_textdomain('acf', $this->settings['path'] . 'lang/acf-' . get_locale() . '.mo');
// actions
add_action('init', array($this, 'init'), 1);
add_action('acf/pre_save_post', array($this, 'save_post_lock'), 0);
add_action('acf/pre_save_post', array($this, 'save_post_unlock'), 999);
add_action('acf/save_post', array($this, 'save_post_lock'), 0);
add_action('acf/save_post', array($this, 'save_post'), 10);
add_action('acf/save_post', array($this, 'save_post_unlock'), 999);
add_action('acf/create_fields', array($this, 'create_fields'), 1, 2);
// filters
add_filter('acf/get_info', array($this, 'get_info'), 1, 1);
add_filter('acf/parse_types', array($this, 'parse_types'), 1, 1);
add_filter('acf/get_post_types', array($this, 'get_post_types'), 1, 3);
add_filter('acf/get_taxonomies_for_select', array($this, 'get_taxonomies_for_select'), 1, 2);
add_filter('acf/get_image_sizes', array($this, 'get_image_sizes'), 1, 1);
add_filter('acf/get_post_id', array($this, 'get_post_id'), 1, 1);
// includes
add_action('plugins_loaded', array($this, 'include_before_theme'), 1);
add_action('after_setup_theme', array($this, 'include_after_theme'), 1);
}
/*
* helpers_get_path
*
* This function will calculate the path to a file
*
* @type function
* @date 30/01/13
* @since 3.6.0
*
* @param $file (file) a reference to the file
* @return (string)
*/
function helpers_get_path( $file )
{
return trailingslashit(dirname($file));
}
/*
* helpers_get_dir
*
* This function will calculate the directory (URL) to a file
*
* @type function
* @date 30/01/13
* @since 3.6.0
*
* @param $file (file) a reference to the file
* @return (string)
*/
function helpers_get_dir( $file )
{
$dir = trailingslashit(dirname($file));
$count = 0;
// sanitize for Win32 installs
$dir = str_replace('\\' ,'/', $dir);
// if file is in plugins folder
$wp_plugin_dir = str_replace('\\' ,'/', WP_PLUGIN_DIR);
$dir = str_replace($wp_plugin_dir, plugins_url(), $dir, $count);
if( $count < 1 )
{
// if file is in wp-content folder
$wp_content_dir = str_replace('\\' ,'/', WP_CONTENT_DIR);
$dir = str_replace($wp_content_dir, content_url(), $dir, $count);
}
if( $count < 1 )
{
// if file is in ??? folder
$wp_dir = str_replace('\\' ,'/', ABSPATH);
$dir = str_replace($wp_dir, site_url('/'), $dir);
}
return $dir;
}
/*
* acf/get_post_id
*
* A helper function to filter the post_id variable.
*
* @type filter
* @date 27/05/13
*
* @param {mixed} $post_id
* @return {mixed} $post_id
*/
function get_post_id( $post_id )
{
// set post_id to global
if( !$post_id )
{
global $post;
if( $post )
{
$post_id = intval( $post->ID );
}
}
// allow for option == options
if( $post_id == "option" )
{
$post_id = "options";
}
/*
* Override for preview
*
* If the $_GET['preview_id'] is set, then the user wants to see the preview data.
* There is also the case of previewing a page with post_id = 1, but using get_field
* to load data from another post_id.
* In this case, we need to make sure that the autosave revision is actually related
* to the $post_id variable. If they match, then the autosave data will be used, otherwise,
* the user wants to load data from a completely different post_id
*/
if( isset($_GET['preview_id']) )
{
$autosave = wp_get_post_autosave( $_GET['preview_id'] );
if( $autosave->post_parent == $post_id )
{
$post_id = intval( $autosave->ID );
}
}
// return
return $post_id;
}
/*
* get_info
*
* This function will return a setting from the settings array
*
* @type function
* @date 24/01/13
* @since 3.6.0
*
* @param $i (string) the setting to get
* @return (mixed)
*/
function get_info( $i )
{
// vars
$return = false;
// specific
if( isset($this->settings[ $i ]) )
{
$return = $this->settings[ $i ];
}
// all
if( $i == 'all' )
{
$return = $this->settings;
}
// return
return $return;
}
/*
* parse_types
*
* @description: helper function to set the 'types' of variables
* @since: 2.0.4
* @created: 9/12/12
*/
function parse_types( $value )
{
// vars
$restricted = array(
'label',
'name',
'value',
'instructions'
);
// is value another array?
if( is_array($value) )
{
foreach( $value as $k => $v )
{
// bail early for restricted pieces
if( in_array($k, $restricted, true) )
{
continue;
}
// filter piece
$value[ $k ] = apply_filters( 'acf/parse_types', $v );
}
}
else
{
// string
if( is_string($value) )
{
$value = trim( $value );
}
// numbers
if( is_numeric($value) )
{
// float / int
if( strpos($value,'.') !== false )
{
// leave decimal places alone
//$value = floatval( $value );
}
else
{
$value = intval( $value );
}
}
}
// return
return $value;
}
/*
* include_before_theme
*
* This function will include core files before the theme's functions.php file has been excecuted.
*
* @type action (plugins_loaded)
* @date 3/09/13
* @since 4.3.0
*
* @param N/A
* @return N/A
*/
function include_before_theme()
{
// incudes
include_once('core/api.php');
include_once('core/controllers/input.php');
include_once('core/controllers/location.php');
include_once('core/controllers/field_group.php');
// admin only includes
if( is_admin() )
{
include_once('core/controllers/post.php');
include_once('core/controllers/revisions.php');
include_once('core/controllers/everything_fields.php');
include_once('core/controllers/field_groups.php');
}
// register fields
include_once('core/fields/_functions.php');
include_once('core/fields/_base.php');
include_once('core/fields/text.php');
include_once('core/fields/textarea.php');
include_once('core/fields/number.php');
include_once('core/fields/email.php');
include_once('core/fields/password.php');
include_once('core/fields/wysiwyg.php');
include_once('core/fields/image.php');
include_once('core/fields/file.php');
include_once('core/fields/select.php');
include_once('core/fields/checkbox.php');
include_once('core/fields/radio.php');
include_once('core/fields/true_false.php');
include_once('core/fields/page_link.php');
include_once('core/fields/post_object.php');
include_once('core/fields/relationship.php');
include_once('core/fields/taxonomy.php');
include_once('core/fields/user.php');
include_once('core/fields/google-map.php');
include_once('core/fields/date_picker/date_picker.php');
include_once('core/fields/color_picker.php');
include_once('core/fields/message.php');
include_once('core/fields/tab.php');
}
/*
* include_after_theme
*
* This function will include core files after the theme's functions.php file has been excecuted.
*
* @type action (after_setup_theme)
* @date 3/09/13
* @since 4.3.0
*
* @param N/A
* @return N/A
*/
function include_after_theme()
{
// include 3rd party fields
do_action('acf/register_fields');
// bail early if user has defined LITE_MODE as true
if( defined('ACF_LITE') && ACF_LITE )
{
return;
}
// admin only includes
if( is_admin() )
{
include_once('core/controllers/export.php');
include_once('core/controllers/addons.php');
include_once('core/controllers/third_party.php');
include_once('core/controllers/upgrade.php');
}
}
/*
* init
*
* This function is called during the 'init' action and will do things such as:
* create post_type, register scripts, add actions / filters
*
* @type action (init)
* @date 23/06/12
* @since 1.0.0
*
* @param N/A
* @return N/A
*/
function init()
{
// Create ACF post type
$labels = array(
'name' => __( 'Field Groups', 'acf' ),
'singular_name' => __( 'Advanced Custom Fields', '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'),
);
register_post_type('acf', array(
'labels' => $labels,
'public' => false,
'show_ui' => true,
'_builtin' => false,
'capability_type' => 'page',
'hierarchical' => true,
'rewrite' => false,
'query_var' => "acf",
'supports' => array(
'title',
),
'show_in_menu' => false,
));
// register acf scripts
$scripts = array();
$scripts[] = array(
'handle' => 'acf-field-group',
'src' => $this->settings['dir'] . 'js/field-group.min.js',
'deps' => array('jquery')
);
$scripts[] = array(
'handle' => 'acf-input',
'src' => $this->settings['dir'] . 'js/input.min.js',
'deps' => array('jquery')
);
$scripts[] = array(
'handle' => 'acf-datepicker',
'src' => $this->settings['dir'] . 'core/fields/date_picker/jquery.ui.datepicker.js',
'deps' => array('jquery', 'acf-input')
);
/*
this script is now lazy loaded via JS
$scripts[] = array(
'handle' => 'acf-googlemaps',
'src' => 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=places',
'deps' => array('jquery'),
'in_footer' => true
);
*/
foreach( $scripts as $script )
{
// in footer?
if( !isset($script['in_footer']) )
{
$script['in_footer'] = false;
}
wp_register_script( $script['handle'], $script['src'], $script['deps'], $this->settings['version'], $script['in_footer'] );
}
// register acf styles
$styles = array(
'acf' => $this->settings['dir'] . 'css/acf.css',
'acf-field-group' => $this->settings['dir'] . 'css/field-group.css',
'acf-global' => $this->settings['dir'] . 'css/global.css',
'acf-input' => $this->settings['dir'] . 'css/input.css',
'acf-datepicker' => $this->settings['dir'] . 'core/fields/date_picker/style.date_picker.css',
);
foreach( $styles as $k => $v )
{
wp_register_style( $k, $v, false, $this->settings['version'] );
}
// bail early if user has defined LITE_MODE as true
if( defined('ACF_LITE') && ACF_LITE )
{
return;
}
// admin only
if( is_admin() )
{
add_action('admin_menu', array($this,'admin_menu'));
add_action('admin_head', array($this,'admin_head'));
add_filter('post_updated_messages', array($this, 'post_updated_messages'));
}
}
/*
* admin_menu
*
* @description:
* @since 1.0.0
* @created: 23/06/12
*/
function admin_menu()
{
add_utility_page(__("Custom Fields",'acf'), __("Custom Fields",'acf'), 'manage_options', 'edit.php?post_type=acf');
}
/*
* post_updated_messages
*
* @description: messages for saving a field group
* @since 1.0.0
* @created: 23/06/12
*/
function post_updated_messages( $messages )
{
global $post, $post_ID;
$messages['acf'] = array(
0 => '', // Unused. Messages start at index 1.
1 => __('Field group updated.', 'acf'),
2 => __('Custom field updated.', 'acf'),
3 => __('Custom field deleted.', 'acf'),
4 => __('Field group updated.', 'acf'),
/* translators: %s: date and time of the revision */
5 => isset($_GET['revision']) ? sprintf( __('Field group restored to revision from %s', 'acf'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
6 => __('Field group published.', 'acf'),
7 => __('Field group saved.', 'acf'),
8 => __('Field group submitted.', 'acf'),
9 => __('Field group scheduled for.', 'acf'),
10 => __('Field group draft updated.', 'acf'),
);
return $messages;
}
/*--------------------------------------------------------------------------------------
*
* admin_head
*
* @author Elliot Condon
* @since 1.0.0
*
*-------------------------------------------------------------------------------------*/
function admin_head()
{
?>
<style type="text/css">
#adminmenu #toplevel_page_edit-post_type-acf a[href="edit.php?post_type=acf&page=acf-upgrade"]{ display: none; }
#adminmenu #toplevel_page_edit-post_type-acf .wp-menu-image { background-position: 1px -33px; }
#adminmenu #toplevel_page_edit-post_type-acf:hover .wp-menu-image,
#adminmenu #toplevel_page_edit-post_type-acf.wp-menu-open .wp-menu-image { background-position: 1px -1px; }
</style>
<?php
}
/*
* get_taxonomies_for_select
*
* @description:
* @since: 3.6
* @created: 27/01/13
*/
function get_taxonomies_for_select( $choices, $simple_value = false )
{
// vars
$post_types = get_post_types();
if($post_types)
{
foreach($post_types as $post_type)
{
$post_type_object = get_post_type_object($post_type);
$taxonomies = get_object_taxonomies($post_type);
if($taxonomies)
{
foreach($taxonomies as $taxonomy)
{
if(!is_taxonomy_hierarchical($taxonomy)) continue;
$terms = get_terms($taxonomy, array('hide_empty' => false));
if($terms)
{
foreach($terms as $term)
{
$value = $taxonomy . ':' . $term->term_id;
if( $simple_value )
{
$value = $term->term_id;
}
$choices[$post_type_object->label . ': ' . $taxonomy][$value] = $term->name;
}
}
}
}
}
}
return $choices;
}
/*
* get_post_types
*
* @description:
* @since: 3.5.5
* @created: 16/12/12
*/
function get_post_types( $post_types, $exclude = array(), $include = array() )
{
// get all custom post types
$post_types = array_merge($post_types, get_post_types());
// core include / exclude
$acf_includes = array_merge( array(), $include );
$acf_excludes = array_merge( array( 'acf', 'revision', 'nav_menu_item' ), $exclude );
// include
foreach( $acf_includes as $p )
{
if( post_type_exists($p) )
{
$post_types[ $p ] = $p;
}
}
// exclude
foreach( $acf_excludes as $p )
{
unset( $post_types[ $p ] );
}
return $post_types;
}
/*
* get_image_sizes
*
* @description: returns an array holding all the image sizes
* @since 3.2.8
* @created: 6/07/12
*/
function get_image_sizes( $sizes )
{
// find all sizes
$all_sizes = get_intermediate_image_sizes();
// define default sizes
$sizes = array_merge($sizes, array(
'thumbnail' => __("Thumbnail",'acf'),
'medium' => __("Medium",'acf'),
'large' => __("Large",'acf'),
'full' => __("Full",'acf')
));
// add extra registered sizes
foreach( $all_sizes as $size )
{
if( !isset($sizes[ $size ]) )
{
$sizes[ $size ] = ucwords( str_replace('-', ' ', $size) );
}
}
// return array
return $sizes;
}
/*
* render_fields_for_input
*
* @description:
* @since 3.1.6
* @created: 23/06/12
*/
function create_fields( $fields, $post_id )
{
if( is_array($fields) ){ foreach( $fields as $field ){
// if they didn't select a type, skip this field
if( !$field || !$field['type'] || $field['type'] == 'null' )
{
continue;
}
// set value
if( !isset($field['value']) )
{
$field['value'] = apply_filters('acf/load_value', false, $post_id, $field);
$field['value'] = apply_filters('acf/format_value', $field['value'], $post_id, $field);
}
// required
$required_class = "";
$required_label = "";
if( $field['required'] )
{
$required_class = ' required';
$required_label = ' <span class="required">*</span>';
}
echo '<div id="acf-' . $field['name'] . '" class="field field_type-' . $field['type'] . ' field_key-' . $field['key'] . $required_class . '" data-field_name="' . $field['name'] . '" data-field_key="' . $field['key'] . '" data-field_type="' . $field['type'] . '">';
echo '<p class="label">';
echo '<label for="' . $field['id'] . '">' . $field['label'] . $required_label . '</label>';
echo $field['instructions'];
echo '</p>';
$field['name'] = 'fields[' . $field['key'] . ']';
do_action('acf/create_field', $field, $post_id);
echo '</div>';
}}
}
/*
* save_post_lock
*
* This action sets a global variable which locks the ACF save functions to this ID.
* This prevents an inifinite loop if a user was to hook into the save and create a new post
*
* @type function
* @date 16/07/13
*
* @param {int} $post_id
* @return {int} $post_id
*/
function save_post_lock( $post_id )
{
$GLOBALS['acf_save_lock'] = $post_id;
return $post_id;
}
/*
* save_post_unlock
*
* This action sets a global variable which unlocks the ACF save functions to this ID.
* This prevents an inifinite loop if a user was to hook into the save and create a new post
*
* @type function
* @date 16/07/13
*
* @param {int} $post_id
* @return {int} $post_id
*/
function save_post_unlock( $post_id )
{
$GLOBALS['acf_save_lock'] = false;
return $post_id;
}
/*
* save_post
*
* @description:
* @since: 3.6
* @created: 28/01/13
*/
function save_post( $post_id )
{
// load from post
if( !isset($_POST['fields']) )
{
return $post_id;
}
// loop through and save
if( !empty($_POST['fields']) )
{
// loop through and save $_POST data
foreach( $_POST['fields'] as $k => $v )
{
// get field
$f = apply_filters('acf/load_field', false, $k );
// update field
do_action('acf/update_value', $v, $post_id, $f );
}
// foreach($fields as $key => $value)
}
// if($fields)
return $post_id;
}
}
/*
* 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();
}
return $acf;
}
// initialize
acf();
endif; // class_exists check
?>