Changeset 6573 for trunk/src/includes/users/options.php
- Timestamp:
- 06/16/2017 09:20:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/users/options.php
r6438 r6573 34 34 * 35 35 * @since 2.1.0 bbPress (r3910) 36 *37 * @uses bbp_get_default_user_options() To get default options38 * @uses update_user_option() Adds default options39 * @uses do_action() Calls 'bbp_add_user_options'40 36 */ 41 37 function bbp_add_user_options( $user_id = 0 ) { … … 63 59 * 64 60 * @since 2.1.0 bbPress (r3910) 65 *66 * @uses bbp_get_default_user_options() To get default options67 * @uses delete_user_option() Removes default options68 * @uses do_action() Calls 'bbp_delete_options'69 61 */ 70 62 function bbp_delete_user_options( $user_id = 0 ) { … … 90 82 * 91 83 * @since 2.1.0 bbPress (r3910) 92 *93 * @uses bbp_get_default_user_options() To get default options94 * @uses add_filter() To add filters to 'pre_option_{$key}'95 * @uses do_action() Calls 'bbp_add_option_filters'96 84 */ 97 85 function bbp_setup_user_option_filters() { … … 194 182 * @param int $user_id 195 183 * @param boolean $integer Optional. Whether or not to format the result 196 * @uses bbp_get_user_topic_count()184 * 197 185 * @return string 198 186 */ … … 207 195 * @param int $user_id 208 196 * @param boolean $integer Optional. Whether or not to format the result 209 * @uses bbp_get_user_id() 210 * @uses get_user_option() 211 * @uses apply_filters() 197 * 212 198 * @return string 213 199 */ … … 236 222 * @param int $user_id 237 223 * @param boolean $integer Optional. Whether or not to format the result 238 * @uses bbp_get_user_reply_count()224 * 239 225 * @return string 240 226 */ … … 249 235 * @param int $user_id 250 236 * @param boolean $integer Optional. Whether or not to format the result 251 * @uses bbp_get_user_id() 252 * @uses get_user_option() 253 * @uses apply_filters() 237 * 254 238 * @return string 255 239 */ … … 277 261 * @param int $user_id 278 262 * @param boolean $integer Optional. Whether or not to format the result 279 * @uses bbp_get_user_post_count()263 * 280 264 * @return string 281 265 */ … … 290 274 * @param int $user_id 291 275 * @param boolean $integer Optional. Whether or not to format the result 292 * @uses bbp_get_user_id() 293 * @uses get_user_option() 294 * @uses apply_filters() 276 * 295 277 * @return string 296 278 */ … … 346 328 * 347 329 * @param int $user_id User ID to retrieve value for 348 * @uses bbp_get_user_last_posted() To output the last posted time349 330 */ 350 331 function bbp_user_last_posted( $user_id = 0 ) {
Note: See TracChangeset
for help on using the changeset viewer.