You appear to be a bot. Output may be restricted
Description
Handle the MS tab for oik-cloneThe MS tab has been selected so we need to be ready to do something. Note: We don't actually need the instance of $list_table for OIK_Clone_List_Table but it does need to be loaded since OIK_Clone_MS_List_Table extends it.
Usage
oik_clone_ms_lazy_nav_tabs_oik_clone( $tab );
Parameters
- $tab
- ( mixed ) required –
Returns
voidTO DO
improve bw_get_list_tableSource
File name: oik-clone/admin/oik-clone-ms.phpLines:
1 to 13 of 13
function oik_clone_ms_lazy_nav_tabs_oik_clone( $tab ) { //add_action( "oik_clone_nav_tab_wxr", "ocw_nav_tab_wxr" ); global $ms_list_table; oik_require( "includes/oik-list-table.php" ); $args = array( "plugin" => "oik-clone" , "tab" => $tab , "page" => "oik_clone" ); $list_table = bw_get_list_table( "OIK_Clone_List_Table", $args ); $ms_list_table = bw_get_list_table( "OIK_Clone_MS_List_Table", $args ); bw_trace2( $ms_list_table ); }View on GitHub