Make WordPress Core


Ignore:
Timestamp:
12/01/2014 12:32:19 AM (10 years ago)
Author:
wonderboymusic
Message:

Improve various @param docs for List Tables.

See #30224.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-posts-list-table.php

    r30648 r30679  
    218218    }
    219219
     220    /**
     221     * @global int $cat
     222     * @param string $which
     223     */
    220224    protected function extra_tablenav( $which ) {
    221225        global $cat;
     
    269273    }
    270274
     275    /**
     276     * @global string $mode
     277     * @param string $which
     278     */
    271279    protected function pagination( $which ) {
    272280        global $mode;
     
    376384    }
    377385
     386    /**
     387     * @global WP_Query $wp_query
     388     * @global int $per_page
     389     * @param array $posts
     390     * @param int $level
     391     */
    378392    public function display_rows( $posts = array(), $level = 0 ) {
    379393        global $wp_query, $per_page;
     
    391405    }
    392406
     407    /**
     408     * @global string $mode
     409     * @param array $posts
     410     * @param int $level
     411     */
    393412    private function _display_rows( $posts, $level = 0 ) {
    394413        global $mode;
     
    406425    }
    407426
     427    /**
     428     * @global wpdb $wpdb
     429     * @param array $pages
     430     * @param int $pagenum
     431     * @param int $per_page
     432     * @return bool|null
     433     */
    408434    private function _display_rows_hierarchical( $pages, $pagenum = 1, $per_page = 20 ) {
    409435        global $wpdb;
     
    543569    }
    544570
     571    /**
     572     * @global string $mode
     573     * @staticvar string $alternate
     574     * @param WP_Post $post
     575     * @param int $level
     576     */
    545577    public function single_row( $post, $level = 0 ) {
    546578        global $mode;
Note: See TracChangeset for help on using the changeset viewer.