mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/tags/1.2.6@3297 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
142 lines
4.8 KiB
PHP
142 lines
4.8 KiB
PHP
<?php
|
|
|
|
/* Register widgets for groups component */
|
|
function groups_register_widgets() {
|
|
add_action('widgets_init', create_function('', 'return register_widget("BP_Groups_Widget");') );
|
|
}
|
|
add_action( 'bp_register_widgets', 'groups_register_widgets' );
|
|
|
|
/*** GROUPS WIDGET *****************/
|
|
|
|
class BP_Groups_Widget extends WP_Widget {
|
|
function bp_groups_widget() {
|
|
parent::WP_Widget( false, $name = __( 'Groups', 'buddypress' ) );
|
|
|
|
if ( is_active_widget( false, false, $this->id_base ) )
|
|
wp_enqueue_script( 'groups_widget_groups_list-js', BP_PLUGIN_URL . '/bp-groups/js/widget-groups.js', array('jquery') );
|
|
}
|
|
|
|
function widget($args, $instance) {
|
|
global $bp;
|
|
|
|
extract( $args );
|
|
|
|
echo $before_widget;
|
|
echo $before_title
|
|
. $widget_name
|
|
. $after_title; ?>
|
|
|
|
<?php if ( bp_has_groups( 'type=popular&per_page=' . $instance['max_groups'] . '&max=' . $instance['max_groups'] ) ) : ?>
|
|
<div class="item-options" id="groups-list-options">
|
|
<span class="ajax-loader" id="ajax-loader-groups"></span>
|
|
<a href="<?php echo site_url() . '/' . $bp->groups->slug ?>" id="newest-groups"><?php _e("Newest", 'buddypress') ?></a> |
|
|
<a href="<?php echo site_url() . '/' . $bp->groups->slug ?>" id="recently-active-groups"><?php _e("Active", 'buddypress') ?></a> |
|
|
<a href="<?php echo site_url() . '/' . $bp->groups->slug ?>" id="popular-groups" class="selected"><?php _e("Popular", 'buddypress') ?></a>
|
|
</div>
|
|
|
|
<ul id="groups-list" class="item-list">
|
|
<?php while ( bp_groups() ) : bp_the_group(); ?>
|
|
<li>
|
|
<div class="item-avatar">
|
|
<a href="<?php bp_group_permalink() ?>"><?php bp_group_avatar_thumb() ?></a>
|
|
</div>
|
|
|
|
<div class="item">
|
|
<div class="item-title"><a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>"><?php bp_group_name() ?></a></div>
|
|
<div class="item-meta"><span class="activity"><?php bp_group_member_count() ?></span></div>
|
|
</div>
|
|
</li>
|
|
|
|
<?php endwhile; ?>
|
|
</ul>
|
|
<?php wp_nonce_field( 'groups_widget_groups_list', '_wpnonce-groups' ); ?>
|
|
<input type="hidden" name="groups_widget_max" id="groups_widget_max" value="<?php echo esc_attr( $instance['max_groups'] ); ?>" />
|
|
|
|
<?php else: ?>
|
|
|
|
<div class="widget-error">
|
|
<?php _e('There are no groups to display.', 'buddypress') ?>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php echo $after_widget; ?>
|
|
<?php
|
|
}
|
|
|
|
function update( $new_instance, $old_instance ) {
|
|
$instance = $old_instance;
|
|
$instance['max_groups'] = strip_tags( $new_instance['max_groups'] );
|
|
|
|
return $instance;
|
|
}
|
|
|
|
function form( $instance ) {
|
|
$instance = wp_parse_args( (array) $instance, array( 'max_groups' => 5 ) );
|
|
$max_groups = strip_tags( $instance['max_groups'] );
|
|
?>
|
|
|
|
<p><label for="bp-groups-widget-groups-max"><?php _e('Max groups to show:', 'buddypress'); ?> <input class="widefat" id="<?php echo $this->get_field_id( 'max_groups' ); ?>" name="<?php echo $this->get_field_name( 'max_groups' ); ?>" type="text" value="<?php echo esc_attr( $max_groups ); ?>" style="width: 30%" /></label></p>
|
|
<?php
|
|
}
|
|
}
|
|
|
|
function groups_ajax_widget_groups_list() {
|
|
global $bp;
|
|
|
|
check_ajax_referer('groups_widget_groups_list');
|
|
|
|
switch ( $_POST['filter'] ) {
|
|
case 'newest-groups':
|
|
$type = 'newest';
|
|
break;
|
|
case 'recently-active-groups':
|
|
$type = 'active';
|
|
break;
|
|
case 'popular-groups':
|
|
$type = 'popular';
|
|
break;
|
|
}
|
|
|
|
if ( bp_has_groups( 'type=' . $type . '&per_page=' . $_POST['max_groups'] . '&max=' . $_POST['max_groups'] ) ) : ?>
|
|
<?php echo "0[[SPLIT]]"; ?>
|
|
|
|
<ul id="groups-list" class="item-list">
|
|
<?php while ( bp_groups() ) : bp_the_group(); ?>
|
|
<li>
|
|
<div class="item-avatar">
|
|
<a href="<?php bp_group_permalink() ?>"><?php bp_group_avatar_thumb() ?></a>
|
|
</div>
|
|
|
|
<div class="item">
|
|
<div class="item-title"><a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>"><?php bp_group_name() ?></a></div>
|
|
<div class="item-meta">
|
|
<span class="activity">
|
|
<?php
|
|
if ( 'newest-groups' == $_POST['filter'] ) {
|
|
printf( __( 'created %s ago', 'buddypress' ), bp_get_group_date_created() );
|
|
} else if ( 'recently-active-groups' == $_POST['filter'] ) {
|
|
printf( __( 'active %s ago', 'buddypress' ), bp_get_group_last_active() );
|
|
} else if ( 'popular-groups' == $_POST['filter'] ) {
|
|
bp_group_member_count();
|
|
}
|
|
?>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
|
|
<?php endwhile; ?>
|
|
</ul>
|
|
<?php wp_nonce_field( 'groups_widget_groups_list', '_wpnonce-groups' ); ?>
|
|
<input type="hidden" name="groups_widget_max" id="groups_widget_max" value="<?php echo esc_attr( $_POST['max_groups'] ); ?>" />
|
|
|
|
<?php else: ?>
|
|
|
|
<?php echo "-1[[SPLIT]]<li>" . __("No groups matched the current filter.", 'buddypress'); ?>
|
|
|
|
<?php endif;
|
|
|
|
}
|
|
add_action( 'wp_ajax_widget_groups_list', 'groups_ajax_widget_groups_list' );
|
|
?>
|