Profile Settings Tab

This action allows adding a left tab under the settings tab on the profile page.

 do_action('profile_magic_profile_settings_tab',$uid,$gid);

Simple example

function profile_magic_html_in_settings_tab($uid,$gid)

{

//do something with the user-id on the profile page here.

}

add_action('profile_magic_profile_settings_tab', 'profile_magic_html_in_settings_tab');