- Timestamp:
- 08/26/2021 12:53:27 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-messages/classes/class-bp-messages-notices-admin.php
r12724 r13096 3 3 * BuddyPress messages component Site-wide Notices admin screen. 4 4 * 5 *6 5 * @package BuddyPress 7 * @subpackage Messages 6 * @subpackage MessagesClasses 8 7 * @since 3.0.0 9 8 */ … … 12 11 defined( 'ABSPATH' ) || exit; 13 12 13 /** 14 * BuddyPress Notices Admin class. 15 */ 14 16 class BP_Messages_Notices_Admin { 15 17 … … 34 36 * 35 37 * @since 3.0.0 36 * @var object38 * @var BP_Messages_Notices_List_Table|string 37 39 */ 38 40 public $list_table = ''; 39 41 40 41 /** 42 * Create a new instance or access the current instance of this class. 43 * 44 * @since 3.0.0 45 */ 42 /** 43 * Create a new instance or access the current instance of this class. 44 * 45 * @global BuddyPress $bp The one true BuddyPress instance. 46 * 47 * @since 3.0.0 48 * 49 * @return BP_Messages_Notices_Admin 50 */ 46 51 public static function register_notices_admin() { 47 52 … … 60 65 61 66 /** 62 * Constructor method.67 * Constructor. 63 68 * 64 69 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.