Changeset 29459
- Timestamp:
- 08/10/2014 02:17:14 AM (10 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r29206 r29459 22 22 public $pending_count = array(); 23 23 24 /** 25 * Constructor. 26 * 27 * @since 3.1.0 28 * 29 * @see WP_List_Table::__construct() for more information on default arguments. 30 * 31 * @param array $args An associative array of arguments. 32 */ 24 33 public function __construct( $args = array() ) { 25 34 global $post_id; -
trunk/src/wp-admin/includes/class-wp-links-list-table.php
r29137 r29459 10 10 class WP_Links_List_Table extends WP_List_Table { 11 11 12 /** 13 * Constructor. 14 * 15 * @since 3.1.0 16 * 17 * @see WP_List_Table::__construct() for more information on default arguments. 18 * 19 * @param array $args An associative array of arguments. 20 */ 12 21 public function __construct( $args = array() ) { 13 22 parent::__construct( array( -
trunk/src/wp-admin/includes/class-wp-list-table.php
r29454 r29459 3 3 * Base class for displaying a list of items in an ajaxified HTML table. 4 4 * 5 * @since 3.1.0 6 * @access private 7 * 5 8 * @package WordPress 6 9 * @subpackage List_Table 7 * @since 3.1.08 * @access private9 10 */ 10 11 class WP_List_Table { … … 65 66 66 67 /** 67 * Constructor. The child class should call this constructor from its own constructor 68 * 69 * @param array $args An associative array with information about the current table 70 * @access protected 71 */ 68 * Constructor. 69 * 70 * The child class should call this constructor from its own constructor to override 71 * the default $args. 72 * 73 * @since 3.1.0 74 * 75 * @param array|string $args { 76 * Array or string of arguments. 77 * 78 * @type string $plural Plural value used for labels and the objects being listed. 79 * This affects things such as CSS class-names and nonces used 80 * in the list table, e.g. 'posts'. Default empty. 81 * @type string $singular Singular label for an object being listed, e.g. 'post'. 82 * Default empty 83 * @type bool $ajax Whether the list table supports AJAX. This includes loading 84 * and sorting data, for example. If true, the class will call 85 * the {@see _js_vars()} method in the footer to provide variables 86 * to any scripts handling AJAX events. Default false. 87 * @type string $screen String containing the hook name used to determine the current 88 * screen. If left null, the current screen will be automatically set. 89 * Default null. 90 * } 91 */ 72 92 public function __construct( $args = array() ) { 73 93 $args = wp_parse_args( $args, array( -
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r29320 r29459 10 10 class WP_Media_List_Table extends WP_List_Table { 11 11 12 /** 13 * Constructor. 14 * 15 * @since 3.1.0 16 * 17 * @see WP_List_Table::__construct() for more information on default arguments. 18 * 19 * @param array $args An associative array of arguments. 20 */ 12 21 public function __construct( $args = array() ) { 13 22 $this->detached = isset( $_REQUEST['detached'] ) || isset( $_REQUEST['find_detached'] ); -
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r29206 r29459 10 10 class WP_MS_Sites_List_Table extends WP_List_Table { 11 11 12 /** 13 * Constructor. 14 * 15 * @since 3.1.0 16 * 17 * @see WP_List_Table::__construct() for more information on default arguments. 18 * 19 * @param array $args An associative array of arguments. 20 */ 12 21 public function __construct( $args = array() ) { 13 22 parent::__construct( array( -
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r29206 r29459 13 13 public $is_site_themes; 14 14 15 /** 16 * Constructor. 17 * 18 * @since 3.1.0 19 * 20 * @see WP_List_Table::__construct() for more information on default arguments. 21 * 22 * @param array $args An associative array of arguments. 23 */ 15 24 public function __construct( $args = array() ) { 16 25 global $status, $page; -
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r29453 r29459 10 10 class WP_Plugins_List_Table extends WP_List_Table { 11 11 12 /** 13 * Constructor. 14 * 15 * @since 3.1.0 16 * 17 * @see WP_List_Table::__construct() for more information on default arguments. 18 * 19 * @param array $args An associative array of arguments. 20 */ 12 21 public function __construct( $args = array() ) { 13 22 global $status, $page; -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r29206 r29459 46 46 private $sticky_posts_count = 0; 47 47 48 /** 49 * Constructor. 50 * 51 * @since 3.1.0 52 * 53 * @see WP_List_Table::__construct() for more information on default arguments. 54 * 55 * @param array $args An associative array of arguments. 56 */ 48 57 public function __construct( $args = array() ) { 49 58 global $post_type_object, $wpdb; -
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r29343 r29459 12 12 public $callback_args; 13 13 14 /** 15 * Constructor. 16 * 17 * @since 3.1.0 18 * 19 * @see WP_List_Table::__construct() for more information on default arguments. 20 * 21 * @param array $args An associative array of arguments. 22 */ 14 23 public function __construct( $args = array() ) { 15 24 global $post_type, $taxonomy, $action, $tax; -
trunk/src/wp-admin/includes/class-wp-themes-list-table.php
r29206 r29459 13 13 public $features = array(); 14 14 15 /** 16 * Constructor. 17 * 18 * @since 3.1.0 19 * 20 * @see WP_List_Table::__construct() for more information on default arguments. 21 * 22 * @param array $args An associative array of arguments. 23 */ 15 24 public function __construct( $args = array() ) { 16 25 parent::__construct( array( -
trunk/src/wp-admin/includes/class-wp-users-list-table.php
r29137 r29459 31 31 /** 32 32 * Constructor. 33 * 34 * @since 3.1.0 35 * @access public 36 */ 33 * 34 * @since 3.1.0 35 * 36 * @see WP_List_Table::__construct() for more information on default arguments. 37 * 38 * @param array $args An associative array of arguments. 39 */ 37 40 public function __construct( $args = array() ) { 38 41 parent::__construct( array(
Note: See TracChangeset
for help on using the changeset viewer.