WP_Plugins_List_Table::get_primary_column_name() – Gets the name of the primary column for this specific list table.

You appear to be a bot. Output may be restricted

Description

Gets the name of the primary column for this specific list table.

Usage

$string = WP_Plugins_List_Table::get_primary_column_name();

Parameters

Returns

string Unalterable name for the primary column, in this case, 'name'.

Source

File name: wordpress/wp-admin/includes/class-wp-plugins-list-table.php
Lines:

1 to 3 of 3
  protected function get_primary_column_name() {
    return 'name';
  }
 

 View on GitHub View on Trac