Changeset 9877 for trunk/src/bp-members/admin/bp-members-admin-classes.php
- Timestamp:
- 05/19/2015 01:40:26 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/admin/bp-members-admin-classes.php
r9819 r9877 110 110 * 111 111 * @since BuddyPress (2.0.0) 112 * 113 * @param array $which 112 114 */ 113 115 public function extra_tablenav( $which ) { … … 116 118 117 119 /** 118 * Specific signups columns 120 * Specific signups columns. 119 121 * 120 122 * @since BuddyPress (2.0.0) … … 216 218 * 217 219 * @see WP_List_Table::single_row() for explanation of params. 220 * 221 * @param object|null $signup_object Signup user object. 222 * @param string $style Styles for the row. 223 * @param string $role Role to be assigned to user. 224 * @param int $numposts Numper of posts. 225 * 226 * @return string 218 227 */ 219 228 public function single_row( $signup_object = null, $style = '', $role = '', $numposts = 0 ) { … … 349 358 * 350 359 * @since BuddyPress (2.0.0) 360 * 361 * @param object $signup_object Signup object instance. 362 * 363 * @return int 351 364 */ 352 365 public function column_count_sent( $signup_object = null ) { … … 359 372 * @since BuddyPress (2.1.0) 360 373 * 361 * @param object $signup_object The signup data object. 362 * @param string the column name. 374 * @param object|null $signup_object The signup data object. 375 * @param string $column_name The column name. 376 * 377 * @return string 363 378 */ 364 379 function column_default( $signup_object = null, $column_name = '' ) { … … 458 473 * @since BuddyPress (2.0.0) 459 474 * 460 * @uses WP_MS_Users_List_Table::get_views() to get the users views 475 * @uses WP_MS_Users_List_Table::get_views() to get the users views. 461 476 */ 462 477 public function get_views() { … … 471 486 472 487 /** 473 * Specific signups columns 488 * Specific signups columns. 474 489 * 475 490 * @since BuddyPress (2.0.0) … … 496 511 497 512 /** 498 * Specific bulk actions for signups 513 * Specific bulk actions for signups. 499 514 * 500 515 * @since BuddyPress (2.0.0) … … 535 550 536 551 /** 537 * The columns signups can be reordered with 552 * The columns signups can be reordered with. 538 553 * 539 554 * @since BuddyPress (2.0.0) … … 566 581 * 567 582 * @see WP_List_Table::single_row() for explanation of params. 583 * 584 * @param object|null $signup_object Signup user object. 585 * @param string $style Styles for the row. 568 586 */ 569 587 public function single_row( $signup_object = null, $style = '' ) { … … 578 596 * @since BuddyPress (2.0.0) 579 597 * 580 * @param object $signup_object The signup data object.598 * @param object|null $signup_object The signup data object. 581 599 */ 582 600 public function column_cb( $signup_object = null ) { … … 667 685 668 686 /** 669 * Display registration date 687 * Display registration date. 670 688 * 671 689 * @since BuddyPress (2.0.0) … … 689 707 * 690 708 * @since BuddyPress (2.0.0) 709 * 710 * @param object|null $signup_object Signup object instance. 691 711 */ 692 712 public function column_date_sent( $signup_object = null ) { … … 706 726 * 707 727 * @since BuddyPress (2.0.0) 728 * 729 * @param object|null $signup_object Signup object instance. 708 730 */ 709 731 public function column_count_sent( $signup_object = null ) { … … 716 738 * @since BuddyPress 2.1.0 717 739 * 718 * @param object $signup_object The signup data object. 719 * @param string the column name. 740 * @param object|null $signup_object The signup data object. 741 * @param string $column_name The column name. 742 * 743 * @return string 720 744 */ 721 745 function column_default( $signup_object = null, $column_name = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.