- Timestamp:
- 07/13/2015 05:48:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r33117 r33197 49 49 50 50 /** 51 * Current level for output. 52 * 51 53 * @since 4.3.0 54 * @access protected 52 55 * @var int 53 56 */ … … 678 681 679 682 /** 683 * Handles the checkbox column output. 684 * 680 685 * @since 4.3.0 681 * 682 * @param WP_Post $post 686 * @access public 687 * 688 * @param WP_Post $post The current WP_Post object. 683 689 */ 684 690 public function column_cb( $post ) { … … 693 699 694 700 /** 701 * Handles the title column output. 702 * 695 703 * @since 4.3.0 704 * @access public 696 705 * 697 706 * @global string $mode 698 707 * 699 * @param WP_Post $post 708 * @param WP_Post $post The current WP_Post object. 700 709 */ 701 710 public function column_title( $post ) { … … 773 782 774 783 /** 784 * Handles the post date column output. 785 * 775 786 * @since 4.3.0 787 * @access public 776 788 * 777 789 * @global string $mode 778 790 * 779 * @param WP_Post $post 791 * @param WP_Post $post The current WP_Post object. 780 792 */ 781 793 public function column_date( $post ) { … … 835 847 836 848 /** 849 * Handles the comments column output. 850 * 837 851 * @since 4.3.0 838 * 839 * @param WP_Post $post 852 * @access public 853 * 854 * @param WP_Post $post The current WP_Post object. 840 855 */ 841 856 public function column_comments( $post ) { … … 852 867 853 868 /** 869 * Handles the post author column output. 870 * 854 871 * @since 4.3.0 855 * 856 * @param WP_Post $post 872 * @access public 873 * 874 * @param WP_Post $post The current WP_Post object. 857 875 */ 858 876 public function column_author( $post ) { … … 864 882 865 883 /** 884 * Handles the default column output. 885 * 866 886 * @since 4.3.0 867 * 868 * @param WP_Post $post 869 * @param string $column_name 887 * @access public 888 * 889 * @param WP_Post $post The current WP_Post object. 890 * @param string $column_name The current column name. 870 891 */ 871 892 public function column_default( $post, $column_name ) { … … 953 974 954 975 /** 976 * Handles columns output for a single row in the table. 977 * 955 978 * @since 4.3.0 956 * 957 * @param WP_Post $item 979 * @access public 980 * 981 * @param WP_Post $item The current WP_Post object. 958 982 */ 959 983 public function single_row_columns( $item ) { … … 1038 1062 1039 1063 /** 1040 * Get the name of the default primary column.1064 * Gets the name of the default primary column. 1041 1065 * 1042 1066 * @since 4.3.0 … … 1050 1074 1051 1075 /** 1052 * Generate and display row actionslinks.1076 * Generates and displays row action links. 1053 1077 * 1054 1078 * @since 4.3.0
Note: See TracChangeset
for help on using the changeset viewer.