Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: update_translations_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
685           $update_actions['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>';
686
687           /**
688            * Filter the list of action links available following a translations update.
689            *
690            * @since 3.7.0
691            *
692            * @param array $update_actions Array of translations update links.
693            */
694           $update_actions = apply_filters( 'update_translations_complete_actions', $update_actions );
695
696           if ( $update_actions && $this->display_footer_actions )
697                $this->feedback( implode( ' | ', $update_actions ) );
698      }
699 }
700
701 /**
702  * Upgrader Skin for Automatic WordPress Upgrades
703  *