acf/field_group/render_field_settings_tab/(tab)/type=(type) action-hookACF 1.0

Usage

add_action( 'acf/field_group/render_field_settings_tab/(tab)/type=(type)', 'wp_kama_acf_field_group_render_settings_tab_type_action' );

/**
 * Function for `acf/field_group/render_field_settings_tab/(tab)/type=(type)` action-hook.
 * 
 * @param  $field 
 *
 * @return void
 */
function wp_kama_acf_field_group_render_settings_tab_type_action( $field ){
	// action...
}
$field
-

Where the hook is called

acf_admin_field_group::ajax_render_field_settings()
acf/field_group/render_field_settings_tab/(tab)/type=(type)
acf/includes/admin/post-types/admin-field-group.php 502
do_action( "acf/field_group/render_field_settings_tab/{$tab}/type={$field['type']}", $field );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.