Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: update_bulk_plugins_complete_actions

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
457
458           /**
459            * Filter the list of action links available following bulk plugin updates.
460            *
461            * @since 3.0.0
462            *
463            * @param array $update_actions Array of plugin action links.
464            * @param array $plugin_info    Array of information for the last-updated plugin.
465            */
466           $update_actions = apply_filters( 'update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info );
467
468           if ( ! empty($update_actions) )
469                $this->feedback(implode(' | ', (array)$update_actions));
470      }
471 }
472
473 class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
474      public $theme_info = array(); // Theme_Upgrader::bulk() will fill this in.
475