BBP_Admin::add_upgrade_count()
Maybe append the pending upgrade count to the “Tools” menu.
Description Description
Source Source
File: includes/admin/classes/class-bbp-admin.php
public function add_upgrade_count() { global $menu; // Skip if no menu (AJAX, shortinit, etc...) if ( empty( $menu ) ) { return; } // Loop through menus, and maybe add the upgrade count foreach ( $menu as $menu_index => $menu_item ) { $found = array_search( 'tools.php', $menu_item, true ); if ( false !== $found ) { $menu[ $menu_index ][ 0 ] = bbp_maybe_append_pending_upgrade_count( $menu[ $menu_index ][ 0 ] ); continue; } } }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |