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
1357           parent::after($this->plugin_info['Title']);
1358      }
1359      function bulk_footer() {
1360           parent::bulk_footer();
1361           $update_actions =  array(
1362                'plugins_page' => '<a href="' . self_admin_url('plugins.php') . '" title="' . esc_attr__('Go to plugins page') . '" target="_parent">' . __('Return to Plugins page') . '</a>',
1363                '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>'
1364           );
1365
1366           $update_actions = apply_filters('update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info);
1367           if ( ! empty($update_actions) )
1368                $this->feedback(implode(' | ', (array)$update_actions));
1369      }
1370 }
1371
1372 class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
1373      var $theme_info = array(); // Theme_Upgrader::bulk() will fill this in.
1374
1375      function __construct($args = array()) {