Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: plugin_action_links_{$plugin_file}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
967                 *                              this can also include 'network_active' and 'network_only' items.
968                 * @param string   $plugin_file Path to the plugin file relative to the plugins directory.
969                 * @param array    $plugin_data An array of plugin data. See `get_plugin_data()`
970                 *                              and the {@see 'plugin_row_meta'} filter for the list
971                 *                              of possible values.
972                 * @param string   $context     The plugin context. By default this can include 'all',
973                 *                              'active', 'inactive', 'recently_activated', 'upgrade',
974                 *                              'mustuse', 'dropins', and 'search'.
975                 */
976                $actions = apply_filters( "plugin_action_links_{$plugin_file}", $actions, $plugin_file, $plugin_data, $context );
977
978           }
979
980           $class       = $is_active ? 'active' : 'inactive';
981           $checkbox_id = 'checkbox_' . md5( $plugin_file );
982
983           if ( $restrict_network_active || $restrict_network_only || in_array( $status, array( 'mustuse', 'dropins' ), true ) || ! $compatible_php ) {
984                $checkbox = '';
985           } else {