ACF_Admin_UI_Options_Page::__constructpublicACF 1.0

Constructs the class.

Method of the class: ACF_Admin_UI_Options_Page{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

ACF_Admin_UI_Options_Page::__construct() code ACF 6.8.8

public function __construct() {
	add_action( 'wp_ajax_acf/create_options_page', array( $this, 'ajax_create_options_page' ) );
	add_action( 'acf/field_group/admin_enqueue_scripts', array( $this, 'add_js_parent_choices' ) );
	parent::__construct();
}