acf/first_activated action-hookACF 1.0

Usage

add_action( 'acf/first_activated', 'wp_kama_acf_first_activated_action' );

/**
 * Function for `acf/first_activated` action-hook.
 * 
 * @return void
 */
function wp_kama_acf_first_activated_action(){
	// action...
}

Where the hook is called

ACF::acf_plugin_activated()
acf/first_activated
acf/acf.php 857
do_action( 'acf/first_activated' );

Where the hook is used in Advanced Custom Fields PRO

acf/src/Site_Health/Site_Health.php 58
add_action( 'acf/first_activated', array( $this, 'add_activation_event' ) );