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
668           $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>';
669
670           /**
671            * Filter the list of action links available following a translations update.
672            *
673            * @since 3.7.0
674            *
675            * @param array $update_actions Array of translations update links.
676            */
677           $update_actions = apply_filters( 'update_translations_complete_actions', $update_actions );
678
679           if ( $update_actions && $this->display_footer_actions )
680                $this->feedback( implode( ' | ', $update_actions ) );
681
682           parent::footer();
683      }
684 }
685
686 /**