Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: update_plugin_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
1027           $update_actions =  array(
1028                'activate_plugin' => '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;plugin=' . $this->plugin, 'activate-plugin_' . $this->plugin) . '" title="' . esc_attr__('Activate this plugin') . '" target="_parent">' . __('Activate Plugin') . '</a>',
1029                'plugins_page' => '<a href="' . admin_url('plugins.php') . '" title="' . esc_attr__('Goto plugins page') . '" target="_parent">' . __('Return to Plugins page') . '</a>'
1030           );
1031           if ( $this->plugin_active )
1032                unset( $update_actions['activate_plugin'] );
1033           if ( ! $this->result || is_wp_error($this->result) )
1034                unset( $update_actions['activate_plugin'] );
1035
1036           $update_actions = apply_filters('update_plugin_complete_actions', $update_actions, $this->plugin);
1037           if ( ! empty($update_actions) )
1038                $this->feedback('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions));
1039      }
1040
1041      function before() {
1042           if ( $this->upgrader->show_before ) {
1043                echo $this->upgrader->show_before;
1044                $this->upgrader->show_before = '';
1045           }