You appear to be a bot. Output may be restricted
Description
Display the "slave" columnThis is the field that contains the row actions In a generic solution the row actions should be attached to the first displayed field.
Usage
OIK_Clone_Servers_List_Table::column_slave( $item );
Parameters
- $item
- ( mixed ) required –
Returns
voidSource
File name: oik-clone/admin/class-oik-clone-servers-list-table.phpLines:
1 to 14 of 14
function column_slave( $item ) { bw_trace2(); $title = $this->column_default( $item, "slave" ); $actions = array(); //$args = array( "slave" => $item['slave'] ); $args = array( "key" => $item[ 'key' ] ); $actions['edit'] = $this->create_action_link( $item, "edit", "Edit", $args ); $actions['view'] = $this->create_action_link( $item, "view", "View", $args ); $actions['delete'] = $this->create_action_link( $item, "delete", "Delete", $args ); $title .= $this->row_actions( $actions ); return( $title ); }View on GitHub