WP_Theme_Install_List_Table::get_views()protectedWP 1.0

Method of the class: WP_Theme_Install_List_Table{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_views();

Notes

  • Global. Array. $tabs
  • Global. String. $tab

WP_Theme_Install_List_Table::get_views() code WP 6.5.2

protected function get_views() {
	global $tabs, $tab;

	$display_tabs = array();
	foreach ( (array) $tabs as $action => $text ) {
		$display_tabs[ 'theme-install-' . $action ] = array(
			'url'     => self_admin_url( 'theme-install.php?tab=' . $action ),
			'label'   => $text,
			'current' => $action === $tab,
		);
	}

	return $this->get_views_links( $display_tabs );
}