Changeset 10248
- Timestamp:
- 10/11/2015 04:27:50 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 34 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-admin.php
r10234 r10248 1219 1219 * 1220 1220 * @since 2.3.3 1221 * @access protected1222 1221 * 1223 1222 * @return string -
trunk/src/bp-activity/bp-activity-akismet.php
r10077 r10248 21 21 * The activity last marked as spam. 22 22 * 23 * @access protected24 23 * @var BP_Activity_Activity 25 24 * @since 1.6.0 -
trunk/src/bp-activity/bp-activity-template.php
r10217 r10248 118 118 * 119 119 * @since 1.5.0 120 * @access public121 120 * @var int 122 121 */ … … 127 126 * 128 127 * @since 1.5.0 129 * @access public130 128 * @var int 131 129 */ … … 136 134 * 137 135 * @since 1.5.0 138 * @access public139 136 * @var int 140 137 */ … … 145 142 * 146 143 * @since 1.5.0 147 * @access public148 144 * @var array 149 145 */ … … 154 150 * 155 151 * @since 1.5.0 156 * @access public157 152 * @var object 158 153 */ … … 163 158 * 164 159 * @since 1.5.0 165 * @access public166 160 * @var bool 167 161 */ … … 180 174 * 181 175 * @since 1.5.0 182 * @access public183 176 * @var int 184 177 */ … … 189 182 * 190 183 * @since 1.5.0 191 * @access public192 184 * @var int 193 185 */ … … 198 190 * 199 191 * @since 1.5.0 200 * @access public201 192 * @var string 202 193 */ … … 207 198 * 208 199 * @since 1.5.0 209 * @access public210 200 * @var string 211 201 */ -
trunk/src/bp-activity/classes/class-bp-activity-feed.php
r10094 r10248 174 174 /** 175 175 * Setup and validate the class properties. 176 *177 * @access protected178 176 */ 179 177 protected function setup_properties() { … … 199 197 * Currently, these hooks are used to maintain backwards compatibility with 200 198 * the RSS feeds previous to BP 1.8. 201 *202 * @access protected203 199 */ 204 200 protected function setup_hooks() { … … 273 269 /** 274 270 * Output the feed's item content. 275 *276 * @access protected277 271 */ 278 272 protected function feed_content() { … … 304 298 * 305 299 * @since 1.9.0 306 *307 * @access protected308 300 */ 309 301 protected function http_headers() { … … 380 372 /** 381 373 * Output the RSS feed. 382 *383 * @access protected384 374 */ 385 375 protected function output() { -
trunk/src/bp-activity/classes/class-bp-activity-query.php
r10077 r10248 25 25 * 26 26 * @since 2.2.0 27 * @access public28 27 * @var array 29 28 */ … … 34 33 * 35 34 * @since 2.2.0 36 * @access public37 35 * @var string 38 36 */ … … 45 43 * 46 44 * @since 2.2.0 47 * @access public48 45 * @var array 49 46 */ … … 88 85 * 89 86 * @since 2.2.0 90 * @access public91 87 * 92 88 * @param string $alias An existing table alias that is compatible with the current query clause. … … 113 109 * 114 110 * @since 2.2.0 115 * @access protected116 111 * 117 112 * @param array $clause Array of arguments belonging to the clause. … … 226 221 * 227 222 * @since 2.2.0 228 * @access protected229 223 * 230 224 * @param array $query Clause to check. … … 243 237 * 244 238 * @since 2.2.0 245 * @access public246 239 * 247 240 * @param string $column The user-supplied column name. -
trunk/src/bp-blogs/bp-blogs-functions.php
r10100 r10248 837 837 * 838 838 * @since 1.6.0 839 * @access private840 839 */ 841 840 function bp_blogs_maybe_add_user_to_blog() { -
trunk/src/bp-blogs/bp-blogs-template.php
r10126 r10248 112 112 * The loop iterator. 113 113 * 114 * @access public115 114 * @var int 116 115 */ … … 120 119 * The number of blogs returned by the paged query. 121 120 * 122 * @access public123 121 * @var int 124 122 */ … … 128 126 * Array of blogs located by the query.. 129 127 * 130 * @access public131 128 * @var array 132 129 */ … … 136 133 * The blog object currently being iterated on. 137 134 * 138 * @access public139 135 * @var object 140 136 */ … … 144 140 * A flag for whether the loop is currently being iterated. 145 141 * 146 * @access public147 142 * @var bool 148 143 */ … … 152 147 * The page number being requested. 153 148 * 154 * @access public155 149 * @var int 156 150 */ … … 160 154 * The number of items being requested per page. 161 155 * 162 * @access public163 156 * @var int 164 157 */ … … 168 161 * An HTML string containing pagination links. 169 162 * 170 * @access public171 163 * @var string 172 164 */ … … 176 168 * The total number of blogs matching the query parameters. 177 169 * 178 * @access public179 170 * @var int 180 171 */ -
trunk/src/bp-core/bp-core-admin.php
r10160 r10248 91 91 * Set admin-related globals. 92 92 * 93 * @access private94 93 * @since 1.6.0 95 94 */ … … 115 114 * 116 115 * @since 1.6.0 117 * @access private118 116 */ 119 117 private function includes() { … … 129 127 * Set up the admin hooks, actions, and filters. 130 128 * 131 * @access private132 129 * @since 1.6.0 133 130 * -
trunk/src/bp-core/classes/class-bp-recursive-query.php
r10108 r10248 21 21 * 22 22 * @since 2.2.0 23 * @access public24 23 * @var array 25 24 */ … … 36 35 * 37 36 * @since 2.2.0 38 * @access protected39 37 * 40 38 * @return array … … 60 58 * 61 59 * @since 2.2.0 62 * @access protected63 60 * 64 61 * @param array $query Query to parse. … … 140 137 * 141 138 * @since 2.2.0 142 * @access public143 139 * 144 140 * @param array $queries Array of query clauses. … … 208 204 * 209 205 * @since 2.2.0 210 * @access protected211 206 * 212 207 * @param array $clause Array of arguments belonging to the clause. … … 226 221 * 227 222 * @since 2.2.0 228 * @access protected229 223 * 230 224 * @param array $query Clause to check. -
trunk/src/bp-core/classes/class-bp-user-query.php
r10108 r10248 82 82 * List of found users and their respective data. 83 83 * 84 * @access public To allow components to manipulate them.85 84 * @since 1.7.0 86 85 * @var array … … 91 90 * Total number of found users for the current query. 92 91 * 93 * @access public To allow components to manipulate it.94 92 * @since 1.7.0 95 93 * @var int … … 100 98 * List of found user IDs. 101 99 * 102 * @access public To allow components to manipulate it.103 100 * @since 1.7.0 104 101 * @var array … … 109 106 * SQL clauses for the user ID query. 110 107 * 111 * @access public To allow components to manipulate it.112 108 * @since 1.7.0 113 109 * @var array … … 119 115 * 120 116 * @since 2.2.0 121 * @access public122 117 * @var string 123 118 */ … … 135 130 * Standard response when the query should not return any rows. 136 131 * 137 * @access protected138 132 * @since 1.7.0 139 133 * @var string -
trunk/src/bp-forums/bp-forums-template.php
r10183 r10248 109 109 * The loop iterator. 110 110 * 111 * @access public112 111 * @var int 113 112 */ … … 117 116 * The number of topics returned by the paged query. 118 117 * 119 * @access public120 118 * @var int 121 119 */ … … 125 123 * Array of topics located by the query. 126 124 * 127 * @access public128 125 * @var array 129 126 */ … … 133 130 * The topic object currently being iterated on. 134 131 * 135 * @access public136 132 * @var object 137 133 */ … … 141 137 * The ID of the forum whose topics are being queried. 142 138 * 143 * @access public144 139 * @var int 145 140 */ … … 149 144 * A flag for whether the loop is currently being iterated. 150 145 * 151 * @access public152 146 * @var bool 153 147 */ … … 157 151 * The page number being requested. 158 152 * 159 * @access public160 153 * @var int 161 154 */ … … 165 158 * The number of items being requested per page. 166 159 * 167 * @access public168 160 * @var int 169 161 */ … … 173 165 * An HTML string containing pagination links. 174 166 * 175 * @access public176 167 * @var string 177 168 */ … … 181 172 * The total number of topics matching the query parameters. 182 173 * 183 * @access public184 174 * @var int 185 175 */ … … 189 179 * Whether requesting a single topic. Not currently used. 190 180 * 191 * @access public192 181 * @var bool 193 182 */ … … 197 186 * Term to sort by. Not currently used. 198 187 * 199 * @access public200 188 * @var string 201 189 */ … … 205 193 * Sort order. Not currently used. 206 194 * 207 * @access public208 195 * @var string 209 196 */ … … 1924 1911 * The loop iterator. 1925 1912 * 1926 * @access public1927 1913 * @var int 1928 1914 */ … … 1932 1918 * The number of posts returned by the paged query. 1933 1919 * 1934 * @access public1935 1920 * @var int 1936 1921 */ … … 1940 1925 * Array of posts located by the query. 1941 1926 * 1942 * @access public1943 1927 * @var array 1944 1928 */ … … 1948 1932 * The post object currently being iterated on. 1949 1933 * 1950 * @access public1951 1934 * @var object 1952 1935 */ … … 1956 1939 * The ID of the forum whose topic is being queried. 1957 1940 * 1958 * @access public1959 1941 * @var int 1960 1942 */ … … 1964 1946 * The ID of the topic whose posts are being queried. 1965 1947 * 1966 * @access public1967 1948 * @var int 1968 1949 */ … … 1972 1953 * The topic object to which the posts belong. 1973 1954 * 1974 * @access public1975 1955 * @var object 1976 1956 */ … … 1980 1960 * A flag for whether the loop is currently being iterated. 1981 1961 * 1982 * @access public1983 1962 * @var bool 1984 1963 */ … … 1997 1976 * The page number being requested. 1998 1977 * 1999 * @access public2000 1978 * @var int 2001 1979 */ … … 2005 1983 * The number of items being requested per page. 2006 1984 * 2007 * @access public2008 1985 * @var int 2009 1986 */ … … 2013 1990 * An HTML string containing pagination links. 2014 1991 * 2015 * @access public2016 1992 * @var string 2017 1993 */ … … 2021 1997 * The total number of posts matching the query parameters. 2022 1998 * 2023 * @access public2024 1999 * @var int 2025 2000 */ … … 2029 2004 * Whether requesting a single topic. Not currently used. 2030 2005 * 2031 * @access public2032 2006 * @var bool 2033 2007 */ … … 2037 2011 * Term to sort by. 2038 2012 * 2039 * @access public2040 2013 * @var string 2041 2014 */ … … 2045 2018 * Sort order. 2046 2019 * 2047 * @access public2048 2020 * @var string 2049 2021 */ -
trunk/src/bp-friends/classes/class-bp-friends-friendship.php
r10160 r10248 18 18 * ID of the friendship. 19 19 * 20 * @access public21 20 * @var int 22 21 */ … … 26 25 * User ID of the friendship initiator. 27 26 * 28 * @access public29 27 * @var int 30 28 */ … … 34 32 * User ID of the 'friend' - the one invited to the friendship. 35 33 * 36 * @access public37 34 * @var int 38 35 */ … … 42 39 * Has the friendship been confirmed/accepted? 43 40 * 44 * @access public45 41 * @var int 46 42 */ … … 52 48 * Not currently used by BuddyPress. 53 49 * 54 * @access public55 50 * @var int 56 51 */ … … 60 55 * Date the friendship was created. 61 56 * 62 * @access public63 57 * @var string 64 58 */ … … 70 64 * Not currently used in BuddyPress. 71 65 * 72 * @access public73 66 * @var bool 74 67 */ … … 78 71 * Should additional friend details be queried? 79 72 * 80 * @access public81 73 * @var bool 82 74 */ … … 86 78 * Details about the friend. 87 79 * 88 * @access public89 80 * @var BP_Core_User 90 81 */ -
trunk/src/bp-groups/bp-groups-admin.php
r10229 r10248 1137 1137 * @since 1.7.0 1138 1138 * 1139 * @access public1140 1139 * @var string 1141 1140 */ … … 1147 1146 * @since 1.7.0 1148 1147 * 1149 * @access public1150 1148 * @var int 1151 1149 */ … … 1305 1303 * 1306 1304 * @since 2.3.3 1307 * @access protected1308 1305 * 1309 1306 * @return string -
trunk/src/bp-groups/bp-groups-loader.php
r10205 r10248 20 20 * 21 21 * @since 1.5.0 22 * @access public23 22 * @var bool 24 23 */ … … 29 28 * 30 29 * @since 1.5.0 31 * @access public32 30 * @var BP_Groups_Group 33 31 */ … … 38 36 * 39 37 * @since 1.6.0 40 * @access public41 38 * @todo Is this used anywhere? Is this a duplicate of $default_extension? 42 39 */ … … 47 44 * 48 45 * @since 1.6.0 49 * @access public50 46 * @var string 51 47 */ … … 56 52 * 57 53 * @since 1.5.0 58 * @access public59 54 * @var array 60 55 */ … … 65 60 * 66 61 * @since 1.5.0 67 * @access public68 62 * @var array 69 63 */ … … 74 68 * 75 69 * @since 1.5.0 76 * @access public77 70 * @var array 78 71 */ -
trunk/src/bp-groups/bp-groups-template.php
r10240 r10248 101 101 * The loop iterator. 102 102 * 103 * @access public104 103 * @var int 105 104 */ … … 109 108 * The number of groups returned by the paged query. 110 109 * 111 * @access public112 110 * @var int 113 111 */ … … 117 115 * Array of groups located by the query. 118 116 * 119 * @access public120 117 * @var array 121 118 */ … … 125 122 * The group object currently being iterated on. 126 123 * 127 * @access public128 124 * @var object 129 125 */ … … 133 129 * A flag for whether the loop is currently being iterated. 134 130 * 135 * @access public136 131 * @var bool 137 132 */ … … 141 136 * The page number being requested. 142 137 * 143 * @access public144 138 * @var string 145 139 */ … … 149 143 * The number of items being requested per page. 150 144 * 151 * @access public152 145 * @var string 153 146 */ … … 157 150 * An HTML string containing pagination links. 158 151 * 159 * @access public160 152 * @var string 161 153 */ … … 165 157 * The total number of groups matching the query parameters. 166 158 * 167 * @access public168 159 * @var int 169 160 */ … … 173 164 * Whether the template loop is for a single group page. 174 165 * 175 * @access public176 166 * @var bool 177 167 */ … … 181 171 * Field to sort by. 182 172 * 183 * @access public184 173 * @var string 185 174 */ … … 189 178 * Sort order. 190 179 * 191 * @access public192 180 * @var string 193 181 */ -
trunk/src/bp-groups/classes/class-bp-group-extension.php
r10148 r10248 96 96 * 97 97 * @since 1.8.0 98 * @access public99 98 * @var array 100 99 */ … … 105 104 * 106 105 * @since 1.8.0 107 * @access public108 106 * @var string 109 107 */ … … 114 112 * 115 113 * @since 1.8.0 116 * @access public117 114 * @var ReflectionClass 118 115 */ … … 123 120 * 124 121 * @since 1.8.0 125 * @access public126 122 * @var array 127 123 */ … … 132 128 * 133 129 * @since 2.1.0 134 * @access public135 130 * @var array 136 131 */ … … 141 136 * 142 137 * @since 1.8.0 143 * @access public144 138 * @var int 145 139 */ … … 149 143 * The slug of the current extension. 150 144 * 151 * @access public152 145 * @var string 153 146 */ … … 157 150 * The translatable name of the current extension. 158 151 * 159 * @access public160 152 * @var string 161 153 */ … … 165 157 * The visibility of the extension tab. 'public' or 'private'. 166 158 * 167 * @access public168 159 * @var string 169 160 */ … … 173 164 * The numeric position of the main nav item. 174 165 * 175 * @access public176 166 * @var int 177 167 */ … … 181 171 * Whether to show the nav item. 182 172 * 183 * @access public184 173 * @var bool 185 174 */ … … 190 179 * 191 180 * @since 2.1.0 192 * @access public193 181 * @var bool 194 182 */ … … 199 187 * 200 188 * @since 2.1.0 201 * @access public202 189 * @var bool 203 190 */ … … 207 194 * The text of the nav item. Defaults to self::name. 208 195 * 209 * @access public210 196 * @var string 211 197 */ … … 217 203 * Default: 'groups_custom_group_boxes'. 218 204 * 219 * @access public220 205 * @var string 221 206 */ … … 227 212 * Default: 'groups/single/plugins'. 228 213 * 229 * @access public230 214 * @var string 231 215 */ … … 238 222 * 239 223 * @since 1.8.0 240 * @access protected241 224 * @var bool 242 225 */ … … 247 230 * 248 231 * @since 1.8.0 249 * @access protected250 232 * @var array 251 233 */ … … 259 241 * 260 242 * @since 1.8.0 261 * @access protected262 243 * @var array 263 244 */ … … 268 249 * 269 250 * @since 2.1.0 270 * @access protected271 251 * @var string 272 252 */ … … 277 257 * 278 258 * @since 1.8.0 279 * @access protected280 259 * @var array 281 260 */ … … 1082 1061 * 1083 1062 * @since 1.8.0 1084 * @access public So that do_action() has access. Do not call directly.1085 1063 * 1086 1064 * @see BP_Group_Extension::setup_edit_hooks() -
trunk/src/bp-groups/classes/class-bp-group-member-query.php
r10148 r10248 46 46 * 47 47 * @since 1.8.1 48 * @access protected49 48 * @var null|array Null if not yet defined, otherwise an array of ints. 50 49 */ -
trunk/src/bp-groups/classes/class-bp-groups-group.php
r10148 r10248 18 18 * ID of the group. 19 19 * 20 * @access public21 20 * @var int 22 21 */ … … 26 25 * User ID of the group's creator. 27 26 * 28 * @access public29 27 * @var int 30 28 */ … … 34 32 * Name of the group. 35 33 * 36 * @access public37 34 * @var string 38 35 */ … … 42 39 * Group slug. 43 40 * 44 * @access public45 41 * @var string 46 42 */ … … 50 46 * Group description. 51 47 * 52 * @access public53 48 * @var string 54 49 */ … … 60 55 * Core statuses are 'public', 'private', and 'hidden'. 61 56 * 62 * @access public63 57 * @var string 64 58 */ … … 68 62 * Should (legacy) bbPress forums be enabled for this group? 69 63 * 70 * @access public71 64 * @var int 72 65 */ … … 76 69 * Date the group was created. 77 70 * 78 * @access public79 71 * @var string 80 72 */ … … 84 76 * Data about the group's admins. 85 77 * 86 * @access public87 78 * @var array 88 79 */ … … 92 83 * Data about the group's moderators. 93 84 * 94 * @access public95 85 * @var array 96 86 */ … … 100 90 * Total count of group members. 101 91 * 102 * @access public103 92 * @var int 104 93 */ … … 952 941 * 953 942 * @since 1.8.0 954 * @access protected955 943 * 956 944 * @param array $meta_query An array of meta_query filters. See the … … 1000 988 * 1001 989 * @since 1.8.0 1002 * @access protected1003 990 * 1004 991 * @param string $type The 'type' shorthand param. … … 1116 1103 * 1117 1104 * @since 1.8.0 1118 * @access protected1119 1105 * 1120 1106 * @param string $orderby Orderby term as passed to get(). -
trunk/src/bp-groups/classes/class-bp-groups-member-suggestions.php
r10148 r10248 21 21 * 22 22 * @since 2.1.0 23 * @access protected24 23 * @var array $args { 25 24 * @type int $group_id Positive integers will restrict the search to members in that group. -
trunk/src/bp-groups/classes/class-bp-groups-member.php
r10227 r10248 18 18 * ID of the membership. 19 19 * 20 * @access public21 20 * @var int 22 21 */ … … 26 25 * ID of the group associated with the membership. 27 26 * 28 * @access public29 27 * @var int 30 28 */ … … 34 32 * ID of the user associated with the membership. 35 33 * 36 * @access public37 34 * @var int 38 35 */ … … 42 39 * ID of the user whose invitation initiated the membership. 43 40 * 44 * @access public45 41 * @var int 46 42 */ … … 50 46 * Whether the member is an admin of the group. 51 47 * 52 * @access public53 48 * @var int 54 49 */ … … 58 53 * Whether the member is a mod of the group. 59 54 * 60 * @access public61 55 * @var int 62 56 */ … … 66 60 * Whether the member is banned from the group. 67 61 * 68 * @access public69 62 * @var int 70 63 */ … … 76 69 * Eg, 'Group Admin'. 77 70 * 78 * @access public79 71 * @var int 80 72 */ … … 86 78 * This value is updated when, eg, invitations are accepted. 87 79 * 88 * @access public89 80 * @var string 90 81 */ … … 94 85 * Whether the membership has been confirmed. 95 86 * 96 * @access public97 87 * @var int 98 88 */ … … 105 95 * include when requesting membership to a private group. 106 96 * 107 * @access public108 97 * @var string 109 98 */ … … 118 107 * invitee has not yet been notified. 119 108 * 120 * @access public121 109 * @var int 122 110 */ … … 126 114 * WP_User object representing the membership's user. 127 115 * 128 * @access public129 116 * @var WP_User 130 117 */ -
trunk/src/bp-loader.php
r10247 r10248 318 318 * 319 319 * @since 1.6.0 320 * @access private321 320 * 322 321 * @uses plugin_dir_path() To generate BuddyPress plugin path. … … 450 449 * 451 450 * @since 1.6.0 452 * @access private453 451 * 454 452 * @uses is_admin() If in WordPress admin, load additional file. … … 509 507 * 510 508 * @since 1.6.0 511 * @access private512 509 * 513 510 * @uses register_activation_hook() To register the activation hook. -
trunk/src/bp-members/admin/bp-members-admin-classes.php
r10246 r10248 24 24 * @since 2.0.0 25 25 * 26 * @access public27 26 * @var int 28 27 */ … … 411 410 * @since 2.0.0 412 411 * 413 * @access public414 412 * @var int 415 413 */ … … 606 604 * 607 605 * @since 2.4.0 608 * @access protected609 606 * 610 607 * @param object $signup_object Signup being acted upon. -
trunk/src/bp-members/bp-members-admin.php
r10229 r10248 59 59 * Screen id for edit user's profile page. 60 60 * 61 * @access public62 61 * @var string 63 62 */ … … 67 66 * Setup BP Members Admin. 68 67 * 69 * @access public70 68 * @since 2.0.0 71 69 * … … 89 87 * Constructor method. 90 88 * 91 * @access public92 89 * @since 2.0.0 93 90 */ … … 100 97 * Set admin-related globals. 101 98 * 102 * @access private103 99 * @since 2.0.0 104 100 */ … … 159 155 * Set admin-related actions and filters. 160 156 * 161 * @access private162 157 * @since 2.0.0 163 158 */ … … 246 241 * in the future. 247 242 * 248 * @access public249 243 * @since 2.1.0 250 244 * … … 363 357 * Create the /user/ admin Profile submenus for all members. 364 358 * 365 * @access public366 359 * @since 2.1.0 367 360 * … … 402 395 * Create the All Users / Profile > Edit Profile and All Users Signups submenus. 403 396 * 404 * @access public405 397 * @since 2.0.0 406 398 * … … 477 469 * Highlight the Users menu if on Edit Profile and check if on the user's admin profile. 478 470 * 479 * @access public480 471 * @since 2.1.0 481 472 */ … … 537 528 * subnav items under the Users menu. 538 529 * 539 * @access public540 530 * @since 2.0.0 541 531 */ … … 550 540 * Add some specific styling to the Edit User and Edit User's Profile page. 551 541 * 552 * @access public553 542 * @since 2.0.0 554 543 */ … … 606 595 * Create the Profile navigation in Edit User & Edit Profile pages. 607 596 * 608 * @access public609 597 * @since 2.0.0 610 598 * … … 670 658 * help, and setting up screen options. 671 659 * 672 * @access public673 660 * @since 2.0.0 674 661 */ … … 846 833 * Display the user's profile. 847 834 * 848 * @access public849 835 * @since 2.0.0 850 836 */ … … 955 941 * - Spam/Unspam user 956 942 * 957 * @access public958 943 * @since 2.0.0 959 944 * … … 1032 1017 * Render the fallback metabox in case a user has been marked as a spammer. 1033 1018 * 1034 * @access public1035 1019 * @since 2.0.0 1036 1020 * … … 1046 1030 * Render the Stats metabox to moderate inappropriate images. 1047 1031 * 1048 * @access public1049 1032 * @since 2.0.0 1050 1033 * … … 1097 1080 * 1098 1081 * @since 2.2.0 1099 * @access public1100 1082 * 1101 1083 * @param WP_User $user The WP_User object to be edited. … … 1128 1110 * 1129 1111 * @since 2.2.0 1130 * @access public1131 1112 */ 1132 1113 public function process_member_type_update() { … … 1162 1143 * Add a link to Profile in Users listing row actions. 1163 1144 * 1164 * @access public1165 1145 * @since 2.0.0 1166 1146 * … … 1222 1202 * Add a filter to edit profile url in WP Admin Bar. 1223 1203 * 1224 * @access public1225 1204 * @since 2.1.0 1226 1205 */ … … 1232 1211 * Filter the profile url. 1233 1212 * 1234 * @access public1235 1213 * @since 2.1.0 1236 1214 * … … 1253 1231 * Remove the filter to edit profile url in WP Admin Bar. 1254 1232 * 1255 * @access public1256 1233 * @since 2.1.0 1257 1234 */ … … 1265 1242 * Display the admin preferences about signups pagination. 1266 1243 * 1267 * @access public1268 1244 * @since 2.0.0 1269 1245 * -
trunk/src/bp-members/bp-members-loader.php
r10149 r10248 17 17 * @see bp_register_member_type() 18 18 * 19 * @access public20 19 * @since 2.2.0 21 20 * @var array -
trunk/src/bp-members/bp-members-template.php
r10157 r10248 214 214 * The loop iterator. 215 215 * 216 * @access public217 216 * @var int 218 217 */ … … 222 221 * The number of members returned by the paged query. 223 222 * 224 * @access public225 223 * @var int 226 224 */ … … 230 228 * Array of members located by the query. 231 229 * 232 * @access public233 230 * @var array 234 231 */ … … 238 235 * The member object currently being iterated on. 239 236 * 240 * @access public241 237 * @var object 242 238 */ … … 246 242 * A flag for whether the loop is currently being iterated. 247 243 * 248 * @access public249 244 * @var bool 250 245 */ … … 254 249 * The type of member being requested. Used for ordering results. 255 250 * 256 * @access public257 251 * @var string 258 252 */ … … 262 256 * The unique string used for pagination queries. 263 257 * 264 * @access public265 258 * @var string 266 259 */ … … 270 263 * The page number being requested. 271 264 * 272 * @access public273 265 * @var string 274 266 */ … … 278 270 * The number of items being requested per page. 279 271 * 280 * @access public281 272 * @var string 282 273 */ … … 286 277 * An HTML string containing pagination links. 287 278 * 288 * @access public289 279 * @var string 290 280 */ … … 294 284 * The total number of members matching the query parameters. 295 285 * 296 * @access public297 286 * @var int 298 287 */ -
trunk/src/bp-messages/bp-messages-template.php
r10139 r10248 18 18 * The loop iterator. 19 19 * 20 * @access public21 20 * @var int 22 21 */ … … 26 25 * The number of threads returned by the paged query. 27 26 * 28 * @access public29 27 * @var int 30 28 */ … … 34 32 * Total number of threads matching the query params. 35 33 * 36 * @access public37 34 * @var int 38 35 */ … … 42 39 * Array of threads located by the query. 43 40 * 44 * @access public45 41 * @var array 46 42 */ … … 50 46 * The thread object currently being iterated on. 51 47 * 52 * @access public53 48 * @var object 54 49 */ … … 58 53 * A flag for whether the loop is currently being iterated. 59 54 * 60 * @access public61 55 * @var bool 62 56 */ … … 66 60 * User ID of the current inbox. 67 61 * 68 * @access public69 62 * @var int 70 63 */ … … 74 67 * The current "box" view ('notices', 'sentbox', 'inbox'). 75 68 * 76 * @access public77 69 * @var string 78 70 */ … … 82 74 * The page number being requested. 83 75 * 84 * @access public85 76 * @var int 86 77 */ … … 90 81 * The number of items being requested per page. 91 82 * 92 * @access public93 83 * @var int 94 84 */ … … 98 88 * An HTML string containing pagination links. 99 89 * 100 * @access public101 90 * @var string 102 91 */ … … 106 95 * Search terms for limiting the thread query. 107 96 * 108 * @access public109 97 * @var string 110 98 */ … … 1772 1760 * The loop iterator. 1773 1761 * 1774 * @access public1775 1762 * @var int 1776 1763 */ … … 1780 1767 * Number of messages returned by the paged query. 1781 1768 * 1782 * @access public1783 1769 * @var int 1784 1770 */ … … 1788 1774 * The message object currently being iterated on. 1789 1775 * 1790 * @access public1791 1776 * @var object 1792 1777 */ … … 1796 1781 * Thread that the current messages belong to. 1797 1782 * 1798 * @access public1799 1783 * @var BP_Messages_Thread 1800 1784 */ … … 1804 1788 * A flag for whether the loop is currently being iterated. 1805 1789 * 1806 * @access public1807 1790 * @var bool 1808 1791 */ … … 1812 1795 * The page number being requested. 1813 1796 * 1814 * @access public1815 1797 * @var int 1816 1798 */ … … 1820 1802 * The number of items being requested per page. 1821 1803 * 1822 * @access public1823 1804 * @var int 1824 1805 */ … … 1828 1809 * An HTML string containing pagination links. 1829 1810 * 1830 * @access public1831 1811 * @var string 1832 1812 */ … … 1836 1816 * The total number of messages matching the query. 1837 1817 * 1838 * @access public1839 1818 * @var int 1840 1819 */ -
trunk/src/bp-notifications/bp-notifications-template.php
r10138 r10248 136 136 * 137 137 * @since 1.9.0 138 * @access public139 138 * @var int 140 139 */ … … 145 144 * 146 145 * @since 1.9.0 147 * @access public148 146 * @var int 149 147 */ … … 154 152 * 155 153 * @since 1.9.0 156 * @access public157 154 * @var int 158 155 */ … … 163 160 * 164 161 * @since 1.9.0 165 * @access public166 162 * @var array 167 163 */ … … 172 168 * 173 169 * @since 1.9.0 174 * @access public175 170 * @var object 176 171 */ … … 181 176 * 182 177 * @since 1.9.0 183 * @access public184 178 * @var bool 185 179 */ … … 190 184 * 191 185 * @since 1.9.0 192 * @access public193 186 * @var int 194 187 */ … … 199 192 * 200 193 * @since 1.9.0 201 * @access public202 194 * @var int 203 195 */ … … 208 200 * 209 201 * @since 1.9.0 210 * @access public211 202 * @var int 212 203 */ … … 217 208 * 218 209 * @since 1.9.0 219 * @access public220 210 * @var int 221 211 */ … … 226 216 * 227 217 * @since 1.9.0 228 * @access public229 218 * @var string 230 219 */ … … 235 224 * 236 225 * @since 1.9.0 237 * @access public238 226 * @var string 239 227 */ … … 244 232 * 245 233 * @since 1.9.0 246 * @access public247 234 * @var string 248 235 */ … … 253 240 * 254 241 * @since 1.9.0 255 * @access public256 242 * @var string 257 243 */ -
trunk/src/bp-notifications/classes/class-bp-notifications-notification.php
r10210 r10248 27 27 * 28 28 * @since 1.9.0 29 * @access public30 29 * @var int 31 30 */ … … 36 35 * 37 36 * @since 1.9.0 38 * @access public39 37 * @var int 40 38 */ … … 45 43 * 46 44 * @since 1.9.0 47 * @access public48 45 * @var int 49 46 */ … … 54 51 * 55 52 * @since 1.9.0 56 * @access public57 53 * @var int 58 54 */ … … 63 59 * 64 60 * @since 1.9.0 65 * @access public66 61 * @var string 67 62 */ … … 72 67 * 73 68 * @since 1.9.0 74 * @access public75 69 * @var string 76 70 */ … … 81 75 * 82 76 * @since 1.9.0 83 * @access public84 77 * @var string 85 78 */ … … 90 83 * 91 84 * @since 1.9.0 92 * @access public93 85 * @var bool 94 86 */ -
trunk/src/bp-templates/bp-legacy/buddypress-functions.php
r10237 r10248 56 56 * 57 57 * @since 1.7.0 58 * @access private59 58 */ 60 59 protected function setup_globals() { … … 71 70 * 72 71 * @since 1.7.0 73 * @access private74 72 * 75 73 * @uses add_filter() To add various filters … … 373 371 * 374 372 * @since 1.8.0 375 * @access private376 373 * @param string $file A filename like buddypress.css. 377 374 * @param string $type Optional. Either "js" or "css" (the default). -
trunk/src/bp-xprofile/bp-xprofile-admin.php
r10239 r10248 676 676 * Setup xProfile User Admin. 677 677 * 678 * @access public679 678 * @since 2.0.0 680 679 * … … 700 699 * Constructor method. 701 700 * 702 * @access public703 701 * @since 2.0.0 704 702 */ … … 710 708 * Set admin-related actions and filters. 711 709 * 712 * @access private713 710 * @since 2.0.0 714 711 */ … … 727 724 * Enqueue needed scripts. 728 725 * 729 * @access public730 726 * @since 2.3.0 731 727 * … … 759 755 * Register the xProfile metabox on Community Profile admin page. 760 756 * 761 * @access public762 757 * @since 2.0.0 763 758 * … … 834 829 * requests. 835 830 * 836 * @access public837 831 * @since 2.0.0 838 832 * … … 963 957 * Render the xprofile metabox for Community Profile screen. 964 958 * 965 * @access public966 959 * @since 2.0.0 967 960 * … … 1070 1063 * Render the fallback metabox in case a user has been marked as a spammer. 1071 1064 * 1072 * @access public1073 1065 * @since 2.0.0 1074 1066 * … … 1084 1076 * Render the Avatar metabox to moderate inappropriate images. 1085 1077 * 1086 * @access public1087 1078 * @since 2.0.0 1088 1079 * -
trunk/src/bp-xprofile/bp-xprofile-template.php
r10232 r10248 23 23 * 24 24 * @since 1.5.0 25 * @access public26 25 * @var int 27 26 */ … … 32 31 * 33 32 * @since 1.5.0 34 * @access public35 33 * @var int 36 34 */ … … 41 39 * 42 40 * @since 1.5.0 43 * @access public44 41 * @var array 45 42 */ … … 50 47 * 51 48 * @since 1.5.0 52 * @access public53 49 * @var object 54 50 */ … … 59 55 * 60 56 * @since 1.5.0 61 * @access public62 57 * @var int 63 58 */ … … 68 63 * 69 64 * @since 1.5.0 70 * @access public71 65 * @var int 72 66 */ … … 77 71 * 78 72 * @since 1.5.0 79 * @access public80 73 * @var bool 81 74 */ … … 86 79 * 87 80 * @since 1.5.0 88 * @access public89 81 * @var int 90 82 */ … … 95 87 * 96 88 * @since 1.5.0 97 * @access public98 89 * @var bool 99 90 */ … … 104 95 * 105 96 * @since 1.5.0 106 * @access public107 97 * @var int 108 98 */ -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field.php
r10243 r10248 126 126 * @since 2.4.0 Property marked protected. Now accessible by magic method or by `get_default_visibility()`. 127 127 * 128 * @access protected129 128 * @var string Default field data visibility. 130 129 */ … … 137 136 * @since 2.4.0 Property marked protected. Now accessible by magic method or by `get_allow_custom_visibility()`. 138 137 * 139 * @access protected140 138 * @var string Members are allowed/disallowed to modify data visibility. 141 139 */ … … 164 162 * 165 163 * @since 2.4.0 166 * @access protected167 164 * @var array Array of member types. 168 165 */ -
trunk/src/bp-xprofile/classes/class-bp-xprofile-meta-query.php
r10163 r10248 30 30 * 31 31 * @since 2.3.0 32 * @access protected33 32 * 34 33 * @param array $query Meta query arguments. … … 44 43 * 45 44 * @since 2.3.0 46 * @access public47 45 * 48 46 * @param array $qv The query variables. … … 97 95 * 98 96 * @since 2.3.0 99 * @access public100 97 * 101 98 * @param string $type Type of meta, eg 'user', 'post'. … … 157 154 * 158 155 * @since 2.3.0 159 * @access public160 156 * 161 157 * @param array $clause Query clause, passed by reference. -
trunk/src/bp-xprofile/classes/class-bp-xprofile-query.php
r10163 r10248 23 23 * 24 24 * @since 2.2.0 25 * @access public26 25 * @var array 27 26 */ … … 32 31 * 33 32 * @since 2.2.0 34 * @access public35 33 * @var string 36 34 */ … … 41 39 * 42 40 * @since 2.2.0 43 * @access public44 41 * @var string 45 42 */ … … 50 47 * 51 48 * @since 2.2.0 52 * @access protected53 49 * @var array 54 50 */ … … 59 55 * 60 56 * @since 2.2.0 61 * @access public62 57 * 63 58 * @param array $xprofile_query { … … 95 90 * 96 91 * @since 2.2.0 97 * @access public98 92 * 99 93 * @param array $queries Array of query clauses. … … 163 157 * 164 158 * @since 2.2.0 165 * @access protected166 159 * 167 160 * @param array $query XProfile query arguments. … … 177 170 * 178 171 * @since 2.2.0 179 * @access public180 172 * 181 173 * @param string $type MySQL type to cast `value`. … … 208 200 * 209 201 * @since 2.2.0 210 * @access protected211 202 * 212 203 * @return array { … … 238 229 * 239 230 * @since 2.2.0 240 * @access protected241 231 * 242 232 * @param array $query Query to parse. … … 320 310 * 321 311 * @since 2.2.0 322 * @access public323 312 * 324 313 * @param string $primary_table Database table where the object being filtered is stored (eg wp_users). … … 356 345 * 357 346 * @since 2.2.0 358 * @access public359 347 * 360 348 * @param array $clause Query clause. … … 507 495 * 508 496 * @since 2.2.0 509 * @access protected510 497 * 511 498 * @param array $clause Query clause.
Note: See TracChangeset
for help on using the changeset viewer.