Lines:
1 to 55 of 55
<?php // (C) Copyright Bobbing Wide 2014, 2015 /* class BW_List_Table */ /* function BW_List_Table::__construct() – Constructor. */ /* function BW_List_Table::__get() – Make private properties readable for backwards compatibility. */ /* function BW_List_Table::__set() – Make private properties settable for backwards compatibility. */ /* function BW_List_Table::__isset() – Make private properties checkable for backwards compatibility. */ /* function BW_List_Table::__unset() – Make private properties un-settable for backwards compatibility. */ /* function BW_List_Table::__call() – Make private/protected methods readable for backwards compatibility. */ /* function BW_List_Table::ajax_user_can() – Checks the current user’s permissions */ /* function BW_List_Table::prepare_items() – Prepares the list of items for displaying. */ /* function BW_List_Table::set_pagination_args() – An internal method that sets all the necessary pagination arguments */ /* function BW_List_Table::get_pagination_arg() – Access the pagination args. */ /* function BW_List_Table::has_items() – Whether the table has items to display or not */ /* function BW_List_Table::no_items() – Message to be displayed when there are no items */ /* function BW_List_Table::search_box() – Display the search box. */ /* function BW_List_Table::get_views() – Get an associative array ( id => link ) with the list of views available on this table. */ /* function BW_List_Table::views() – Display the list of views available on this table. */ /* function BW_List_Table::get_bulk_actions() – Get an associative array ( option_name => option_title ) with the list of bulk actions available on this table. */ /* function BW_List_Table::bulk_actions() – Display the bulk actions dropdown. */ /* function BW_List_Table::current_action() – Get the current action selected from the bulk actions dropdown. */ /* function BW_List_Table::row_actions() – Generate row actions div */ /* function BW_List_Table::months_dropdown() – Display a monthly dropdown for filtering items */ /* function BW_List_Table::view_switcher() – Display a view switcher */ /* function BW_List_Table::comments_bubble() – Display a comment count bubble */ /* function BW_List_Table::get_pagenum() – Get the current page number */ /* function BW_List_Table::get_items_per_page() – Get number of items to display on a single page */ /* function BW_List_Table::pagination() – Display the pagination. */ /* function BW_List_Table::get_columns() – Get a list of columns. The format is: ‘internal-name’ => ‘Title’ */ /* function BW_List_Table::get_sortable_columns() – Get a list of sortable columns. The format is: ‘internal-name’ => ‘orderby’ or ‘internal-name’ => array( ‘orderby’, true ) */ /* function BW_List_Table::get_default_primary_column_name() – Gets the name of the default primary column. */ /* function BW_List_Table::get_primary_column_name() – Gets the name of the primary column. */ /* function BW_List_Table::get_column_info() – Get a list of all, hidden and sortable columns, with filter applied */ /* function BW_List_Table::get_column_count() – Return number of visible columns */ /* function BW_List_Table::print_column_headers() – Print column headers, accounting for hidden and sortable columns. */ /* function BW_List_Table::display() – Display the table */ /* function BW_List_Table::get_table_classes() – Get a list of CSS classes for the list table table tag. */ /* function BW_List_Table::display_tablenav() – Generate the table navigation above or below the table */ /* function BW_List_Table::extra_tablenav() – Extra controls to be displayed between bulk actions and pagination */ /* function BW_List_Table::display_rows_or_placeholder() – Generate the tbody element for the list table. */ /* function BW_List_Table::display_rows() – Generate the table rows */ /* function BW_List_Table::single_row() – Generates content for a single row of the table */ /* function BW_List_Table::single_row_columns() – Generates the columns for a single row of the table */ /* function BW_List_Table::handle_row_actions() – Generates and display row actions links for the list table. */ /* function BW_List_Table::ajax_response() – Handle an incoming ajax request (called from admin-ajax.php) */ /* function BW_List_Table::_js_vars() – Send required variables to JavaScript land */ /* function BW_List_Table::column_cb() – Implement default display of the checkbox field */ /* function BW_List_Table::column_default() – Implement default column display */View on GitHub View on Trac