WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 920 | $update_actions = array( |
| 921 | 'activate_plugin' => '<a href="' . wp_nonce_url('plugins.php?action=activate&plugin=' . $this->plugin, 'activate-plugin_' . $this->plugin) . '" title="' . esc_attr__('Activate this plugin') . '" target="_parent">' . __('Activate Plugin') . '</a>', |
| 922 | 'plugins_page' => '<a href="' . admin_url('plugins.php') . '" title="' . esc_attr__('Goto plugins page') . '" target="_parent">' . __('Return to Plugins page') . '</a>' |
| 923 | ); |
| 924 | if ( $this->plugin_active ) |
| 925 | unset( $update_actions['activate_plugin'] ); |
| 926 | if ( ! $this->result || is_wp_error($this->result) ) |
| 927 | unset( $update_actions['activate_plugin'] ); |
| 928 | |
| 929 | $update_actions = apply_filters('update_plugin_complete_actions', $update_actions, $this->plugin); |
| 930 | if ( ! empty($update_actions) ) |
| 931 | $this->feedback('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions)); |
| 932 | } |
| 933 | |
| 934 | function before() { |
| 935 | if ( $this->upgrader->show_before ) { |
| 936 | echo $this->upgrader->show_before; |
| 937 | $this->upgrader->show_before = ''; |
| 938 | } |