Changeset 34822 for trunk/src/wp-admin/includes/deprecated.php
- Timestamp:
- 10/05/2015 02:34:47 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/deprecated.php
r34821 r34822 508 508 509 509 /** 510 * {@internal Missing Short Description}} 511 * 512 * {@internal Missing Long Description}} 510 * Prepares the user search query (legacy). 513 511 * 514 512 * @since 2.1.0 515 513 * @access public 516 514 */ 517 function prepare_query() {515 public function prepare_query() { 518 516 global $wpdb; 519 517 $this->first_user = ($this->page - 1) * $this->users_per_page; … … 548 546 549 547 /** 550 * {@internal Missing Short Description}} 551 * 552 * {@internal Missing Long Description}} 548 * Executes the user search query. 553 549 * 554 550 * @since 2.1.0 555 551 * @access public 556 552 */ 557 function query() {553 public function query() { 558 554 global $wpdb; 559 555 … … 567 563 568 564 /** 569 * {@internal Missing Short Description}} 570 * 571 * {@internal Missing Long Description}} 565 * Prepares variables for use in templates. 572 566 * 573 567 * @since 2.1.0 … … 577 571 578 572 /** 579 * {@internal Missing Short Description}} 580 * 581 * {@internal Missing Long Description}} 573 * Handles paging for the user search query. 582 574 * 583 575 * @since 2.1.0 584 576 * @access public 585 577 */ 586 function do_paging() {578 public function do_paging() { 587 579 if ( $this->total_users_for_query > $this->users_per_page ) { // have to page the results 588 580 $args = array(); … … 611 603 612 604 /** 613 * {@internal Missing Short Description}} 614 * 615 * {@internal Missing Long Description}} 605 * Retrieves the user search query results. 616 606 * 617 607 * @since 2.1.0 … … 620 610 * @return array 621 611 */ 622 function get_results() {612 public function get_results() { 623 613 return (array) $this->results; 624 614 }
Note: See TracChangeset
for help on using the changeset viewer.