Fires after each specific row in the Plugins list table.
Description
The dynamic portion of the hook name, $plugin_file, refers to the path to the plugin file, relative to the plugins directory.
Parameters
$plugin_filestring
Path to the plugin file relative to the plugins directory.
$plugin_dataarray
An array of plugin data. See get_plugin_data() and the 'plugin_row_meta' filter for the list of possible values.
$statusstring
Status filter currently applied to the plugin list. Possible values are: 'all', 'active', 'inactive', 'recently_activated', 'upgrade', 'mustuse', 'dropins', 'search', 'paused', 'auto-update-enabled', 'auto-update-disabled'.
1506* of possible values.1507* @param string$status Status filter currently applied to the plugin list.1508* Possible values are:'all','active','inactive',1509*'recently_activated','upgrade','mustuse','dropins',1510*'search','paused','auto-update-enabled','auto-update-disabled'.1511*/1512do_action("after_plugin_row_{$plugin_file}",$plugin_file,$plugin_data,$status);1513}15141515/**1516* Gets the name of the primary column for this specific list table.1517*1518* @since 4.3.0
History
Introduced in 2.7.0. Unchanged from 6.7.7 through 7.1.0.