Skip to content

Commit

Permalink
Merge pull request #174 from mediasanctuary/upgrades
Browse files Browse the repository at this point in the history
upgrade plugins
  • Loading branch information
dphiffer authored Sep 14, 2023
2 parents 0e9a3c1 + fa9fc20 commit c5aab74
Show file tree
Hide file tree
Showing 866 changed files with 56,927 additions and 32,251 deletions.
102 changes: 55 additions & 47 deletions wp-content/plugins/advanced-custom-fields-pro/acf.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@
* @author WP Engine
*
* @wordpress-plugin
* Plugin Name: Advanced Custom Fields PRO
* Plugin URI: https://www.advancedcustomfields.com
* Description: Customize WordPress with powerful, professional and intuitive fields.
* Version: 6.1.6
* Author: WP Engine
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
* Update URI: https://www.advancedcustomfields.com/pro
* Text Domain: acf
* Domain Path: /lang
* Plugin Name: Advanced Custom Fields PRO
* Plugin URI: https://www.advancedcustomfields.com
* Description: Customize WordPress with powerful, professional and intuitive fields.
* Version: 6.2.1.1
* Author: WP Engine
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
* Update URI: https://www.advancedcustomfields.com/pro
* Text Domain: acf
* Domain Path: /lang
* Requires PHP: 7.0
* Requires at least: 5.8
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -34,7 +36,7 @@ class ACF {
*
* @var string
*/
public $version = '6.1.6';
public $version = '6.2.1.1';

/**
* The plugin settings array.
Expand Down Expand Up @@ -90,42 +92,44 @@ public function initialize() {

// Define settings.
$this->settings = array(
'name' => __( 'Advanced Custom Fields', 'acf' ),
'slug' => dirname( ACF_BASENAME ),
'version' => ACF_VERSION,
'basename' => ACF_BASENAME,
'path' => ACF_PATH,
'file' => __FILE__,
'url' => plugin_dir_url( __FILE__ ),
'show_admin' => true,
'show_updates' => true,
'enable_post_types' => true,
'stripslashes' => false,
'local' => true,
'json' => true,
'save_json' => '',
'load_json' => array(),
'default_language' => '',
'current_language' => '',
'capability' => 'manage_options',
'uploader' => 'wp',
'autoload' => false,
'l10n' => true,
'l10n_textdomain' => '',
'google_api_key' => '',
'google_api_client' => '',
'enqueue_google_maps' => true,
'enqueue_select2' => true,
'enqueue_datepicker' => true,
'enqueue_datetimepicker' => true,
'select2_version' => 4,
'row_index_offset' => 1,
'remove_wp_meta_box' => true,
'rest_api_enabled' => true,
'rest_api_format' => 'light',
'rest_api_embed_links' => true,
'preload_blocks' => true,
'enable_shortcode' => true,
'name' => __( 'Advanced Custom Fields', 'acf' ),
'slug' => dirname( ACF_BASENAME ),
'version' => ACF_VERSION,
'basename' => ACF_BASENAME,
'path' => ACF_PATH,
'file' => __FILE__,
'url' => plugin_dir_url( __FILE__ ),
'show_admin' => true,
'show_updates' => true,
'enable_post_types' => true,
'enable_options_pages_ui' => true,
'stripslashes' => false,
'local' => true,
'json' => true,
'save_json' => '',
'load_json' => array(),
'default_language' => '',
'current_language' => '',
'capability' => 'manage_options',
'uploader' => 'wp',
'autoload' => false,
'l10n' => true,
'l10n_textdomain' => '',
'google_api_key' => '',
'google_api_client' => '',
'enqueue_google_maps' => true,
'enqueue_select2' => true,
'enqueue_datepicker' => true,
'enqueue_datetimepicker' => true,
'select2_version' => 4,
'row_index_offset' => 1,
'remove_wp_meta_box' => true,
'rest_api_enabled' => true,
'rest_api_format' => 'light',
'rest_api_embed_links' => true,
'preload_blocks' => true,
'enable_shortcode' => true,
'enable_bidirection' => true,
);

// Include utility functions.
Expand All @@ -147,6 +151,7 @@ public function initialize() {
acf_include( 'includes/acf-helper-functions.php' );
acf_include( 'includes/acf-hook-functions.php' );
acf_include( 'includes/acf-field-functions.php' );
acf_include( 'includes/acf-bidirectional-functions.php' );
acf_include( 'includes/acf-internal-post-type-functions.php' );
acf_include( 'includes/acf-post-type-functions.php' );
acf_include( 'includes/acf-taxonomy-functions.php' );
Expand Down Expand Up @@ -270,10 +275,13 @@ public function init() {

// Add post types and taxonomies.
if ( acf_get_setting( 'enable_post_types' ) ) {
acf_include( 'includes/post-types/class-acf-post-type.php' );
acf_include( 'includes/post-types/class-acf-taxonomy.php' );
acf_include( 'includes/post-types/class-acf-post-type.php' );
}

// Add other ACF internal post types.
do_action( 'acf/init_internal_post_types' );

// Include fields.
acf_include( 'includes/fields/class-acf-field-text.php' );
acf_include( 'includes/fields/class-acf-field-textarea.php' );
Expand Down
Loading

0 comments on commit c5aab74

Please sign in to comment.