Add core contributors to credits page, first pass. see #17384.

git-svn-id: http://svn.automattic.com/wordpress/trunk@17909 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-05-13 00:49:53 +00:00
parent 033b47c5d3
commit fe04318dc8
2 changed files with 58 additions and 24 deletions

View File

@ -15,7 +15,7 @@ $parent_file = 'index.php';
add_action( 'admin_head', 'add_css' );
function add_css() { ?>
<style type="text/css">
h3.wp-people-group { clear: both; }
h3.wp-people-group, h3.wp-props-group { clear: both; }
ul.wp-people-group { margin-bottom: 50px; }
li.wp-person { float: left; height: 100px; width: 240px; margin-right: 20px; }
li.wp-person img.gravatar { float: left; margin-right: 10px; margin-bottom: 10px; width: 60px; height: 60px }
@ -33,17 +33,21 @@ function wp_credits() {
$response = wp_remote_get( "http://api.wordpress.org/core/credits/1.0/?version=$wp_version&locale=$locale" );
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )
return new WP_Error( 'credits_fail', "Oops. We'll need to put a link to WP.org if the HTTP request fails." );
return false;
$people = unserialize( wp_remote_retrieve_body( $response ) );
if ( ! $people )
return new WP_Error( 'credits_fail', "Oops. We'll need to put a link to WP.org if the HTTP request fails." );
$results = unserialize( wp_remote_retrieve_body( $response ) );
if ( ! $results )
return false;
set_site_transient( 'wordpress_credits', $people, 604800 ); // One week.
}
return $people;
return $results;
}
function _wp_credits_add_profile_link( &$user, $key, $prefix ) {
$user = '<a href="' . esc_url( $prefix . $user ) . '">' . esc_html( $user ) . '</a>';
}
include( './admin-header.php' );
@ -52,30 +56,60 @@ include( './admin-header.php' );
<?php screen_icon(); ?>
<h2><?php _e( 'WordPress Credits' ); ?></h2>
<p><?php _e( "WordPress is created by a worldwide team of passionate individuals. We couldn't possibly list them all, but here some of the most influential people currently involved with the project:" ); ?></p>
<?php
$people = wp_credits();
if ( is_wp_error( $people ) ) {
echo $people->get_error_message();
} else {
$results = wp_credits();
unset( $people['props'] ); // @TODO
if ( false === $results ) {
echo '<p>' . 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>.' ),
'http://wordpress.org/about/',
'http://codex.wordpress.org/Contributing_to_WordPress' ) . '</p>';
include( './admin-footer.php' );
exit;
}
foreach ( $people as $group => $members ) {
echo '<h3 class="wp-people-group">' . $group . '</h3>';
echo '<ul class="wp-people-group" id="wp-people-group-' . $group . '">';
shuffle( $members ); // We were going to sort by ability to pronounce "hierarchical," but that wouldn't be fair to Matt.
foreach ( $members as $slug => $member ) {
echo '<li class="wp-person" id="wp-person-' . $slug . '"><img src="http://gravatar.com/avatar/' . $member[3] . '?s=60&r=PG" class="gravatar" /><a class="web" href="' . $member[2] . '">' . $member[0] . '</a><br /><span class="title">' . $member[1] . '</span></li>';
}
echo '</ul>';
echo '<p>' . __( "WordPress is created by a worldwide team of passionate individuals. We couldn't possibly list them all, but here some of the most influential people currently involved with the project:" ) . "<p>\n";
$gravatar = is_ssl() ? 'https://secure.gravatar.com/avatar/' : 'http://0.gravatar.com/avatar/';
foreach ( $results['people'] as $group_slug => $members ) {
echo '<h3 class="wp-people-group">' . translate( $results['groups'][ $group_slug ] ) . "</h3>\n";
echo '<ul class="wp-people-group" id="wp-people-group-' . $group_slug . '">' . "\n";
shuffle( $members ); // We were going to sort by ability to pronounce "hierarchical," but that wouldn't be fair to Matt.
foreach ( $members as $member_slug => $member ) {
echo '<li class="wp-person" id="wp-person-' . $member_slug . '"><img src="' . $gravatar . $member[3] . '?s=60" class="gravatar" /><a class="web" href="' . $results['data']['profile_prefix'] . $member[2] . '">' . $member[0] . '</a><br /><span class="title">' . translate( $member[1] ) . "</span></li>\n";
}
echo "</ul>\n";
}
if ( isset( $results['props'] ) ) {
echo '<h3 class="wp-props-group">' . sprintf( translate( $results['groups']['props'] ), $results['data']['version'] ) . "</h3>\n\n";
array_walk( $results['props'], '_wp_credits_add_profile_link', $results['data']['profile_prefix'] );
shuffle( $results['props'] );
echo wp_sprintf( '%l.', $results['props'] );
}
?>
<p class="clear"><?php printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ), 'http://codex.wordpress.org/Contributing_to_WordPress' ); ?></p>
</div>
<?php include( 'admin-footer.php' ); ?>
<?php
include( './admin-footer.php' );
return;
__( 'Project Leaders' );
__( 'Extended Core Team' );
__( 'Recent Rockstars' );
__( 'Core Contributors to WordPress %s' );
__( 'Cofounder, Project Lead' );
__( 'Lead Developer' );
__( 'UI/UX and Community Lead' );
__( 'Developer, Core Committer' );
__( 'Developer' );
__( 'Designer' );
__( 'XML-RPC Developer' );
__( 'Internationalization' );
?>

View File

@ -39,4 +39,4 @@ printf( __( 'Every plugin and theme in WordPress.org&#8217;s directory is 100%%
<p><?php _e( 'Don&#8217;t you wish all software came with these freedoms? So do we! For more information, check out the <a href="http://www.fsf.org/">Free Software Foundation</a>.' ); ?></p>
</div>
<?php include( 'admin-footer.php' ); ?>
<?php include( './admin-footer.php' ); ?>