wp admin includes update.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface AdminUpdateInterface {
    function get_preferred_from_update_core();
    function get_core_updates( $options = array() );
    function find_core_auto_update();
    function get_core_checksums( $version, $locale );
    function dismiss_core_update( $update );
    function undismiss_core_update( $version, $locale );
    function find_core_update( $version, $locale );
    function core_update_footer( $msg = '' );
    function update_nag();
    function update_right_now_message();
    function get_plugin_updates();
    function wp_plugin_update_rows();
    function wp_plugin_update_row( $file, $plugin_data );
    function get_theme_updates();
    function wp_theme_update_rows();
    function wp_theme_update_row( $theme_key, $theme );
    function maintenance_nag();
    function wp_print_admin_notice_templates();
    function wp_print_update_row_templates();
}