Changeset 10148 for trunk/src/bp-groups/classes/class-bp-groups-group.php
- Timestamp:
- 09/27/2015 05:25:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/classes/class-bp-groups-group.php
r9982 r10148 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 108 108 * Is the current user a member of this group? 109 109 * 110 * @since BuddyPress (1.2.0)110 * @since 1.2.0 111 111 * @var bool 112 112 */ … … 116 116 * Does the current user have an outstanding invitation to this group? 117 117 * 118 * @since BuddyPress (1.9.0)118 * @since 1.9.0 119 119 * @var bool 120 120 */ … … 124 124 * Does the current user have a pending membership request to this group? 125 125 * 126 * @since BuddyPress (1.9.0)126 * @since 1.9.0 127 127 * @var bool 128 128 */ … … 132 132 * Timestamp of the last activity that happened in this group. 133 133 * 134 * @since BuddyPress (1.2.0)134 * @since 1.2.0 135 135 * @var string 136 136 */ … … 140 140 * If this is a private or hidden group, does the current user have access? 141 141 * 142 * @since BuddyPress (1.6.0)142 * @since 1.6.0 143 143 * @var bool 144 144 */ … … 148 148 * Raw arguments passed to the constructor. 149 149 * 150 * @since BuddyPress (2.0.0)150 * @since 2.0.0 151 151 * @var array 152 152 */ … … 217 217 * Filters the SQL prepared statement used to fetch group admins and mods. 218 218 * 219 * @since BuddyPress (1.5.0)219 * @since 1.5.0 220 220 * 221 221 * @param string $value SQL select statement used to fetch admins and mods. … … 282 282 * Please use this hook to filter the properties above. Each part will be passed in. 283 283 * 284 * @since BuddyPress (1.0.0)284 * @since 1.0.0 285 285 * 286 286 * @param BP_Groups_Group $this Current instance of the group item being saved. Passed by reference. … … 362 362 * Fires after the current group item has been saved. 363 363 * 364 * @since BuddyPress (1.0.0)364 * @since 1.0.0 365 365 * 366 366 * @param BP_Groups_Group $this Current instance of the group item that was saved. Passed by reference. … … 397 397 * Fires before the deletion of a group. 398 398 * 399 * @since BuddyPress (1.2.0)399 * @since 1.2.0 400 400 * 401 401 * @param BP_Groups_Group $this Current instance of the group item being deleted. Passed by reference. … … 806 806 * Filters the 'type' parameter used to overwrite 'order' and 'orderby' values. 807 807 * 808 * @since BuddyPress (2.1.0)808 * @since 2.1.0 809 809 * 810 810 * @param array $value Converted 'type' value for order and orderby. … … 831 831 * Filters the converted 'orderby' term. 832 832 * 833 * @since BuddyPress (2.1.0)833 * @since 2.1.0 834 834 * 835 835 * @param string $value Converted 'orderby' term. … … 853 853 * Filters the pagination SQL statement. 854 854 * 855 * @since BuddyPress (1.5.0)855 * @since 1.5.0 856 856 * 857 857 * @param string $value Concatenated SQL statement. … … 913 913 * Filters the SQL used to retrieve total group results. 914 914 * 915 * @since BuddyPress (1.5.0)915 * @since 1.5.0 916 916 * 917 917 * @param string $t_sql Concatenated SQL statement used for retrieving total group results. … … 951 951 * AND keyword from the 'where' clause). 952 952 * 953 * @since BuddyPress (1.8.0)953 * @since 1.8.0 954 954 * @access protected 955 955 * … … 999 999 * Convert the 'type' parameter to 'order' and 'orderby'. 1000 1000 * 1001 * @since BuddyPress (1.8.0)1001 * @since 1.8.0 1002 1002 * @access protected 1003 1003 * … … 1115 1115 * Convert the 'orderby' param into a proper SQL term/column. 1116 1116 * 1117 * @since BuddyPress (1.8.0)1117 * @since 1.8.0 1118 1118 * @access protected 1119 1119 * … … 1495 1495 * https://buddypress.trac.wordpress.org/ticket/4306. 1496 1496 * 1497 * @since BuddyPress (1.6.0)1497 * @since 1.6.0 1498 1498 * 1499 1499 * @param string $filter_sql SQL portion for the query. … … 1527 1527 * Get a total count of all topics of a given status, across groups/forums. 1528 1528 * 1529 * @since BuddyPress (1.5.0)1529 * @since 1.5.0 1530 1530 * 1531 1531 * @param string $status Which group type to count. 'public', 'private', … … 1579 1579 * with bp_has_groups(). 1580 1580 * 1581 * @since BuddyPress (1.7.0)1581 * @since 1.7.0 1582 1582 * 1583 1583 * @return array
Note: See TracChangeset
for help on using the changeset viewer.