Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: {$prefix}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
499            * @since 2.7.0
500            *
501            * @param array  $actions     An array of plugin action links.
502            * @param string $plugin_file Path to the plugin file.
503            * @param array  $plugin_data An array of plugin data.
504            * @param string $context     The plugin context. Defaults are 'All', 'Active',
505            *                            'Inactive', 'Recently Activated', 'Upgrade',
506            *                            'Must-Use', 'Drop-ins', 'Search'.
507            */
508           $actions = apply_filters( $prefix . "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
509
510           $class = $is_active ? 'active' : 'inactive';
511           $checkbox_id =  "checkbox_" . md5($plugin_data['Name']);
512           if ( in_array( $status, array( 'mustuse', 'dropins' ) ) ) {
513                $checkbox = '';
514           } else {
515                $checkbox = "<label class='screen-reader-text' for='" . $checkbox_id . "' >" . sprintf( __( 'Select %s' ), $plugin_data['Name'] ) . "</label>"
516                     . "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' />";
517           }