Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/10/2012 08:47:07 AM (12 years ago)
Author:
johnjamesjacoby
Message:

Delete empty update file, deprecate bp_db_update_stuff(), and clean up deprecated phpdoc blocks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/deprecated/1.6.php

    r6448 r6583  
    99 */
    1010
     11// Exit if accessed directly
     12if ( !defined( 'ABSPATH' ) ) exit;
     13
    1114/** Toolbar functions *********************************************************/
    1215
     16/**
     17 * @deprecated BuddyPress (1.6)
     18 */
    1319function bp_admin_bar_remove_wp_menus() {
    1420    _deprecated_function( __FUNCTION__, '1.6' );
    1521}
    1622
     23/**
     24 * @deprecated BuddyPress (1.6)
     25 */
    1726function bp_admin_bar_root_site() {
    1827    _deprecated_function( __FUNCTION__, '1.6' );
    1928}
    2029
     30/**
     31 * @deprecated BuddyPress (1.6)
     32 */
    2133function bp_admin_bar_my_sites_menu() {
    2234    _deprecated_function( __FUNCTION__, '1.6' );
    2335}
    2436
    25 function bp_admin_bar_comments_menu( $wp_admin_bar ) {
    26     _deprecated_function( __FUNCTION__, '1.6' );
    27 }
    28 
     37/**
     38 * @deprecated BuddyPress (1.6)
     39 */
     40function bp_admin_bar_comments_menu( $wp_admin_bar = '' ) {
     41    _deprecated_function( __FUNCTION__, '1.6' );
     42}
     43
     44/**
     45 * @deprecated BuddyPress (1.6)
     46 */
    2947function bp_admin_bar_appearance_menu() {
    3048    _deprecated_function( __FUNCTION__, '1.6' );
    3149}
    3250
     51/**
     52 * @deprecated BuddyPress (1.6)
     53 */
    3354function bp_admin_bar_updates_menu() {
    3455    _deprecated_function( __FUNCTION__, '1.6' );
    3556}
    3657
     58/**
     59 * @deprecated BuddyPress (1.6)
     60 */
    3761function bp_members_admin_bar_my_account_logout() {
    3862    _deprecated_function( __FUNCTION__, '1.6' );
    3963}
    4064
     65/**
     66 * @deprecated BuddyPress (1.6)
     67 */
    4168function bp_core_is_user_deleted( $user_id = 0 ) {
    4269    _deprecated_function( __FUNCTION__, '1.6' );
     
    4471}
    4572
     73/**
     74 * @deprecated BuddyPress (1.6)
     75 */
    4676function bp_core_is_user_spammer( $user_id = 0 ) {
    4777    _deprecated_function( __FUNCTION__, '1.6' );
     
    5585
    5686/**
    57  * @deprecated 1.6
     87 * @deprecated BuddyPress (1.6)
    5888 * @deprecated No longer used; see bp_blogs_transition_activity_status()
    5989 */
     
    6797
    6898/**
    69  * @deprecated 1.6
     99 * @deprecated BuddyPress (1.6)
    70100 * @deprecated No longer used; see BP_Admin::admin_menus()
    71101 */
     
    75105
    76106/**
    77  * @deprecated 1.6
     107 * @deprecated BuddyPress (1.6)
    78108 * @deprecated No longer used. We do ajax properly now.
    79109 */
     
    89119 * Displays Friends header tabs
    90120 *
    91  * @deprecated 1.6
     121 * @deprecated BuddyPress (1.6)
    92122 * @deprecated No longer used
    93123 */
     
    107137 * Filters the title for the Friends component
    108138 *
    109  * @deprecated 1.6
     139 * @deprecated BuddyPress (1.6)
    110140 * @deprecated No longer used
    111141 */
     
    129159
    130160
    131 /**
    132  * Groups functions
    133  */
    134 
    135 /**
    136  * @deprecated 1.6
     161/** Groups functions **********************************************************/
     162
     163/**
     164 * @deprecated BuddyPress (1.6)
    137165 * @deprecated Renamed to groups_get_id() for greater consistency
    138166 */
     
    142170}
    143171
    144 /**
    145  * Admin functions
    146  */
     172/** Admin functions ***********************************************************/
    147173
    148174/**
    149175 * Loads admin panel styles and scripts.
    150176 *
    151  * @deprecated 1.6
    152  * @deprecated No longer used.
     177 * @deprecated BuddyPress (1.6)
    153178 */
    154179function bp_core_add_admin_menu_styles() {
     
    156181}
    157182
    158 /**
    159  * Activity functions
    160  */
    161 
    162 /**
    163  * @deprecated 1.6
    164  * @deprecated No longer used. Renamed to bp_activity_register_activity_actions().
     183/** Activity functions ********************************************************/
     184
     185/**
     186 * @deprecated BuddyPress (1.6)
    165187 */
    166188function updates_register_activity_actions() {
     
    171193 * Sets the "From" address in emails sent
    172194 *
    173  * @deprecated 1.6
    174  * @deprecated No longer used.
     195 * @deprecated BuddyPress (1.6)
    175196 * @return noreply@sitedomain email address
    176197 */
     
    198219 * Note that this hack only runs if the function bp_dtheme_register_actions() is not found (this
    199220 * function was introduced in BP 1.6 for related backward compatibility reasons).
     221 *
     222 * @deprecated BuddyPress (1.6)
    200223 */
    201224if ( !function_exists( 'bp_dtheme_register_actions' ) ) :
     
    250273    add_action( 'after_setup_theme', 'bp_die_legacy_ajax_callbacks', 20 );
    251274endif;
    252 
Note: See TracChangeset for help on using the changeset viewer.