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