PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
themes
/
deep
/
inc
/
core
/
widgets
<?php /** * BuddyPress Members Recently Active widget. * * @package BuddyPress * @subpackage MembersWidgets * @since 1.0.3 */ // Exit if accessed directly. if ( ! class_exists( 'BuddyPress' ) ) { return; } /** * Recently Active Members Widget. * * @since 1.0.3 */ class Deep_Core_Recently_Active_Widget extends WP_Widget { /** * Constructor method. * * @since 1.5.0 */ public function __construct() { $name = _x( 'Webnus (BuddyPress) Recently Active Members', 'widget name', 'deep' ); $description = __( 'Profile photos of recently active members', 'deep' ); parent::__construct( false, $name, array( 'description' => $description, 'classname' => 'widget_Deep_core_recently_active_widget buddypress widget', 'customize_selective_refresh' => true, ) ); } /** * Display the Recently Active widget. * * @since 1.0.3 * * @see WP_Widget::widget() for description of parameters. * * @param array $args Widget arguments. * @param array $instance Widget settings, as saved by the user. */ public function widget( $args, $instance ) { global $members_template; // Get widget settings. $settings = $this->parse_settings( $instance ); /** * Filters the title of the Recently Active widget. * * @since 1.8.0 * @since 2.3.0 Added 'instance' and 'id_base' to arguments passed to filter. * * @param string $title The widget title. * @param array $settings The settings for the particular instance of the widget. * @param string $id_base Root ID for all widgets of this type. */ $title = apply_filters( 'widget_title', $settings['title'], $settings, $this->id_base ); echo '' . $args['before_widget']; echo '' . $args['before_title'] . $title . $args['after_title']; // Setup args for querying members. $members_args = array( 'user_id' => 0, 'type' => 'active', 'per_page' => $settings['max_members'], 'max' => $settings['max_members'], 'populate_extras' => true, 'search_terms' => false, ); // Back up global. $old_members_template = $members_template; ?> <?php if ( bp_has_members( $members_args ) ) : ?> <div class="wn-avatar-block owl-carousel owl-theme"> <?php while ( bp_members() ) : bp_the_member(); ?> <div class="item-avatar"> <a href="<?php bp_member_permalink(); ?>" class="bp-tooltip" data-bp-tooltip="<?php bp_member_name(); ?>"><?php bp_member_avatar(); ?></a> </div> <?php endwhile; ?> </div> <?php else: ?> <div class="widget-error"> <?php esc_html_e( 'There are no recently active members', 'deep' ); ?> </div> <?php endif; ?> <?php echo '' . $args['after_widget']; // Restore the global. $members_template = $old_members_template; } /** * Update the Recently Active widget options. * * @since 1.0.3 * * @param array $new_instance The new instance options. * @param array $old_instance The old instance options. * @return array $instance The parsed options to be saved. */ public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags( $new_instance['title'] ); $instance['max_members'] = strip_tags( $new_instance['max_members'] ); return $instance; } /** * Output the Recently Active widget options form. * * @since 1.0.3 * * @param array $instance Widget instance settings. * @return void */ public function form( $instance ) { // Get widget settings. $settings = $this->parse_settings( $instance ); $title = strip_tags( $settings['title'] ); $max_members = strip_tags( $settings['max_members'] ); ?> <p> <label for="<?php echo '' . $this->get_field_id( 'title' ); ?>"> <?php esc_html_e( 'Title:', 'deep' ); ?> <input class="widefat" id="<?php echo '' . $this->get_field_id( 'title' ); ?>" name="<?php echo '' . $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" style="width: 100%" /> </label> </p> <p> <label for="<?php echo '' . $this->get_field_id( 'max_members' ); ?>"> <?php esc_html_e( 'Max members to show:', 'deep' ); ?> <input class="widefat" id="<?php echo '' . $this->get_field_id( 'max_members' ); ?>" name="<?php echo '' . $this->get_field_name( 'max_members' ); ?>" type="text" value="<?php echo esc_attr( $max_members ); ?>" style="width: 30%" /> </label> </p> <?php } /** * Merge the widget settings into defaults array. * * @since 2.3.0 * * * @param array $instance Widget instance settings. * @return array */ public function parse_settings( $instance = array() ) { return bp_parse_args( $instance, array( 'title' => __( 'Recently Active Members', 'deep' ), 'max_members' => 15, ), 'recently_active_members_widget_settings' ); } } // register deep_widget_layered_nav_widget widget function register_Deep_Core_Recently_Active_Widget_widget() { register_widget( 'Deep_Core_Recently_Active_Widget' ); } add_action( 'widgets_init', 'register_Deep_Core_Recently_Active_Widget_widget' );
[+]
..
[-] daily-post.php
[edit]
[-] latest-posts.php
[edit]
[-] about.php
[edit]
[-] testimonial.php
[edit]
[-] socialnetworks.php
[edit]
[-] colorful-categories.php
[edit]
[-] googleplus.php
[edit]
[-] recent-posts.php
[edit]
[-] recently-active-members.php
[edit]
[-] newsslider.php
[edit]
[-] minislideshow.php
[edit]
[-] community-statistics.php
[edit]
[-] popular-posts.php
[edit]
[-] youtube.php
[edit]
[-] widgets-init.php
[edit]
[-] flickr.php
[edit]
[-] widget-tabs.php
[edit]
[-] subscribe.php
[edit]
[-] facebook.php
[edit]
[-] sermon-categories.php
[edit]
[-] popular-recipe.php
[edit]
[-] advert.php
[edit]
[-] latest-review.php
[edit]
[-] deep-woocommerce-layered-nav.php
[edit]
[-] instagram.php
[edit]
[-] login.php
[edit]
[-] copyrighttext.php
[edit]
[-] woocommerce-header-cart.php
[edit]
[-] last_comments.php
[edit]