wpfepp_activation – fires through activation of the plugin.
do_action( 'wpfepp_activation' );
wpfepp_uninstall – fires through deactivation and deleting of the plugin.
do_action( 'wpfepp_uninstall' );
enqueue_admin_add_scripts – deprecated and changed to the action below.
wpfepp_extended_form_settings – adds some user defined settings to Extended settings form tab.
do_action( 'wpfepp_extended_form_settings', $page, $callback, $args );
wpfepp_before_update_custom_field – fires Custom fields before save them.
do_action( 'wpfepp_before_update_custom_field', $post_id, $custom_fields );
wpfepp_do_before_FormID_print_form – prints out user defined actions / HTML only before a Form with defined ID.
do_action( 'wpfepp_do_before_'. $this->id .'_print_form' );
wpfepp_do_before_print_form – prints out user defined actions / HTML before all forms.
do_action( 'wpfepp_do_before_print_form' );
wpfepp_form_FormID_fields – prints out user defined form fields only in a Form with defined ID.
do_action( 'wpfepp_form_'.$this->id.'_fields', $current_values );
wpfepp_form_fields – prints out user defined form fields in all forms.
do_action( 'wpfepp_form_fields', $current_values, $this );
wpfepp_form_FormID_actions – gives users the ability to perform custom operations on the post data after a post has been successfully added/updated only in a Form with defined ID.
do_action( 'wpfepp_form_'.$this->id.'_actions', $post_data );
wpfepp_form_actions – gives users the ability to perform custom operations on the post data after a post has been successfully added/updated in all forms.
do_action( 'wpfepp_form_actions', $post_data, $this );