WP_Theme_Install_List_Table::get_views() –
You appear to be a bot. Output may be restricted
Description
Usage
$array = WP_Theme_Install_List_Table::get_views();
Parameters
Returns
array
Source
File name: wordpress/wp-admin/includes/class-wp-theme-install-list-table.php
Lines:
1 to 12 of 12
protected function get_views() { global $tabs, $tab; $display_tabs = array(); foreach ( (array) $tabs as $action => $text ) { $current_link_attributes = ( $action === $tab ) ? ' class="current" aria-current="page"' : ''; $href = self_admin_url( 'theme-install.php?tab=' . $action ); $display_tabs[ 'theme-install-' . $action ] = "<a href='$href'$current_link_attributes>$text</a>"; } return $display_tabs; }