I’ve been reading the code of the plugin “Easy Digital Downloads” in order to learn more about plugin development techniques. I’m getting crazy because of a hook I can’t manage to find where is being defined.
add_action( 'edd_edit_user_profile', 'edd_process_profile_editor_updates' );
Located in: includes/shortcodes.php
Line: 918
I know edd_process_profile_editor_updates
is the function used to process the profile updates (duh, obvious), and edd_edit_user_profile
is the hook location that triggers the function, but I haven’t been able to find where is being defined do_action('edd_edit_user_profile')
Yes, I did a full search for edd_edit_user_profile
in the whole plugin but this is the only line that mention this hook.
Thanks in advance!