[ Index ] |
PHP Cross Reference of BuddyPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * BuddyPress - Groups Admin 4 * 5 * @package BuddyPress 6 * @subpackage bp-legacy 7 * @version 3.0.0 8 */ 9 10 ?> 11 <div class="item-list-tabs no-ajax" id="subnav" aria-label="<?php esc_attr_e( 'Group secondary navigation', 'buddypress' ); ?>" role="navigation"> 12 <ul> 13 <?php bp_group_admin_tabs(); ?> 14 </ul> 15 </div><!-- .item-list-tabs --> 16 17 <?php 18 /** 19 * Fires before the group admin form and content. 20 * 21 * @since 2.7.0 22 */ 23 do_action( 'bp_before_group_admin_form' ); ?> 24 25 <form action="<?php bp_group_admin_form_action(); ?>" name="group-settings-form" id="group-settings-form" class="standard-form" method="post" enctype="multipart/form-data"> 26 27 <?php 28 /** 29 * Fires inside the group admin form and before the content. 30 * 31 * @since 1.1.0 32 */ 33 do_action( 'bp_before_group_admin_content' ); ?> 34 35 <?php /* Fetch the template for the current admin screen being viewed */ ?> 36 37 <?php if ( bp_is_group_admin_screen( bp_action_variable() ) ) : ?> 38 39 <?php bp_get_template_part( 'groups/single/admin/' . bp_action_variable() ); ?> 40 41 <?php endif; ?> 42 43 <?php 44 45 /** 46 * Fires inside the group admin template. 47 * 48 * Allows plugins to add custom group edit screens. 49 * 50 * @since 1.1.0 51 */ 52 do_action( 'groups_custom_edit_steps' ); ?> 53 54 <?php 55 56 /** 57 * Fires inside the group admin form and after the content. 58 * 59 * @since 1.1.0 60 */ 61 do_action( 'bp_after_group_admin_content' ); ?> 62 63 </form><!-- #group-settings-form --> 64 65 <?php 66 /** 67 * Fires after the group admin form and content. 68 * 69 * @since 2.7.0 70 */ 71 do_action( 'bp_after_group_admin_form' );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Dec 5 01:00:58 2024 | Cross-referenced by PHPXref 0.7.1 |