[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/bp-core/deprecated/ -> 2.6.php (source)

   1  <?php
   2  /**
   3   * Deprecated functions.
   4   *
   5   * @deprecated 2.6.0
   6   */
   7  
   8  // Exit if accessed directly.
   9  defined( 'ABSPATH' ) || exit;
  10  
  11  /**
  12   * Print the generation time in the footer of the site.
  13   *
  14   * @since 1.0.0
  15   * @deprecated 2.6.0
  16   */
  17  function bp_core_print_generation_time() {
  18  ?>
  19  
  20  <!-- Generated in <?php timer_stop(1); ?> seconds. (<?php echo get_num_queries(); ?> q) -->
  21  
  22      <?php
  23  }
  24  
  25  /**
  26   * Sort the navigation menu items.
  27   *
  28   * The sorting is split into a separate function because it can only happen
  29   * after all plugins have had a chance to register their navigation items.
  30   *
  31   * @since 1.0.0
  32   * @deprecated 2.6.0
  33   *
  34   * @return bool|null Returns false on failure.
  35   */
  36  function bp_core_sort_nav_items() {
  37      _deprecated_function( __FUNCTION__, '2.6' );
  38  }
  39  
  40  /**
  41   * Sort all subnavigation arrays.
  42   *
  43   * @since 1.1.0
  44   * @deprecated 2.6.0
  45   *
  46   * @return bool|null Returns false on failure.
  47   */
  48  function bp_core_sort_subnav_items() {
  49      _deprecated_function( __FUNCTION__, '2.6' );
  50  }


Generated: Wed Apr 24 01:01:03 2024 Cross-referenced by PHPXref 0.7.1