This is used to add an option in the field settings.
do_action('profile_magic_field_option',$id,$field_options);
Simple example
function ProfileGrid_field_option($id,$field_options) { //do something with the fields id here. } add_action('profile_magic_field_option','ProfileGrid_field_option');