Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/01/2015 01:34:15 PM (10 years ago)
Author:
johnjamesjacoby
Message:

Notifications: Ensure pagination works with $_GET parameters.

Props boonebgorges. See #6229. (trunk)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-notifications/bp-notifications-template.php

    r9556 r9570  
    206206
    207207    /**
     208     * The $_GET argument used in URLs for determining pagination
     209     *
     210     * @since BuddyPress (1.9.0)
     211     * @access public
     212     * @var int
     213     */
     214    public $pag_arg;
     215
     216    /**
    208217     * The number of items to display per page of results.
    209218     *
     
    249258     */
    250259    public $sort_order;
     260
     261    /**
     262     * Array of variables used in this notification query
     263     *
     264     * @since BuddyPress (2.2.2)
     265     * @var array
     266     */
     267    public $query_vars;
    251268
    252269    /**
     
    268285            'id'                => false,
    269286            'user_id'           => 0,
     287            'item_id'           => false,
    270288            'secondary_item_id' => false,
    271289            'component_name'    => bp_notifications_get_registered_components(),
     
    275293            'order_by'          => 'date_notified',
    276294            'sort_order'        => 'DESC',
     295            'page_arg'          => 'npage',
    277296            'page'              => 1,
    278297            'per_page'          => 25,
    279298            'max'               => null,
    280             'page_arg'          => 'npage',
    281299        ) );
    282300
     
    300318        $this->order_by     = $r['order_by'];
    301319        $this->sort_order   = $r['sort_order'];
     320        $this->query_vars   = array(
     321            'id'                => $r['id'],
     322            'user_id'           => $this->user_id,
     323            'item_id'           => $r['item_id'],
     324            'secondary_item_id' => $r['secondary_item_id'],
     325            'component_name'    => $r['component_name'],
     326            'component_action'  => $r['component_action'],
     327            'is_new'            => $this->is_new,
     328            'search_terms'      => $this->search_terms,
     329            'order_by'          => $this->order_by,
     330            'sort_order'        => $this->sort_order,
     331            'page'              => $this->pag_page,
     332            'per_page'          => $this->pag_num,
     333        );
    302334
    303335        // Setup the notifications to loop through
    304         $this->notifications            = BP_Notifications_Notification::get( $r );
    305         $this->total_notification_count = BP_Notifications_Notification::get_total_count( $r );
     336        $this->notifications            = BP_Notifications_Notification::get( $this->query_vars );
     337        $this->total_notification_count = BP_Notifications_Notification::get_total_count( $this->query_vars );
    306338
    307339        if ( empty( $this->notifications ) ) {
Note: See TracChangeset for help on using the changeset viewer.