Changeset 13927
- Timestamp:
- 06/13/2024 07:39:42 PM (3 months ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-functions.php
r13897 r13927 403 403 * @since 2.2.0 404 404 * 405 * @global $wp_post_types405 * @global array $wp_post_types 406 406 * 407 407 * @param string $post_type The name of the post type, as registered with WordPress. Eg 'post' or 'page'. -
trunk/src/bp-core/admin/bp-core-admin-functions.php
r13896 r13927 27 27 * The old "bp-general-settings" page was renamed "bp-components". 28 28 * 29 * @since 1.6.0 29 * @since 1.6.0 30 30 * 31 31 * @global array $_parent_pages … … 1131 1131 * @since 7.0.0 Uses wp_nav_menu_item_post_type_meta_box() 1132 1132 * 1133 * @global $nav_menu_selected_id1133 * @global int|string $nav_menu_selected_id 1134 1134 * 1135 1135 * @param WP_Post $post The current post object. -
trunk/src/bp-core/admin/bp-core-admin-optouts.php
r13926 r13927 20 20 * @since 8.0.0 21 21 * 22 * @global $bp_optouts_list_table BP_Optouts_List_Table List table instance for nonmember opt-outs admin page.22 * @global object $bp_optouts_list_table List table instance for nonmember opt-outs admin page. 23 23 */ 24 24 function bp_core_optouts_admin_load() { … … 291 291 * @since 8.0.0 292 292 * 293 * @global $plugin_page294 * @global $bp_optouts_list_table BP_Optouts_List_Table List table instance for nonmember opt-outs admin page.293 * @global string $plugin_page 294 * @global object $bp_optouts_list_table List table instance for nonmember opt-outs admin page. 295 295 */ 296 296 function bp_core_optouts_admin_index() { -
trunk/src/bp-core/bp-core-avatars.php
r13891 r13927 2132 2132 * @since 2.3.0 2133 2133 * 2134 * @global $is_safari2135 * @global $is_IE2134 * @global bool $is_safari 2135 * @global bool $is_IE 2136 2136 * 2137 2137 * @return bool True to load the Webcam Avatar UI part. False otherwise. -
trunk/src/bp-members/classes/class-bp-members-admin.php
r13878 r13927 1819 1819 * @since 2.0.0 1820 1820 * 1821 * @global $bp_members_signup_list_table1821 * @global object $bp_members_signup_list_table 1822 1822 */ 1823 1823 public function signups_admin_load() { … … 2287 2287 * @since 2.0.0 2288 2288 * 2289 * @global $plugin_page2290 * @global $bp_members_signup_list_table2289 * @global string $plugin_page 2290 * @global object $bp_members_signup_list_table 2291 2291 */ 2292 2292 public function signups_admin_index() { … … 2868 2868 * @since 8.0.0 2869 2869 * 2870 * @global $bp_members_invitations_list_table2870 * @global object $bp_members_invitations_list_table 2871 2871 */ 2872 2872 public function members_invitations_admin_load() { … … 3195 3195 * @since 8.0.0 3196 3196 * 3197 * @global $plugin_page3198 * @global $bp_members_invitations_list_table3197 * @global string $plugin_page 3198 * @global object $bp_members_invitations_list_table 3199 3199 */ 3200 3200 public function invitations_admin_index() { -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php
r13822 r13927 66 66 * @since 2.7.0 Added $section parameter. 67 67 * 68 * @param $section Which list contains this item.68 * @param string $section Which list contains this item. 69 69 */ 70 70 do_action( 'bp_group_manage_members_admin_item', 'admins-list' ); ?> … … 83 83 * @since 2.7.0 84 84 * 85 * @param $section Which list contains this item.85 * @param string $section Which list contains this item. 86 86 */ 87 87 do_action( 'bp_group_manage_members_admin_actions', 'admins-list' ); ?> … … 160 160 * @since 2.7.0 Added $section parameter. 161 161 * 162 * @param $section Which list contains this item.162 * @param string $section Which list contains this item. 163 163 */ 164 164 do_action( 'bp_group_manage_members_admin_item', 'admins-list' ); ?> … … 176 176 * @since 2.7.0 177 177 * 178 * @param $section Which list contains this item.178 * @param string $section Which list contains this item. 179 179 */ 180 180 do_action( 'bp_group_manage_members_admin_actions', 'mods-list' ); ?> … … 261 261 * @since 2.7.0 Added $section parameter. 262 262 * 263 * @param $section Which list contains this item.263 * @param string $section Which list contains this item. 264 264 */ 265 265 do_action( 'bp_group_manage_members_admin_item', 'admins-list' ); ?> … … 288 288 * @since 2.7.0 289 289 * 290 * @param $section Which list contains this item.290 * @param string $section Which list contains this item. 291 291 */ 292 292 do_action( 'bp_group_manage_members_admin_actions', 'members-list' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.