Changeset 9814 for trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php
- Timestamp:
- 04/28/2015 01:52:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php
r9604 r9814 1 <?php do_action( 'bp_before_member_settings_template' ); ?> 1 <?php 2 3 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 4 do_action( 'bp_before_member_settings_template' ); ?> 2 5 3 6 <form action="<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . '/notifications'; ?>" method="post" class="standard-form" id="settings-form"> 4 7 <p><?php _e( 'Send an email notice when:', 'buddypress' ); ?></p> 5 8 6 <?php do_action( 'bp_notification_settings' ); ?>9 <?php 7 10 8 <?php do_action( 'bp_members_notification_settings_before_submit' ); ?> 11 /** 12 * Fires at the top of the member template notification settings form. 13 * 14 * @since BuddyPress (1.0.0) 15 */ 16 do_action( 'bp_notification_settings' ); ?> 17 18 <?php 19 20 /** 21 * Fires before the display of the submit button for user notification saving. 22 * 23 * @since BuddyPress (1.5.0) 24 */ 25 do_action( 'bp_members_notification_settings_before_submit' ); ?> 9 26 10 27 <div class="submit"> … … 12 29 </div> 13 30 14 <?php do_action( 'bp_members_notification_settings_after_submit' ); ?> 31 <?php 32 33 /** 34 * Fires after the display of the submit button for user notification saving. 35 * 36 * @since BuddyPress (1.5.0) 37 */ 38 do_action( 'bp_members_notification_settings_after_submit' ); ?> 15 39 16 40 <?php wp_nonce_field('bp_settings_notifications' ); ?> … … 18 42 </form> 19 43 20 <?php do_action( 'bp_after_member_settings_template' ); ?> 44 <?php 45 46 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 47 do_action( 'bp_after_member_settings_template' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.