[ Index ]

PHP Cross Reference of WordPress

title

Body

[close]

/wp-admin/includes/ -> default-list-tables.php (summary)

(no description)

File Size: 3279 lines (113 kb)
Included or required: 2 times
Referenced: 0 times
Includes or requires: 2 files
 wp-admin/includes/plugin-install.php
 wp-admin/includes/theme-install.php

Defines 12 classes

WP_Media_Table:: (13 methods):
  WP_Media_Table()
  check_permissions()
  prepare_items()
  get_views()
  get_bulk_actions()
  extra_tablenav()
  current_action()
  has_items()
  no_items()
  get_columns()
  get_sortable_columns()
  display_rows()
  display_orphans()

WP_Terms_Table:: (18 methods):
  WP_Terms_Table()
  check_permissions()
  prepare_items()
  get_bulk_actions()
  current_action()
  get_columns()
  get_sortable_columns()
  display_rows()
  _rows()
  single_row()
  column_cb()
  column_name()
  column_description()
  column_slug()
  column_posts()
  column_links()
  column_default()
  inline_edit()

WP_Users_Table:: (12 methods):
  WP_Users_Table()
  check_permissions()
  prepare_items()
  no_items()
  get_views()
  get_bulk_actions()
  extra_tablenav()
  current_action()
  get_columns()
  get_sortable_columns()
  display_rows()
  single_row()

WP_Comments_Table:: (17 methods):
  WP_Comments_Table()
  check_permissions()
  prepare_items()
  get_views()
  get_bulk_actions()
  extra_tablenav()
  current_action()
  get_columns()
  get_sortable_columns()
  display_table()
  single_row()
  column_cb()
  column_comment()
  column_author()
  column_date()
  column_response()
  column_default()

WP_Post_Comments_Table:: (2 methods):
  get_columns()
  get_sortable_columns()

WP_Links_Table:: (9 methods):
  WP_Links_Table()
  check_permissions()
  prepare_items()
  no_items()
  get_bulk_actions()
  extra_tablenav()
  get_columns()
  get_sortable_columns()
  display_rows()

WP_Sites_Table:: (9 methods):
  WP_Sites_Table()
  check_permissions()
  prepare_items()
  no_items()
  get_bulk_actions()
  pagination()
  get_columns()
  get_sortable_columns()
  display_rows()

WP_MS_Users_Table:: (9 methods):
  WP_MS_Users_Table()
  check_permissions()
  prepare_items()
  get_bulk_actions()
  no_items()
  pagination()
  get_columns()
  get_sortable_columns()
  display_rows()

WP_Plugins_Table:: (15 methods):
  WP_Plugins_Table()
  check_permissions()
  prepare_items()
  _search_callback()
  _order_callback()
  no_items()
  get_columns()
  get_sortable_columns()
  display_tablenav()
  get_views()
  get_bulk_actions()
  bulk_actions()
  extra_tablenav()
  current_action()
  display_rows()

WP_Plugin_Install_Table:: (9 methods):
  WP_Plugin_Install_Table()
  check_permissions()
  prepare_items()
  no_items()
  get_views()
  display_tablenav()
  get_table_classes()
  get_columns()
  display_rows()

WP_Themes_Table:: (8 methods):
  WP_Themes_Table()
  check_permissions()
  prepare_items()
  no_items()
  display_table()
  get_columns()
  display_rows()
  search_theme()

WP_Theme_Install_Table:: (8 methods):
  WP_Theme_Install_Table()
  check_permissions()
  prepare_items()
  no_items()
  get_views()
  get_columns()
  display_table()
  display_rows()


Class: WP_Media_Table  - X-Ref

List table classes

Each list-type admin screen has a class that handles the rendering of the list table.

WP_Media_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

get_views()   X-Ref
No description

get_bulk_actions()   X-Ref
No description

extra_tablenav( $which )   X-Ref
No description

current_action()   X-Ref
No description

has_items()   X-Ref
No description

no_items()   X-Ref
No description

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

display_rows()   X-Ref
No description

display_orphans()   X-Ref
No description

Class: WP_Terms_Table  - X-Ref

WP_Terms_Table()   X-Ref
No description

check_permissions( $type = 'manage' )   X-Ref
No description

prepare_items()   X-Ref
No description

get_bulk_actions()   X-Ref
No description

current_action()   X-Ref
No description

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

display_rows()   X-Ref
No description

_rows( $taxonomy, $terms, &$children, $start = 0, $per_page = 20, &$count, $parent = 0, $level = 0 )   X-Ref
No description

single_row( $tag, $level = 0 )   X-Ref
No description

column_cb( $tag )   X-Ref
No description

column_name( $tag )   X-Ref
No description

column_description( $tag )   X-Ref
No description

column_slug( $tag )   X-Ref
No description

column_posts( $tag )   X-Ref
No description

column_links( $tag )   X-Ref
No description

column_default( $tag, $column_name )   X-Ref
No description

inline_edit()   X-Ref
Outputs the hidden row displayed when inline editing


Class: WP_Users_Table  - X-Ref

WP_Users_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

no_items()   X-Ref
No description

get_views()   X-Ref
No description

get_bulk_actions()   X-Ref
No description

extra_tablenav( $which )   X-Ref
No description

current_action()   X-Ref
No description

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

display_rows()   X-Ref
No description

single_row( $user_object, $style = '', $role = '', $numposts = 0 )   X-Ref
Generate HTML for a single row on the users.php admin panel.

param: object $user_object
param: string $style Optional. Attributes added to the TR element.  Must be sanitized.
param: string $role Key for the $wp_roles array.
param: int $numposts Optional. Post count to display for this user.  Defaults to zero, as in, a new user has made zero posts.
return: string

Class: WP_Comments_Table  - X-Ref

WP_Comments_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

get_views()   X-Ref
No description

get_bulk_actions()   X-Ref
No description

extra_tablenav( $which )   X-Ref
No description

current_action()   X-Ref
No description

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

display_table()   X-Ref
No description

single_row( $a_comment )   X-Ref
No description

column_cb( $comment )   X-Ref
No description

column_comment( $comment )   X-Ref
No description

column_author( $comment )   X-Ref
No description

column_date( $comment )   X-Ref
No description

column_response( $comment )   X-Ref
No description

column_default( $comment, $column_name )   X-Ref
No description

Class: WP_Post_Comments_Table  - X-Ref

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

Class: WP_Links_Table  - X-Ref

WP_Links_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

no_items()   X-Ref
No description

get_bulk_actions()   X-Ref
No description

extra_tablenav( $which )   X-Ref
No description

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

display_rows()   X-Ref
No description

Class: WP_Sites_Table  - X-Ref

WP_Sites_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

no_items()   X-Ref
No description

get_bulk_actions()   X-Ref
No description

pagination( $which )   X-Ref
No description

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

display_rows()   X-Ref
No description

Class: WP_MS_Users_Table  - X-Ref

WP_MS_Users_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

get_bulk_actions()   X-Ref
No description

no_items()   X-Ref
No description

pagination( $which )   X-Ref
No description

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

display_rows()   X-Ref
No description

Class: WP_Plugins_Table  - X-Ref

WP_Plugins_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

_search_callback( $plugin )   X-Ref
No description

_order_callback( $plugin_a, $plugin_b )   X-Ref
No description

no_items()   X-Ref
No description

get_columns()   X-Ref
No description

get_sortable_columns()   X-Ref
No description

display_tablenav( $which )   X-Ref
No description

get_views()   X-Ref
No description

get_bulk_actions()   X-Ref
No description

bulk_actions( $which )   X-Ref
No description

extra_tablenav( $which )   X-Ref
No description

current_action()   X-Ref
No description

display_rows()   X-Ref
No description

Class: WP_Plugin_Install_Table  - X-Ref

WP_Plugin_Install_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

no_items()   X-Ref
No description

get_views()   X-Ref
No description

display_tablenav( $which )   X-Ref
No description

get_table_classes()   X-Ref
No description

get_columns()   X-Ref
No description

display_rows()   X-Ref
No description

Class: WP_Themes_Table  - X-Ref

WP_Themes_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

no_items()   X-Ref
No description

display_table()   X-Ref
No description

get_columns()   X-Ref
No description

display_rows()   X-Ref
No description

search_theme( $theme )   X-Ref
No description

Class: WP_Theme_Install_Table  - X-Ref

WP_Theme_Install_Table()   X-Ref
No description

check_permissions()   X-Ref
No description

prepare_items()   X-Ref
No description

no_items()   X-Ref
No description

get_views()   X-Ref
No description

get_columns()   X-Ref
No description

display_table()   X-Ref
No description

display_rows()   X-Ref
No description



Generated: Mon Oct 25 03:55:47 2010 Hosted by follow the white rabbit.