[ Index ]

PHP Cross Reference of WordPress

title

Body

[close]

/wp-admin/includes/ -> class-wp-list-table.php (summary)

Administration API: WP_List_Table class

File Size: 1522 lines (42 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

WP_List_Table:: (46 methods):
  __construct()
  __get()
  __set()
  __isset()
  __unset()
  __call()
  ajax_user_can()
  prepare_items()
  set_pagination_args()
  get_pagination_arg()
  has_items()
  no_items()
  search_box()
  get_views()
  views()
  get_bulk_actions()
  bulk_actions()
  current_action()
  row_actions()
  months_dropdown()
  view_switcher()
  comments_bubble()
  get_pagenum()
  get_items_per_page()
  pagination()
  get_columns()
  get_sortable_columns()
  get_default_primary_column_name()
  get_primary_column()
  get_primary_column_name()
  get_column_info()
  get_column_count()
  print_column_headers()
  display()
  get_table_classes()
  display_tablenav()
  extra_tablenav()
  display_rows_or_placeholder()
  display_rows()
  single_row()
  column_default()
  column_cb()
  single_row_columns()
  handle_row_actions()
  ajax_response()
  _js_vars()


Class: WP_List_Table  - X-Ref

Base class for displaying a list of items in an ajaxified HTML table.

__construct( $args = array()   X-Ref
Constructor.

The child class should call this constructor from its own constructor to override
the default $args.

since: 3.1.0
param: array|string $args {

__get( $name )   X-Ref
Make private properties readable for backward compatibility.

since: 4.0.0
return: mixed Property.
param: string $name Property to get.

__set( $name, $value )   X-Ref
Make private properties settable for backward compatibility.

since: 4.0.0
return: mixed Newly-set property.
param: string $name  Property to check if set.
param: mixed  $value Property value.

__isset( $name )   X-Ref
Make private properties checkable for backward compatibility.

since: 4.0.0
return: bool Whether the property is a back-compat property and it is set.
param: string $name Property to check if set.

__unset( $name )   X-Ref
Make private properties un-settable for backward compatibility.

since: 4.0.0
param: string $name Property to unset.

__call( $name, $arguments )   X-Ref
Make private/protected methods readable for backward compatibility.

since: 4.0.0
return: mixed|bool Return value of the callback, false otherwise.
param: string $name      Method to call.
param: array  $arguments Arguments to pass when calling.

ajax_user_can()   X-Ref
Checks the current user's permissions

since: 3.1.0

prepare_items()   X-Ref
Prepares the list of items for displaying.

since: 3.1.0

set_pagination_args( $args )   X-Ref
An internal method that sets all the necessary pagination arguments

since: 3.1.0
param: array|string $args Array or string of arguments with information about the pagination.

get_pagination_arg( $key )   X-Ref
Access the pagination args.

since: 3.1.0
return: int Number of items that correspond to the given pagination argument.
param: string $key Pagination argument to retrieve. Common values include 'total_items',

has_items()   X-Ref
Whether the table has items to display or not

since: 3.1.0
return: bool

no_items()   X-Ref
Message to be displayed when there are no items

since: 3.1.0

search_box( $text, $input_id )   X-Ref
Displays the search box.

since: 3.1.0
param: string $text     The 'submit' button label.
param: string $input_id ID attribute value for the search input field.

get_views()   X-Ref
Gets the list of views available on this table.

The format is an associative array:
- `'id' => 'link'`

since: 3.1.0
return: array

views()   X-Ref
Displays the list of views available on this table.

since: 3.1.0

get_bulk_actions()   X-Ref
Retrieves the list of bulk actions available for this table.

The format is an associative array where each element represents either a top level option value and label, or
an array representing an optgroup and its options.

For a standard option, the array element key is the field value and the array element value is the field label.

For an optgroup, the array element key is the label and the array element value is an associative array of
options as above.

Example:

[
'edit'         => 'Edit',
'delete'       => 'Delete',
'Change State' => [
'feature' => 'Featured',
'sale'    => 'On Sale',
]
]

since: 3.1.0
since: 5.6.0 A bulk action can now contain an array of options in order to create an optgroup.
return: array

bulk_actions( $which = '' )   X-Ref
Displays the bulk actions dropdown.

since: 3.1.0
param: string $which The location of the bulk actions: 'top' or 'bottom'.

current_action()   X-Ref
Gets the current action selected from the bulk actions dropdown.

since: 3.1.0
return: string|false The action name. False if no action was selected.

row_actions( $actions, $always_visible = false )   X-Ref
Generates the required HTML for a list of row action links.

since: 3.1.0
return: string The HTML for the row actions.
param: string[] $actions        An array of action links.
param: bool     $always_visible Whether the actions should be always visible.

months_dropdown( $post_type )   X-Ref
Displays a dropdown for filtering items in the list table by month.

since: 3.1.0
param: string $post_type The post type.

view_switcher( $current_mode )   X-Ref
Displays a view switcher.

since: 3.1.0
param: string $current_mode

comments_bubble( $post_id, $pending_comments )   X-Ref
Displays a comment count bubble.

since: 3.1.0
param: int $post_id          The post ID.
param: int $pending_comments Number of pending comments.

get_pagenum()   X-Ref
Gets the current page number.

since: 3.1.0
return: int

get_items_per_page( $option, $default_value = 20 )   X-Ref
Gets the number of items to display on a single page.

since: 3.1.0
return: int
param: string $option        User option name.
param: int    $default_value Optional. The number of items to display. Default 20.

pagination( $which )   X-Ref
Displays the pagination.

since: 3.1.0
param: string $which

get_columns()   X-Ref
Gets a list of columns.

The format is:
- `'internal-name' => 'Title'`

since: 3.1.0
return: array

get_sortable_columns()   X-Ref
Gets a list of sortable columns.

The format is:
- `'internal-name' => 'orderby'`
- `'internal-name' => array( 'orderby', 'asc' )` - The second element sets the initial sorting order.
- `'internal-name' => array( 'orderby', true )`  - The second element makes the initial order descending.

since: 3.1.0
return: array

get_default_primary_column_name()   X-Ref
Gets the name of the default primary column.

since: 4.3.0
return: string Name of the default primary column, in this case, an empty string.

get_primary_column()   X-Ref
Public wrapper for WP_List_Table::get_default_primary_column_name().

since: 4.4.0
return: string Name of the default primary column.

get_primary_column_name()   X-Ref
Gets the name of the primary column.

since: 4.3.0
return: string The name of the primary column.

get_column_info()   X-Ref
Gets a list of all, hidden, and sortable columns, with filter applied.

since: 3.1.0
return: array

get_column_count()   X-Ref
Returns the number of visible columns.

since: 3.1.0
return: int

print_column_headers( $with_id = true )   X-Ref
Prints column headers, accounting for hidden and sortable columns.

since: 3.1.0
param: bool $with_id Whether to set the ID attribute or not

display()   X-Ref
Displays the table.

since: 3.1.0

get_table_classes()   X-Ref
Gets a list of CSS classes for the WP_List_Table table tag.

since: 3.1.0
return: string[] Array of CSS classes for the table tag.

display_tablenav( $which )   X-Ref
Generates the table navigation above or below the table

since: 3.1.0
param: string $which

extra_tablenav( $which )   X-Ref
Extra controls to be displayed between bulk actions and pagination.

since: 3.1.0
param: string $which

display_rows_or_placeholder()   X-Ref
Generates the tbody element for the list table.

since: 3.1.0

display_rows()   X-Ref
Generates the table rows.

since: 3.1.0

single_row( $item )   X-Ref
Generates content for a single row of the table.

since: 3.1.0
param: object|array $item The current item

column_default( $item, $column_name )   X-Ref

param: object|array $item
param: string $column_name

column_cb( $item )   X-Ref

param: object|array $item

single_row_columns( $item )   X-Ref
Generates the columns for a single row of the table.

since: 3.1.0
param: object|array $item The current item.

handle_row_actions( $item, $column_name, $primary )   X-Ref
Generates and display row actions links for the list table.

since: 4.3.0
return: string The row actions HTML, or an empty string
param: object|array $item        The item being acted upon.
param: string       $column_name Current column name.
param: string       $primary     Primary column name.

ajax_response()   X-Ref
Handles an incoming ajax request (called from admin-ajax.php)

since: 3.1.0

_js_vars()   X-Ref
Sends required variables to JavaScript land.

since: 3.1.0



Generated: Thu Apr 25 01:00:03 2024 Cross-referenced by PHPXref 0.7.1