PATH:
home
/
letacommog
/
supportleta
/
wp-admin
/
includes
<?php /** * Helper functions for displaying a list of items in an ajaxified HTML table. * * @package WordPress * @subpackage List_Table * @since 3.1.0 */ /** * Fetch an instance of a WP_List_Table class. * * @access private * @since 3.1.0 * * @global string $hook_suffix * * @param string $class The type of the list table, which is the class name. * @param array $args Optional. Arguments to pass to the class. Accepts 'screen'. * @return object|bool Object on success, false if the class does not exist. */ function _get_list_table( $class, $args = array() ) { $core_classes = array( //Site Admin 'WP_Posts_List_Table' => 'posts', 'WP_Media_List_Table' => 'media', 'WP_Terms_List_Table' => 'terms', 'WP_Users_List_Table' => 'users', 'WP_Comments_List_Table' => 'comments', 'WP_Post_Comments_List_Table' => array( 'comments', 'post-comments' ), 'WP_Links_List_Table' => 'links', 'WP_Plugin_Install_List_Table' => 'plugin-install', 'WP_Themes_List_Table' => 'themes', 'WP_Theme_Install_List_Table' => array( 'themes', 'theme-install' ), 'WP_Plugins_List_Table' => 'plugins', // Network Admin 'WP_MS_Sites_List_Table' => 'ms-sites', 'WP_MS_Users_List_Table' => 'ms-users', 'WP_MS_Themes_List_Table' => 'ms-themes', ); if ( isset( $core_classes[ $class ] ) ) { foreach ( (array) $core_classes[ $class ] as $required ) require_once( ABSPATH . 'wp-admin/includes/class-wp-' . $required . '-list-table.php' ); if ( isset( $args['screen'] ) ) $args['screen'] = convert_to_screen( $args['screen'] ); elseif ( isset( $GLOBALS['hook_suffix'] ) ) $args['screen'] = get_current_screen(); else $args['screen'] = null; return new $class( $args ); } return false; } /** * Register column headers for a particular screen. * * @since 2.7.0 * * @param string $screen The handle for the screen to add help to. This is usually the hook name returned by the add_*_page() functions. * @param array $columns An array of columns with column IDs as the keys and translated column names as the values * @see get_column_headers(), print_column_headers(), get_hidden_columns() */ function register_column_headers($screen, $columns) { new _WP_List_Table_Compat( $screen, $columns ); } /** * Prints column headers for a particular screen. * * @since 2.7.0 * * @param string|WP_Screen $screen The screen hook name or screen object. * @param bool $with_id Whether to set the id attribute or not. */ function print_column_headers( $screen, $with_id = true ) { $wp_list_table = new _WP_List_Table_Compat($screen); $wp_list_table->print_column_headers( $with_id ); }
[+]
..
[-] taxonomy.php
[edit]
[-] ajax-actions.php
[edit]
[-] class-wp-ajax-upgrader-skin.php
[edit]
[-] class-wp-list-table-compat.php
[edit]
[-] deprecated.php
[edit]
[-] class-wp-screen.php
[edit]
[-] media.php
[edit]
[-] list-table.php
[edit]
[-] edit-tag-messages.php
[edit]
[-] class-wp-ms-users-list-table.php
[edit]
[-] class-wp-filesystem-ssh2.php
[edit]
[-] user.php
[edit]
[-] class-ftp-sockets.php
[edit]
[-] widgets.php
[edit]
[-] noop.php
[edit]
[-] class-automatic-upgrader-skin.php
[edit]
[-] class-wp-upgrader-skins.php
[edit]
[-] class-wp-filesystem-ftpsockets.php
[edit]
[-] export.php
[edit]
[-] translation-install.php
[edit]
[-] template.php
[edit]
[-] image.php
[edit]
[-] admin.php
[edit]
[-] misc.php
[edit]
[-] class-wp-importer.php
[edit]
[-] continents-cities.php
[edit]
[-] class-wp-ms-themes-list-table.php
[edit]
[-] class-bulk-upgrader-skin.php
[edit]
[-] class-wp-list-table.php
[edit]
[-] class-theme-upgrader.php
[edit]
[-] network.php
[edit]
[-] class-wp-links-list-table.php
[edit]
[-] class-plugin-upgrader.php
[edit]
[-] class-wp-post-comments-list-table.php
[edit]
[-] bookmark.php
[edit]
[-] options.php
[edit]
[-] class-plugin-upgrader-skin.php
[edit]
[-] class-wp-automatic-updater.php
[edit]
[-] class-theme-installer-skin.php
[edit]
[-] class-wp-theme-install-list-table.php
[edit]
[-] revision.php
[edit]
[-] plugin.php
[edit]
[-] class-wp-plugin-install-list-table.php
[edit]
[-] class-wp-media-list-table.php
[edit]
[-] class-walker-category-checklist.php
[edit]
[-] desktop.ini
[edit]
[-] class-wp-plugins-list-table.php
[edit]
[-] admin-filters.php
[edit]
[-] class-bulk-plugin-upgrader-skin.php
[edit]
[-] class-ftp-pure.php
[edit]
[-] comment.php
[edit]
[-] class-walker-nav-menu-edit.php
[edit]
[-] credits.php
[edit]
[-] class-wp-themes-list-table.php
[edit]
[-] schema.php
[edit]
[-] nav-menu.php
[edit]
[-] class-wp-filesystem-ftpext.php
[edit]
[-] class-ftp.php
[edit]
[-] theme.php
[edit]
[-] class-wp-filesystem-direct.php
[edit]
[-] upgrade.php
[edit]
[-] class-wp-upgrader.php
[edit]
[-] import.php
[edit]
[-] class-wp-site-icon.php
[edit]
[-] meta-boxes.php
[edit]
[-] class-wp-posts-list-table.php
[edit]
[-] class-bulk-theme-upgrader-skin.php
[edit]
[-] class-walker-nav-menu-checklist.php
[edit]
[-] class-plugin-installer-skin.php
[edit]
[-] update-core.php
[edit]
[-] class-core-upgrader.php
[edit]
[-] ms.php
[edit]
[-] class-wp-community-events.php
[edit]
[-] class-wp-upgrader-skin.php
[edit]
[-] ms-deprecated.php
[edit]
[-] menu.php
[edit]
[-] file.php
[edit]
[-] class-wp-users-list-table.php
[edit]
[-] class-wp-terms-list-table.php
[edit]
[-] class-language-pack-upgrader.php
[edit]
[-] ms-admin-filters.php
[edit]
[-] plugin-install.php
[edit]
[-] update.php
[edit]
[-] class-theme-upgrader-skin.php
[edit]
[-] theme-install.php
[edit]
[-] class-wp-comments-list-table.php
[edit]
[-] dashboard.php
[edit]
[-] class-language-pack-upgrader-skin.php
[edit]
[-] class-file-upload-upgrader.php
[edit]
[-] class-wp-ms-sites-list-table.php
[edit]
[-] class-wp-filesystem-base.php
[edit]
[-] image-edit.php
[edit]
[-] post.php
[edit]
[-] class-pclzip.php
[edit]
[-] class-wp-internal-pointers.php
[edit]
[-] screen.php
[edit]