You appear to be a bot. Output may be restricted
Description
Return number of visible columns
Usage
$int = BW_List_Table::get_column_count();
Parameters
Returns
intSource
File name: oik/admin/class-bw-list-table.phpLines:
1 to 5 of 5
public function get_column_count() { list ( $columns, $hidden ) = $this->get_column_info(); $hidden = array_intersect( array_keys( $columns ), array_filter( $hidden ) ); return count( $columns ) - count( $hidden ); }View on GitHub View on Trac