| 63 | /** |
| 64 | * Filter whether to display the advanced plugins list table. |
| 65 | * |
| 66 | * There are two types of advanced plugins - must-use and drop-ins - |
| 67 | * which can be used in a single site, or in a Multisite network. |
| 68 | * |
| 69 | * The first time the filter is evaluated determines whether to show the |
| 70 | * list of must-use plugins. |
| 71 | * |
| 72 | * The second time the filter is evaluated determines whether to show the |
| 73 | * list of drop-in plugins. |
| 74 | * |
| 75 | * @since 3.0.0 |
| 76 | * |
| 77 | * @param bool $show Whether to show the advanced plugins for the specified |
| 78 | * plugin type. Default true. |
| 79 | * @param string $type The plugin type. Accepts 'mustuse', 'dropins'. |
| 80 | */ |
| 391 | |
| 392 | /** |
| 393 | * Filter the action links displayed for each plugin in the plugins list table. |
| 394 | * |
| 395 | * The dynamic portion of the hook name, $prefix, refers to the context the |
| 396 | * action links are displayed in. The 'network_admin_' prefix is used if the |
| 397 | * current screen is the Network plugins list table (wp-admin/network/plugins.php). |
| 398 | * The prefix is empty ('') if the current screen is the site plugins list |
| 399 | * table (wp-admin/plugins.php). |
| 400 | * |
| 401 | * The default action links for the Network plugins list table include |
| 402 | * 'Network Activate', 'Network Deactivate', 'Edit', and 'Delete'. |
| 403 | * |
| 404 | * The default action links for the site plugins list table include |
| 405 | * 'Activate', 'Deactivate', and 'Edit', for a network site, and |
| 406 | * 'Activate', 'Deactivate', 'Edit', and 'Delete' for a single site. |
| 407 | * |
| 408 | * @since 3.1.0 |
| 409 | * |
| 410 | * @param array $actions An array of action links. |
| 411 | * @param string $plugin_file Path to the plugin file. |
| 412 | * @param array $plugin_data An array of plugin data. |
| 413 | * @param string $context The plugin context. Defaults are 'All', 'Active', |
| 414 | * 'Inactive', 'Recently Activated', 'Upgrade', |
| 415 | * 'Must-Use', 'Drop-ins', 'Search'. |
| 416 | */ |
| 418 | |
| 419 | /** |
| 420 | * Filter the list of action links displayed for the specified plugin. |
| 421 | * |
| 422 | * The first dynamic portion of the hook name, $prefix, refers to the context |
| 423 | * the action links are displayed in. The 'network_admin_' prefix is used if the |
| 424 | * current screen is the Network plugins list table (wp-admin/network/plugins.php). |
| 425 | * The prefix is empty ('') if the current screen is the site plugins list |
| 426 | * table (wp-admin/plugins.php). |
| 427 | * |
| 428 | * The second dynamic portion of the hook name, $plugin_file, refers to the path |
| 429 | * to the plugin file, relative to the plugins directory. |
| 430 | * |
| 431 | * @since 3.1.0 |
| 432 | * |
| 433 | * @param array $actions An array of action links. |
| 434 | * @param string $plugin_file Path to the plugin file. |
| 435 | * @param array $plugin_data An array of plugin data. |
| 436 | * @param string $context The plugin context. Defaults are 'All', 'Active', |
| 437 | * 'Inactive', 'Recently Activated', 'Upgrade', |
| 438 | * 'Must-Use', 'Drop-ins', 'Search'. |
| 439 | */ |
| 494 | /** |
| 495 | * Filter the array of row meta for each plugin in the plugins |
| 496 | * list table. |
| 497 | * |
| 498 | * @since 2.8.0 |
| 499 | * |
| 500 | * @param array $plugin_meta An array of the plugin's metadata, |
| 501 | * including the version, author, |
| 502 | * author URI, and plugin URI. |
| 503 | * @param string $plugin_file Path to the plugin file. |
| 504 | * @param array $plugin_data An array of plugin data. |
| 505 | * @param string $status Status of the plugin. Defaults are 'All', |
| 506 | * 'Active', 'Inactive', 'Recently Activated', |
| 507 | * 'Upgrade', 'Must-Use', 'Drop-ins', 'Search'. |
| 508 | */ |
| 533 | /** |
| 534 | * Fires after each row in the plugins list table. |
| 535 | * |
| 536 | * @since 2.3.0 |
| 537 | * |
| 538 | * @param string $plugin_file Path to the plugin file. |
| 539 | * @param array $plugin_data An array of plugin data. |
| 540 | * @param string $status Status of the plugin. Defaults are 'All', |
| 541 | * 'Active', 'Inactive', 'Recently Activated', |
| 542 | * 'Upgrade', 'Must-Use', 'Drop-ins', 'Search'. |
| 543 | */ |
| 545 | |
| 546 | /** |
| 547 | * Fires after each specific row in the plugins list table. |
| 548 | * |
| 549 | * The dynamic portion of the hook name, $plugin_file, refers to the path |
| 550 | * to the plugin file, relative to the plugins directory. |
| 551 | * |
| 552 | * @since 2.7.0 |
| 553 | * |
| 554 | * @param string $plugin_file Path to the plugin file. |
| 555 | * @param array $plugin_data An array of plugin data. |
| 556 | * @param string $status Status of the plugin. Defaults are 'All', |
| 557 | * 'Active', 'Inactive', 'Recently Activated', |
| 558 | * 'Upgrade', 'Must-Use', 'Drop-ins', 'Search'. |
| 559 | */ |