Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
thepassage.overlookedtracks.com
/
wp-content9
/
plugins
/
buddypress
/
bp-groups
/
classes
/
Editing: class-bp-groups-widget.php
<?php /** * BuddyPress Groups Widget. * * @package BuddyPress * @subpackage GroupsWidgets * @since 1.0.0 * @deprecated 12.0.0 */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; _deprecated_file( basename( __FILE__ ), '12.0.0', '', esc_html__( 'BuddyPress does not include Legacy Widgets anymore, you can restore it using the BP Classic plugin', 'buddypress' ) ); /** * Groups widget. * * @since 1.0.3 * @deprecated 12.0.0 */ class BP_Groups_Widget { /** * Working as a group, we get things done better. * * @since 1.0.3 * @since 9.0.0 Adds the `show_instance_in_rest` property to Widget options. * @deprecated 12.0.0 */ public function __construct() { _deprecated_function( __METHOD__, '12.0.0' ); } /** * Enqueue scripts. * * @since 2.6.0 * @deprecated 12.0.0 */ public function enqueue_scripts() { _deprecated_function( __METHOD__, '12.0.0' ); } /** * Extends our front-end output method. * * @since 1.0.3 * @deprecated 12.0.0 * * @param array $args Array of arguments for the widget. * @param array $instance Widget instance data. */ public function widget( $args, $instance ) { _deprecated_function( __METHOD__, '12.0.0' ); } /** * Extends our update method. * * @since 1.0.3 * @deprecated 12.0.0 * * @param array $new_instance New instance data. * @param array $old_instance Original instance data. * @return array */ public function update( $new_instance, $old_instance ) { _deprecated_function( __METHOD__, '12.0.0' ); } /** * Extends our form method. * * @since 1.0.3 * @deprecated 12.0.0 * * @param array $instance Current instance. * @return mixed */ public function form( $instance ) { _deprecated_function( __METHOD__, '12.0.0' ); } }
Save
Cancel