Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/07/2023 01:31:37 AM (2 years ago)
Author:
espellcaste
Message:

Properly declare missing properties to several classes.

Closes https://github.com/buddypress/buddypress/pull/54
See #7018

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-messages/classes/class-bp-messages-box-template.php

    r13148 r13399  
    3838
    3939    /**
     40     * Total number of threads available to iterate on.
     41     *
     42     * @var int
     43     */
     44    public $thread_count = 0;
     45
     46    /**
    4047     * Array of threads located by the query.
    4148     *
     
    94101
    95102    /**
     103     * URL argument used for the pagination param.
     104     *
     105     * @var string
     106     */
     107    public $pag_arg = '';
     108
     109    /**
    96110     * Search terms for limiting the thread query.
    97111     *
     
    99113     */
    100114    public $search_terms = '';
     115
     116    /**
     117     * Type of messages to return. Values: 'all', 'read', 'unread'.
     118     *
     119     * @var string
     120     */
     121    public $type = '';
    101122
    102123    /**
Note: See TracChangeset for help on using the changeset viewer.