Changeset 29137 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 07/13/2014 10:08:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r29133 r29137 334 334 * 335 335 * @since 3.1.0 336 * @access p ublic337 */ 338 p ublicfunction bulk_actions() {336 * @access protected 337 */ 338 protected function bulk_actions() { 339 339 if ( is_null( $this->_actions ) ) { 340 340 $no_new_actions = $this->_actions = $this->get_bulk_actions(); … … 763 763 * 764 764 * @since 3.1.0 765 * @access p rotected765 * @access public 766 766 * 767 767 * @param bool $with_id Whether to set the id attribute or not 768 768 */ 769 p rotectedfunction print_column_headers( $with_id = true ) {769 public function print_column_headers( $with_id = true ) { 770 770 list( $columns, $hidden, $sortable ) = $this->get_column_info(); 771 771 … … 914 914 * 915 915 * @since 3.1.0 916 * @access p rotected917 */ 918 p rotectedfunction display_rows_or_placeholder() {916 * @access public 917 */ 918 public function display_rows_or_placeholder() { 919 919 if ( $this->has_items() ) { 920 920 $this->display_rows(); … … 930 930 * 931 931 * @since 3.1.0 932 * @access p rotected933 */ 934 p rotectedfunction display_rows() {932 * @access public 933 */ 934 public function display_rows() { 935 935 foreach ( $this->items as $item ) 936 936 $this->single_row( $item ); … … 941 941 * 942 942 * @since 3.1.0 943 * @access p rotected943 * @access public 944 944 * 945 945 * @param object $item The current item 946 946 */ 947 p rotectedfunction single_row( $item ) {947 public function single_row( $item ) { 948 948 static $row_class = ''; 949 949 $row_class = ( $row_class == '' ? ' class="alternate"' : '' ); … … 1029 1029 * Send required variables to JavaScript land 1030 1030 * 1031 * @access p rivate1032 */ 1033 p rivatefunction _js_vars() {1031 * @access public 1032 */ 1033 public function _js_vars() { 1034 1034 $args = array( 1035 1035 'class' => get_class( $this ),
Note: See TracChangeset
for help on using the changeset viewer.