Skip to content

Commit 6ae3379

Browse files
committed
Deploying version 6.5.0
1 parent 52195c8 commit 6ae3379

File tree

175 files changed

+3060
-2396
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+3060
-2396
lines changed

acf.php

Lines changed: 44 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin Name: Advanced Custom Fields
1010
* Plugin URI: https://www.advancedcustomfields.com
1111
* Description: Customize WordPress with powerful, professional and intuitive fields.
12-
* Version: 6.4.3
12+
* Version: 6.5.0
1313
* Author: WP Engine
1414
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
1515
* Update URI: https://www.advancedcustomfields.com
@@ -28,15 +28,14 @@
2828
/**
2929
* The main ACF class
3030
*/
31-
#[AllowDynamicProperties]
3231
class ACF {
3332

3433
/**
3534
* The plugin version number.
3635
*
3736
* @var string
3837
*/
39-
public $version = '6.4.3';
38+
public $version = '6.5.0';
4039

4140
/**
4241
* The plugin settings array.
@@ -59,6 +58,48 @@ class ACF {
5958
*/
6059
public $instances = array();
6160

61+
/**
62+
* The loop instance.
63+
*
64+
* @var acf_loop
65+
*/
66+
public $loop;
67+
68+
/**
69+
* The revisions instance.
70+
*
71+
* @var acf_revisions
72+
*/
73+
public $revisions;
74+
75+
/**
76+
* The fields instance.
77+
*
78+
* @var acf_fields
79+
*/
80+
public $fields;
81+
82+
/**
83+
* The form front instance.
84+
*
85+
* @var acf_form_front
86+
*/
87+
public $form_front;
88+
89+
/**
90+
* The validation instance.
91+
*
92+
* @var acf_validation
93+
*/
94+
public $validation;
95+
96+
/**
97+
* The admin tools instance.
98+
*
99+
* @var acf_admin_tools
100+
*/
101+
public $admin_tools;
102+
62103
/**
63104
* A dummy constructor to ensure ACF is only setup once.
64105
*

assets/build/css/acf-field-group.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-global.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-input.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf-field-group.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf-input.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

assets/images/icons/icon-edit.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)