165 lines
3.6 KiB
PHP
165 lines
3.6 KiB
PHP
|
<?php
|
||
|
|
||
|
if ( ! class_exists( 'acf_pro' ) ) :
|
||
|
|
||
|
class acf_pro {
|
||
|
|
||
|
/*
|
||
|
* __construct
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
* @type function
|
||
|
* @date 23/06/12
|
||
|
* @since 5.0.0
|
||
|
*
|
||
|
* @param N/A
|
||
|
* @return N/A
|
||
|
*/
|
||
|
|
||
|
function __construct() {
|
||
|
|
||
|
// constants
|
||
|
acf()->define( 'ACF_PRO', true );
|
||
|
|
||
|
// update setting
|
||
|
acf_update_setting( 'pro', true );
|
||
|
acf_update_setting( 'name', __( 'Advanced Custom Fields PRO', 'acf' ) );
|
||
|
|
||
|
// includes
|
||
|
acf_include( 'pro/blocks.php' );
|
||
|
acf_include( 'pro/options-page.php' );
|
||
|
acf_include( 'pro/updates.php' );
|
||
|
|
||
|
if ( is_admin() ) {
|
||
|
acf_include( 'pro/admin/admin-options-page.php' );
|
||
|
acf_include( 'pro/admin/admin-updates.php' );
|
||
|
}
|
||
|
|
||
|
// actions
|
||
|
add_action( 'init', array( $this, 'register_assets' ) );
|
||
|
add_action( 'acf/include_field_types', array( $this, 'include_field_types' ), 5 );
|
||
|
add_action( 'acf/include_location_rules', array( $this, 'include_location_rules' ), 5 );
|
||
|
add_action( 'acf/input/admin_enqueue_scripts', array( $this, 'input_admin_enqueue_scripts' ) );
|
||
|
add_action( 'acf/field_group/admin_enqueue_scripts', array( $this, 'field_group_admin_enqueue_scripts' ) );
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Includes any files necessary for field types.
|
||
|
*
|
||
|
* @date 21/10/2015
|
||
|
* @since 5.2.3
|
||
|
*/
|
||
|
function include_field_types() {
|
||
|
acf_include( 'pro/fields/class-acf-repeater-table.php' );
|
||
|
acf_include( 'pro/fields/class-acf-field-repeater.php' );
|
||
|
acf_include( 'pro/fields/class-acf-field-flexible-content.php' );
|
||
|
acf_include( 'pro/fields/class-acf-field-gallery.php' );
|
||
|
acf_include( 'pro/fields/class-acf-field-clone.php' );
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* include_location_rules
|
||
|
*
|
||
|
* description
|
||
|
*
|
||
|
* @type function
|
||
|
* @date 10/6/17
|
||
|
* @since 5.6.0
|
||
|
*
|
||
|
* @param $post_id (int)
|
||
|
* @return $post_id (int)
|
||
|
*/
|
||
|
|
||
|
function include_location_rules() {
|
||
|
|
||
|
acf_include( 'pro/locations/class-acf-location-block.php' );
|
||
|
acf_include( 'pro/locations/class-acf-location-options-page.php' );
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
* register_assets
|
||
|
*
|
||
|
* description
|
||
|
*
|
||
|
* @type function
|
||
|
* @date 4/11/2013
|
||
|
* @since 5.0.0
|
||
|
*
|
||
|
* @param $post_id (int)
|
||
|
* @return $post_id (int)
|
||
|
*/
|
||
|
|
||
|
function register_assets() {
|
||
|
|
||
|
// vars
|
||
|
$version = acf_get_setting( 'version' );
|
||
|
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
||
|
|
||
|
// register scripts
|
||
|
wp_register_script( 'acf-pro-input', acf_get_url( "assets/build/js/pro/acf-pro-input{$min}.js" ), array( 'acf-input' ), $version );
|
||
|
wp_register_script( 'acf-pro-field-group', acf_get_url( "assets/build/js/pro/acf-pro-field-group{$min}.js" ), array( 'acf-field-group' ), $version );
|
||
|
|
||
|
// register styles
|
||
|
wp_register_style( 'acf-pro-input', acf_get_url( 'assets/build/css/pro/acf-pro-input.css' ), array( 'acf-input' ), $version );
|
||
|
wp_register_style( 'acf-pro-field-group', acf_get_url( 'assets/build/css/pro/acf-pro-field-group.css' ), array( 'acf-input' ), $version );
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
* input_admin_enqueue_scripts
|
||
|
*
|
||
|
* description
|
||
|
*
|
||
|
* @type function
|
||
|
* @date 4/11/2013
|
||
|
* @since 5.0.0
|
||
|
*
|
||
|
* @param $post_id (int)
|
||
|
* @return $post_id (int)
|
||
|
*/
|
||
|
|
||
|
function input_admin_enqueue_scripts() {
|
||
|
|
||
|
wp_enqueue_script( 'acf-pro-input' );
|
||
|
wp_enqueue_style( 'acf-pro-input' );
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
* field_group_admin_enqueue_scripts
|
||
|
*
|
||
|
* description
|
||
|
*
|
||
|
* @type function
|
||
|
* @date 4/11/2013
|
||
|
* @since 5.0.0
|
||
|
*
|
||
|
* @param $post_id (int)
|
||
|
* @return $post_id (int)
|
||
|
*/
|
||
|
|
||
|
function field_group_admin_enqueue_scripts() {
|
||
|
|
||
|
wp_enqueue_script( 'acf-pro-field-group' );
|
||
|
wp_enqueue_style( 'acf-pro-field-group' );
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
// instantiate
|
||
|
new acf_pro();
|
||
|
|
||
|
|
||
|
// end class
|
||
|
endif;
|
||
|
|
||
|
|