after_plugin_row_{$plugin_file}

Advertisement

Summery Summery

Fires after each specific row in the Plugins list table.

Syntax Syntax

do_action( "after_plugin_row_{$plugin_file}", string $plugin_file, array $plugin_data, string $status )

Description Description

The dynamic portion of the hook name, $plugin_file, refers to the path to the plugin file, relative to the plugins directory.

Parameters Parameters

$plugin_file

Path to the plugin file relative to the plugins directory.

$plugin_data

An array of plugin data.

$status

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 Source

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

Advertisement

Changelog Changelog

Changelog
Version Description
5.5.0 Added 'auto-update-enabled' and 'auto-update-disabled' to possible values for $status.
2.7.0 Introduced.

Advertisement

Leave a Reply