acf_admin_field_group::__constructpublicACF 5.0.0

Constructs the class.

Method of the class: acf_admin_field_group{}

No Hooks.

Returns

null. Nothing (null).

Usage

$acf_admin_field_group = new acf_admin_field_group();
$acf_admin_field_group->__construct();

Changelog

Since 5.0.0 Introduced.

acf_admin_field_group::__construct() code ACF 6.8.8

public function __construct() {
	parent::__construct();

	add_action( 'wp_ajax_acf/field_group/render_field_settings', array( $this, 'ajax_render_field_settings' ) );
	add_action( 'wp_ajax_acf/field_group/render_location_rule', array( $this, 'ajax_render_location_rule' ) );
	add_action( 'wp_ajax_acf/field_group/move_field', array( $this, 'ajax_move_field' ) );
}