Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/16/2019 03:20:16 AM (5 years ago)
Author:
imath
Message:

Add 2 hooks into the signup actions confirmation screen

Props zishanj

Fixes #8143

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/classes/class-bp-members-admin.php

    r12401 r12479  
    21562156                                <?php endif; ?>
    21572157
     2158                                <?php
     2159                                /**
     2160                                 * Fires inside the table listing the activate action confirmation details.
     2161                                 *
     2162                                 * @since 6.0.0
     2163                                 *
     2164                                 * @param object $signup The Sign-up Object.
     2165                                 */
     2166                                do_action( 'bp_activate_signup_confirmation_details', $signup );
     2167                                ?>
     2168
    21582169                            </tbody>
    21592170                        </table>
     2171
     2172                        <?php
     2173                        /**
     2174                         * Fires outside the table listing the activate action confirmation details.
     2175                         *
     2176                         * @since 6.0.0
     2177                         *
     2178                         * @param object $signup The Sign-up Object.
     2179                         */
     2180                        do_action( 'bp_activate_signup_confirmation_after_details', $signup );
     2181                        ?>
     2182
    21602183                    <?php endif; ?>
    21612184
Note: See TracChangeset for help on using the changeset viewer.