phpdoc for the various list table includes. see #14579.
git-svn-id: http://svn.automattic.com/wordpress/trunk@15958 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
76b4a3cac7
commit
8303b3c14a
|
@ -1,9 +1,17 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Base class for displaying a list of items as an ajaxified html table
|
||||
* Base class and helper functions for displaying a list of items in an ajaxified HTML table.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Base class for displaying a list of items in an ajaxified HTML table.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
class WP_List_Table {
|
||||
|
@ -811,7 +819,7 @@ class WP_List_Table {
|
|||
}
|
||||
|
||||
/**
|
||||
* Fetch an instance of a WP_List_Table class
|
||||
* Fetch an instance of a WP_List_Table class.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
|
|
|
@ -1,14 +1,21 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Comments and Post Comments List Table classes.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Post Comments List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*
|
||||
* @see WP_Comments_Table
|
||||
*/
|
||||
class WP_Post_Comments_Table extends WP_Comments_Table {
|
||||
|
||||
function get_columns() {
|
||||
|
@ -23,6 +30,13 @@ class WP_Post_Comments_Table extends WP_Comments_Table {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Comments List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
class WP_Comments_Table extends WP_List_Table {
|
||||
|
||||
var $checkbox = true;
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Links Manager List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Links_Table extends WP_List_Table {
|
||||
|
||||
function WP_Links_Table() {
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Media Library List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Media_Table extends WP_List_Table {
|
||||
|
||||
function WP_Media_Table() {
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Multisite Users List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_MS_Users_Table extends WP_List_Table {
|
||||
|
||||
function WP_MS_Users_Table() {
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Plugin Installer List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Plugin_Install_Table extends WP_List_Table {
|
||||
|
||||
function WP_Plugin_Install_Table() {
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Plugins List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Plugins_Table extends WP_List_Table {
|
||||
|
||||
function WP_Plugins_Table() {
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Posts List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Posts_Table extends WP_List_Table {
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Sites List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Sites_Table extends WP_List_Table {
|
||||
|
||||
function WP_Sites_Table() {
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Terms List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Terms_Table extends WP_List_Table {
|
||||
|
||||
var $callback_args;
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Theme Installer List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Theme_Install_Table extends WP_List_Table {
|
||||
|
||||
function WP_Theme_Install_Table() {
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Themes List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Themes_Table extends WP_List_Table {
|
||||
|
||||
var $search = array();
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List table classes
|
||||
*
|
||||
* Each list-type admin screen has a class that handles the rendering of the list table.
|
||||
* Users List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
class WP_Users_Table extends WP_List_Table {
|
||||
|
||||
function WP_Users_Table() {
|
||||
|
|
Loading…
Reference in New Issue