mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-07 09:49:04 +00:00
phpdoc for the various list table includes. see #14579.
git-svn-id: https://develop.svn.wordpress.org/trunk@15958 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user