You appear to be a bot. Output may be restricted
Description
Display the list of views available on this table.
Usage
BW_List_Table::views();
Parameters
Returns
voidSource
File name: oik/admin/class-bw-list-table.phpLines:
1 to 24 of 24
public function views() { $views = $this->get_views(); /** * Filter the list of available list table views. * * The dynamic portion of the hook name, `$this->screen->id`, refers * to the ID of the current screen, usually a string. * * @since 3.5.0 * * @param array $views An array of available list table views. */ $views = apply_filters( "views_{$this->screen->id}", $views ); if ( empty( $views ) ) return; echo "<ul class='subsubsub'>\n"; foreach ( $views as $class => $view ) { $views[ $class ] = "\t<li class='$class'>$view"; } echo implode( " |</li>\n", $views ) . "</li>\n"; echo "</ul>"; }View on GitHub View on Trac