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
557      }
558
559      function after() {
560           echo '</div>';
561      }
562
563      function bulk_footer() {
564           $update_actions = array();
565           $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>';
566           $update_actions = apply_filters( 'update_translations_complete_actions', $update_actions );
567
568           if ( $update_actions && $this->display_footer_actions )
569                $this->feedback( implode( ' | ', $update_actions ) );
570
571           parent::footer();
572      }
573 }
574
575 /**