You appear to be a bot. Output may be restricted
Description
Load the class to process the servers tab advanced sectionWe need to load it early since we need to define the columns in the table that appear in the Screen options tab.
Usage
oik_clone_nav_tab_load_advanced();
Parameters
Returns
voidSource
File name: oik-clone/admin/oik-clone-servers.phpLines:
1 to 19 of 19
function oik_clone_nav_tab_load_advanced() { global $list_table; oik_clone_nav_tab_advanced_fields(); oik_require( "includes/oik-list-table.php" ); $args = array( "plugin" => "oik-clone", "tab" => "servers", "page" => "oik_clone", "section" => "advanced" ); $args['actions'] = array( "edit" => __( 'Edit', 'oik-clone' ) , "view" => __( 'View', 'oik-clone' ) , "delete" => __( 'Delete', 'oik-clone' ) ); $args['page_actions'] = array( "add" => __( 'Add new', 'oik-clone' ) ); $args['submit_actions'] = array( "edit_update" => __( 'Update', 'oik-clone' ) , "add_entry" => __( 'Add', 'oik-clone' ) ); $args['object_type'] = 'bw_clone_servers'; $args['option_field'] = 'servers'; $list_table = bw_get_list_table( "OIK_Clone_Servers_List_Table", $args ); }View on GitHub