2011-05-12 01:36:05 +00:00
<? php
/**
* Credits administration panel.
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
2013-09-25 00:18:11 +00:00
require_once ( dirname ( __FILE__ ) . '/admin.php' );
2011-05-12 01:36:05 +00:00
$title = __ ( 'Credits' );
2013-09-19 02:27:09 +00:00
/**
* Retrieve the contributor credits.
*
* @global string $wp_version The current WordPress version.
*
* @since 3.2.0
*
2015-05-29 20:17:26 +00:00
* @return array|false A list of all of the contributors, or false on error.
2013-09-19 02:27:09 +00:00
*/
2011-05-12 01:36:05 +00:00
function wp_credits () {
global $wp_version ;
$locale = get_locale ();
2011-05-23 00:08:51 +00:00
$results = get_site_transient ( 'wordpress_credits_' . $locale );
2011-05-12 01:36:05 +00:00
2012-05-25 18:52:13 +00:00
if ( ! is_array ( $results )
2013-12-27 15:12:11 +00:00
|| false !== strpos ( $wp_version , '-' )
2012-05-25 18:52:13 +00:00
|| ( isset ( $results [ 'data' ][ 'version' ] ) && strpos ( $wp_version , $results [ 'data' ][ 'version' ] ) !== 0 )
) {
2013-09-14 19:31:08 +00:00
$response = wp_remote_get ( "http://api.wordpress.org/core/credits/1.1/?version= $wp_version &locale= $locale " );
2011-05-12 01:36:05 +00:00
if ( is_wp_error ( $response ) || 200 != wp_remote_retrieve_response_code ( $response ) )
2011-05-13 00:49:53 +00:00
return false ;
2011-05-18 19:39:24 +00:00
2013-09-14 19:31:08 +00:00
$results = json_decode ( wp_remote_retrieve_body ( $response ), true );
2011-05-13 00:49:53 +00:00
2011-05-23 00:08:51 +00:00
if ( ! is_array ( $results ) )
2011-05-13 00:49:53 +00:00
return false ;
2011-05-12 01:36:05 +00:00
2012-09-25 05:26:19 +00:00
set_site_transient ( 'wordpress_credits_' . $locale , $results , DAY_IN_SECONDS );
2011-05-12 01:36:05 +00:00
}
2011-05-13 00:49:53 +00:00
return $results ;
}
2013-09-19 02:27:09 +00:00
/**
* 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.
2013-11-21 03:44:10 +00:00
* @param string $username The contributor's username.
2013-09-19 02:27:09 +00:00
* @param string $profiles URL to the contributor's WordPress.org profile page.
*/
2011-06-06 06:38:29 +00:00
function _wp_credits_add_profile_link ( & $display_name , $username , $profiles ) {
$display_name = '<a href="' . esc_url ( sprintf ( $profiles , $username ) ) . '">' . esc_html ( $display_name ) . '</a>' ;
}
2013-09-19 02:27:09 +00:00
/**
* 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.
*/
2011-06-06 06:38:29 +00:00
function _wp_credits_build_object_link ( & $data ) {
2015-07-01 17:22:24 +00:00
$data = '<a href="' . esc_url ( $data [ 1 ] ) . '">' . esc_html ( $data [ 0 ] ) . '</a>' ;
2011-05-12 01:36:05 +00:00
}
2011-11-03 23:55:03 +00:00
list ( $display_version ) = explode ( '-' , $wp_version );
2012-01-06 17:53:41 +00:00
include ( ABSPATH . 'wp-admin/admin-header.php' );
2011-05-12 01:36:05 +00:00
?>
2011-11-03 23:23:31 +00:00
<div class="wrap about-wrap">
2011-12-01 23:02:19 +00:00
<h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>
2011-11-03 23:23:31 +00:00
2015-08-13 22:11:35 +00:00
<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>
2011-11-03 23:23:31 +00:00
2011-11-03 23:55:03 +00:00
<div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
2011-11-03 23:23:31 +00:00
<h2 class="nav-tab-wrapper">
2011-11-03 23:59:19 +00:00
<a href="about.php" class="nav-tab">
2011-12-01 23:13:56 +00:00
<?php _e( 'What’s New' ); ?>
2011-11-03 23:23:31 +00:00
</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>
2011-05-12 01:36:05 +00:00
<?php
2011-06-06 06:38:29 +00:00
$credits = wp_credits();
2011-05-13 00:49:53 +00:00
2011-06-06 06:38:29 +00:00
if ( ! $credits ) {
2011-11-04 00:37:56 +00:00
echo '<p class="about-description">' . sprintf( __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ),
2014-03-08 04:14:15 +00:00
'https://wordpress.org/about/',
2011-05-23 05:33:33 +00:00
/* translators: Url to the codex documentation on contributing to WordPress used on the credits page */
2015-04-12 21:29:32 +00:00
__( 'https://codex.wordpress.org/Contributing_to_WordPress' ) ) . '</p>';
2012-01-06 17:53:41 +00:00
include( ABSPATH . 'wp-admin/admin-footer.php' );
2011-05-13 00:49:53 +00:00
exit;
}
2011-11-22 20:34:34 +00:00
echo '<p class="about-description">' . __( 'WordPress is created by a worldwide team of passionate individuals.' ) . "</p>\n";
2011-05-13 00:49:53 +00:00
2011-06-06 06:38:29 +00:00
foreach ( $credits['groups'] as $group_slug => $group_data ) {
if ( $group_data['name'] ) {
if ( 'Translators' == $group_data['name'] ) {
// Considered a special slug in the API response. (Also, will never be returned for en_US.)
$title = _x( 'Translators', 'Translate this to be the equivalent of English Translators in your language for the credits page Translators section' );
} elseif ( isset( $group_data['placeholders'] ) ) {
$title = vsprintf( translate( $group_data['name'] ), $group_data['placeholders'] );
} else {
2011-06-16 00:18:51 +00:00
$title = translate( $group_data['name'] );
2011-06-06 06:38:29 +00:00
}
2015-07-01 17:22:24 +00:00
echo '<h4 class="wp-people-group">' . esc_html( $title ) . "</h4>\n";
2011-05-12 01:36:05 +00:00
}
2011-05-13 00:49:53 +00:00
2011-06-06 06:38:29 +00:00
if ( ! empty( $group_data['shuffle'] ) )
shuffle( $group_data['data'] ); // We were going to sort by ability to pronounce "hierarchical," but that wouldn't be fair to Matt.
switch ( $group_data['type'] ) {
case 'list' :
array_walk( $group_data['data'], '_wp_credits_add_profile_link', $credits['data']['profiles'] );
echo '<p class="wp-credits-list">' . wp_sprintf( '%l.', $group_data['data'] ) . "</p>\n\n";
break;
case 'libraries' :
array_walk( $group_data['data'], '_wp_credits_build_object_link' );
echo '<p class="wp-credits-list">' . wp_sprintf( '%l.', $group_data['data'] ) . "</p>\n\n";
break;
default:
$compact = 'compact' == $group_data['type'];
$classes = 'wp-people-group ' . ( $compact ? 'compact' : '' );
echo '<ul class="' . $classes . '" id="wp-people-group-' . $group_slug . '">' . "\n";
foreach ( $group_data['data'] as $person_data ) {
2015-07-01 17:22:24 +00:00
echo '<li class="wp-person" id="wp-person-' . esc_attr( $person_data[2] ) . '">' . "\n\t";
echo '<a href="' . esc_url( sprintf( $credits['data']['profiles'], $person_data[2] ) ) . '">';
2015-06-18 18:36:25 +00:00
$size = 'compact' == $group_data['type'] ? 30 : 60;
$data = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size ) );
$size *= 2;
$data2x = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size ) );
2015-07-01 17:22:24 +00:00
echo '<img src="' . esc_url( $data['url'] ) . '" srcset="' . esc_url( $data2x['url'] ) . ' 2x" class="gravatar" alt="' . esc_attr( $person_data[0] ) . '" /></a>' . "\n\t";
echo '<a class="web" href="' . esc_url( sprintf( $credits['data']['profiles'], $person_data[2] ) ) . '">' . esc_html( $person_data[0] ) . "</a>\n\t";
2011-06-06 06:38:29 +00:00
if ( ! $compact )
2011-11-04 00:37:56 +00:00
echo '<span class="title">' . translate( $person_data[3] ) . "</span>\n";
2011-06-06 06:38:29 +00:00
echo "</li>\n";
}
echo "</ul>\n";
break;
2011-05-23 05:33:33 +00:00
}
2011-05-12 01:36:05 +00:00
}
?>
2011-05-19 08:11:10 +00:00
<p class="clear"><?php printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
2013-11-24 15:18:09 +00:00
/* translators: URL to the Make WordPress 'Get Involved' landing page used on the credits page */
2014-03-08 04:14:15 +00:00
__( 'https://make.wordpress.org/' ) ); ?></p>
2011-05-12 01:36:05 +00:00
</div>
2011-05-13 00:49:53 +00:00
<?php
2012-01-06 17:53:41 +00:00
include( ABSPATH . 'wp-admin/admin-footer.php' );
2011-05-13 00:49:53 +00:00
return;
2011-05-23 11:02:12 +00:00
// These are strings returned by the API that we want to be translatable
2011-05-13 00:49:53 +00:00
__( 'Project Leaders' );
__( 'Extended Core Team' );
2011-11-21 21:25:27 +00:00
__( 'Core Developers' );
2011-05-13 00:49:53 +00:00
__( 'Recent Rockstars' );
__( 'Core Contributors to WordPress %s' );
2011-12-08 16:55:55 +00:00
__( 'Contributing Developers' );
2011-05-13 00:49:53 +00:00
__( 'Cofounder, Project Lead' );
__( 'Lead Developer' );
2014-09-03 23:19:18 +00:00
__( 'Release Lead' );
2011-05-23 18:32:17 +00:00
__( 'User Experience Lead' );
2011-11-10 23:16:21 +00:00
__( 'Core Developer' );
2011-06-06 06:38:29 +00:00
__( 'Core Committer' );
__( 'Guest Committer' );
2011-05-13 00:49:53 +00:00
__( 'Developer' );
__( 'Designer' );
2011-06-10 21:27:14 +00:00
__( 'XML-RPC' );
2011-05-13 00:49:53 +00:00
__( 'Internationalization' );
2011-06-06 06:38:29 +00:00
__( 'External Libraries' );
2011-06-10 21:27:14 +00:00
__( 'Icon Design' );