Fires after each row in the Plugins list table.
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'.
Source
do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status );
It seems like the
$plugin_dataarray is composed like the following:Just FYI. Could be more complete in this documentation page.
You also have the
after_plugin_row_{file}hook that gives you something likeafter_plugin_row_akismet/akismet.phpfor instance, it takes the exact same parameters though.