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
1196           parent::after($this->plugin_info['Title']);
1197      }
1198      function bulk_footer() {
1199           parent::bulk_footer();
1200           $update_actions =  array(
1201                'plugins_page' => '<a href="' . self_admin_url('plugins.php') . '" title="' . esc_attr__('Go to plugins page') . '" target="_parent">' . __('Return to Plugins page') . '</a>',
1202                'updates_page' => '<a href="' . self_admin_url('update-core.php') . '" title="' . esc_attr__('Go to WordPress Updates page') . '" target="_parent">' . __('Return to WordPress Updates') . '</a>'
1203           );
1204
1205           $update_actions = apply_filters('update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info);
1206           if ( ! empty($update_actions) )
1207                $this->feedback(implode(' | ', (array)$update_actions));
1208      }
1209 }
1210
1211 class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
1212      var $theme_info = array(); // Theme_Upgrader::bulk() will fill this in.
1213
1214      function __construct($args = array()) {