]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/credits.php
WordPress 4.4.1
[autoinstalls/wordpress.git] / wp-admin / credits.php
index 33ae70813f1d65ac437055487bacba68e4dff6aa..61d0a5cfbbfaabc58f97d211248f133a3f0b2a7f 100644 (file)
@@ -8,70 +8,10 @@
 
 /** WordPress Administration Bootstrap */
 require_once( dirname( __FILE__ ) . '/admin.php' );
+require_once( dirname( __FILE__ ) . '/includes/credits.php' );
 
 $title = __( 'Credits' );
 
-/**
- * Retrieve the contributor credits.
- *
- * @global string $wp_version The current WordPress version.
- *
- * @since 3.2.0
- *
- * @return array|false A list of all of the contributors, or false on error.
-*/
-function wp_credits() {
-       global $wp_version;
-       $locale = get_locale();
-
-       $results = get_site_transient( 'wordpress_credits_' . $locale );
-
-       if ( ! is_array( $results )
-               || false !== strpos( $wp_version, '-' )
-               || ( isset( $results['data']['version'] ) && strpos( $wp_version, $results['data']['version'] ) !== 0 )
-       ) {
-               $response = wp_remote_get( "http://api.wordpress.org/core/credits/1.1/?version=$wp_version&locale=$locale" );
-
-               if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )
-                       return false;
-
-               $results = json_decode( wp_remote_retrieve_body( $response ), true );
-
-               if ( ! is_array( $results ) )
-                       return false;
-
-               set_site_transient( 'wordpress_credits_' . $locale, $results, DAY_IN_SECONDS );
-       }
-
-       return $results;
-}
-
-/**
- * Retrieve the link to a contributor's WordPress.org profile page.
- *
- * @access private
- * @since 3.2.0
- *
- * @param string &$display_name The contributor's display name, passed by reference.
- * @param string $username      The contributor's username.
- * @param string $profiles      URL to the contributor's WordPress.org profile page.
- */
-function _wp_credits_add_profile_link( &$display_name, $username, $profiles ) {
-       $display_name = '<a href="' . esc_url( sprintf( $profiles, $username ) ) . '">' . esc_html( $display_name ) . '</a>';
-}
-
-/**
- * Retrieve the link to an external library used in WordPress.
- *
- * @access private
- * @since 3.2.0
- *
- * @param string &$data External library data, passed by reference.
- */
-function _wp_credits_build_object_link( &$data ) {
-       $data = '<a href="' . esc_url( $data[1] ) . '">' . esc_html( $data[0] ) . '</a>';
-}
-
 list( $display_version ) = explode( '-', $wp_version );
 
 include( ABSPATH . 'wp-admin/admin-header.php' );
@@ -80,18 +20,14 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
 
 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>
 
-<div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s makes it even easier to format your content and customize your site.' ), $display_version ); ?></div>
+<div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s makes your site more connected and responsive.' ), $display_version ); ?></div>
 
 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
 
 <h2 class="nav-tab-wrapper">
-       <a href="about.php" class="nav-tab">
-               <?php _e( 'What&#8217;s New' ); ?>
-       </a><a href="credits.php" class="nav-tab nav-tab-active">
-               <?php _e( 'Credits' ); ?>
-       </a><a href="freedoms.php" class="nav-tab">
-               <?php _e( 'Freedoms' ); ?>
-       </a>
+       <a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
+       <a href="credits.php" class="nav-tab nav-tab-active"><?php _e( 'Credits' ); ?></a>
+       <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
 </h2>
 
 <?php
@@ -120,7 +56,7 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) {
                        $title = translate( $group_data['name'] );
                }
 
-               echo '<h4 class="wp-people-group">' . esc_html( $title ) . "</h4>\n";
+               echo '<h3 class="wp-people-group">' . esc_html( $title ) . "</h3>\n";
        }
 
        if ( ! empty( $group_data['shuffle'] ) )
@@ -185,6 +121,7 @@ __( 'Core Committer' );
 __( 'Guest Committer' );
 __( 'Developer' );
 __( 'Designer' );
+__( 'Docs Committer' );
 __( 'XML-RPC' );
 __( 'Internationalization' );
 __( 'External Libraries' );