Changeset 13400
- Timestamp:
- 01/07/2023 02:03:01 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/class-buddypress.php
r13389 r13400 40 40 * Primary BuddyPress navigation. 41 41 * 42 * @var array Primary BuddyPress navigation.43 */ 44 public $bp_nav = array();42 * @var BP_Core_BP_Nav_BackCompat 43 */ 44 public $bp_nav; 45 45 46 46 /** 47 47 * Options for the BuddyPress navigation. 48 48 * 49 * @var array Secondary BuddyPress navigation to $bp_nav.50 */ 51 public $bp_options_nav = array();49 * @var BP_Core_BP_Options_Nav_BackCompat 50 */ 51 public $bp_options_nav; 52 52 53 53 /** 54 54 * Unfiltered URI. 55 55 * 56 * The unfiltered URI broken down into chunks. 57 * 56 58 * @see bp_core_set_uri_globals() 57 * @var array The unfiltered URI broken down into chunks.59 * @var array 58 60 */ 59 61 public $unfiltered_uri = array(); 60 62 61 63 /** 62 * Canonicalstack.64 * The canonical URI stack. 63 65 * 64 66 * @see bp_redirect_canonical() 65 67 * @see bp_core_new_nav_item() 66 * @var array The canonical URI stack.68 * @var array 67 69 */ 68 70 public $canonical_stack = array(); … … 71 73 * Current action variables. 72 74 * 73 * @var array Additional navigation elements (supplemental).75 * @var array 74 76 */ 75 77 public $action_variables = array(); 76 78 77 79 /** 78 * Current member type.79 * 80 * @var string Current member directory type.80 * Current member directory type. 81 * 82 * @var string 81 83 */ 82 84 public $current_member_type = ''; 83 85 84 86 /** 85 * BuddyPress required components .86 * 87 * @var array Required components (core, members).87 * BuddyPress required components (core, members). 88 * 89 * @var array 88 90 */ 89 91 public $required_components = array(); … … 92 94 * BuddyPress loaded components. 93 95 * 94 * @var array Additional active components.96 * @var array 95 97 */ 96 98 public $loaded_components = array(); … … 99 101 * BuddyPress active components. 100 102 * 101 * @var array Active components.103 * @var array 102 104 */ 103 105 public $active_components = array(); … … 107 109 * 108 110 * @since 2.5.0 109 *110 111 * @var bool 111 112 */ 112 113 public $do_autoload = true; 113 114 115 /** 116 * Activity component. 117 * 118 * @since 1.6.0 119 * @var BP_Activity_Component 120 */ 121 public $activity; 122 123 /** 124 * Blogs component. 125 * 126 * @since 1.5.0 127 * @var BP_Blogs_Component 128 */ 129 public $blogs; 130 131 /** 132 * Core component. 133 * 134 * @since 1.6.0 135 * @var BP_Core 136 */ 137 public $core; 138 139 /** 140 * Forums component. 141 * 142 * @since 1.5.0 143 * @var BP_Forums_Component 144 */ 145 public $forums; 146 147 /** 148 * Friends component. 149 * 150 * @since 1.6.0 151 * @var BP_Friends_Component 152 */ 153 public $friends; 154 155 /** 156 * Groups component. 157 * 158 * @since 1.5.0 159 * @var BP_Groups_Component 160 */ 161 public $groups; 162 163 /** 164 * Members component. 165 * 166 * @since 1.5.0 167 * @var BP_Members_Component 168 */ 169 public $members; 170 171 /** 172 * Messages component. 173 * 174 * @since 1.5.0 175 * @var BP_Messages_Component 176 */ 177 public $messages; 178 179 /** 180 * Notifications component. 181 * 182 * @since 1.9.0 183 * @var BP_Notifications_Component 184 */ 185 public $notifications; 186 187 /** 188 * Settings component. 189 * 190 * @since 1.6.0 191 * @var BP_Settings_Component 192 */ 193 public $settings; 194 195 /** 196 * XProfile component. 197 * 198 * @since 1.6.0 199 * @var BP_XProfile_Component 200 */ 201 public $profile; 202 114 203 /** Option Overload *******************************************************/ 115 204 … … 117 206 * BuddyPress options. 118 207 * 119 * @var array Optional Overloads default options retrieved from get_option(). 208 * Overloads default options retrieved from get_option(). 209 * 210 * @var array 120 211 */ 121 212 public $options = array();
Note: See TracChangeset
for help on using the changeset viewer.