Changeset 13896
- Timestamp:
- 06/02/2024 05:45:18 PM (4 months ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-functions.php
r13879 r13896 27 27 * The old "bp-general-settings" page was renamed "bp-components". 28 28 * 29 * @since 1.6.0 30 * 29 31 * @global array $_parent_pages 30 32 * @global array $_registered_pages 31 33 * @global array $submenu 32 *33 * @since 1.6.034 34 */ 35 35 function bp_core_admin_backpat_menu() { … … 68 68 * backpat "Help" page, the Activity page, or any third-party plugins. 69 69 * 70 * @since 1.6.0 71 * 70 72 * @global string $plugin_page 71 73 * @global array $submenu 72 *73 * @since 1.6.074 74 */ 75 75 function bp_core_modify_admin_menu_highlight() { … … 221 221 * The administrator will be shown a notice for each check that fails. 222 222 * 223 * @since 1.2.0 224 * 223 225 * @global wpdb $wpdb WordPress database object. 224 *225 * @since 1.2.0226 226 */ 227 227 function bp_core_activation_notice() { -
trunk/src/bp-core/classes/class-bp-admin-types.php
r13883 r13896 262 262 * Override the Admin parent file to highlight the right menu. 263 263 * 264 * @since 7.0.0 265 * 264 266 * @global string $parent_file The parent file of the current admin screen. 265 *266 * @since 7.0.0267 267 */ 268 268 public function screen_head() { -
trunk/src/bp-core/classes/class-bp-user-query.php
r13887 r13896 244 244 * Prepare the query for user_ids. 245 245 * 246 * @since 1.7.0 247 * 246 248 * @global wpdb $wpdb WordPress database object. 247 *248 * @since 1.7.0249 249 */ 250 250 public function prepare_user_ids_query() { … … 538 538 * Also used to quickly perform user total counts. 539 539 * 540 * @since 1.7.0 541 * 540 542 * @global wpdb $wpdb WordPress database object. 541 *542 * @since 1.7.0543 543 */ 544 544 public function do_user_ids_query() { -
trunk/src/bp-friends/bp-friends-template.php
r13844 r13896 88 88 * Return value is a string of the form "x friends". 89 89 * 90 * @since 1.2.0 91 * 90 92 * @global BP_Core_Members_Template $members_template The main member template loop class. 91 *92 * @since 1.2.093 93 * 94 94 * @return string A string of the form "x friends". -
trunk/src/bp-messages/classes/class-bp-messages-notice.php
r13414 r13896 75 75 * Runs during constructor. 76 76 * 77 * @ global wpdb $wpdb WordPress database object.78 * 79 * @ since 1.0.077 * @since 1.0.0 78 * 79 * @global wpdb $wpdb WordPress database object. 80 80 */ 81 81 public function populate() { … … 97 97 * Saves a notice. 98 98 * 99 * @ global wpdb $wpdb WordPress database object.100 * 101 * @ since 1.0.099 * @since 1.0.0 100 * 101 * @global wpdb $wpdb WordPress database object. 102 102 * 103 103 * @return bool … … 180 180 * Deletes a notice. 181 181 * 182 * @ global wpdb $wpdb WordPress database object.183 * 184 * @ since 1.0.0182 * @since 1.0.0 183 * 184 * @global wpdb $wpdb WordPress database object. 185 185 * 186 186 * @return bool … … 224 224 * To get all notices, pass a value of -1 to pag_num. 225 225 * 226 * @ global wpdb $wpdb WordPress database object.227 * 228 * @ since 1.0.0226 * @since 1.0.0 227 * 228 * @global wpdb $wpdb WordPress database object. 229 229 * 230 230 * @param array $args { … … 275 275 * Returns the total number of recorded notices. 276 276 * 277 * @ global wpdb $wpdb WordPress database object.278 * 279 * @ since 1.0.0277 * @since 1.0.0 278 * 279 * @global wpdb $wpdb WordPress database object. 280 280 * 281 281 * @return int … … 301 301 * Returns the active notice that should be displayed on the front end. 302 302 * 303 * @ global wpdb $wpdb WordPress database object.304 * 305 * @ since 1.0.0303 * @since 1.0.0 304 * 305 * @global wpdb $wpdb WordPress database object. 306 306 * 307 307 * @return BP_Messages_Notice
Note: See TracChangeset
for help on using the changeset viewer.