ACF_Admin_Field_Groups::__constructpublicACF 5.0.0

Constructor.

Method of the class: ACF_Admin_Field_Groups{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

Changelog

Since 5.0.0 Introduced.

ACF_Admin_Field_Groups::__construct() code ACF 6.8.8

public function __construct() {
	add_action( 'admin_menu', array( $this, 'admin_menu' ), 7 );
	add_action( 'load-edit.php', array( $this, 'handle_redirection' ) );
	add_action( 'post_class', array( $this, 'get_admin_table_post_classes' ), 10, 3 );

	parent::__construct();
}