Add core contributors to credits page, first pass. see #17384.
git-svn-id: https://develop.svn.wordpress.org/trunk@17909 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
563f488c69
commit
1a6371ea94
|
@ -15,7 +15,7 @@ $parent_file = 'index.php';
|
||||||
add_action( 'admin_head', 'add_css' );
|
add_action( 'admin_head', 'add_css' );
|
||||||
function add_css() { ?>
|
function add_css() { ?>
|
||||||
<style type="text/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; }
|
ul.wp-people-group { margin-bottom: 50px; }
|
||||||
li.wp-person { float: left; height: 100px; width: 240px; margin-right: 20px; }
|
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 }
|
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" );
|
$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 ) )
|
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 ) );
|
$results = unserialize( wp_remote_retrieve_body( $response ) );
|
||||||
|
|
||||||
if ( ! $people )
|
if ( ! $results )
|
||||||
return new WP_Error( 'credits_fail', "Oops. We'll need to put a link to WP.org if the HTTP request fails." );
|
return false;
|
||||||
|
|
||||||
set_site_transient( 'wordpress_credits', $people, 604800 ); // One week.
|
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' );
|
include( './admin-header.php' );
|
||||||
|
@ -52,30 +56,60 @@ include( './admin-header.php' );
|
||||||
<?php screen_icon(); ?>
|
<?php screen_icon(); ?>
|
||||||
<h2><?php _e( 'WordPress Credits' ); ?></h2>
|
<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
|
<?php
|
||||||
|
|
||||||
$people = wp_credits();
|
$results = wp_credits();
|
||||||
if ( is_wp_error( $people ) ) {
|
|
||||||
echo $people->get_error_message();
|
|
||||||
} else {
|
|
||||||
|
|
||||||
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 '<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";
|
||||||
echo '<h3 class="wp-people-group">' . $group . '</h3>';
|
|
||||||
echo '<ul class="wp-people-group" id="wp-people-group-' . $group . '">';
|
$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.
|
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 ) {
|
foreach ( $members as $member_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 '<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>';
|
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>
|
<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>
|
</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' );
|
||||||
|
|
||||||
|
?>
|
|
@ -39,4 +39,4 @@ printf( __( 'Every plugin and theme in WordPress.org’s directory is 100%%
|
||||||
<p><?php _e( 'Don’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>
|
<p><?php _e( 'Don’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>
|
</div>
|
||||||
<?php include( 'admin-footer.php' ); ?>
|
<?php include( './admin-footer.php' ); ?>
|
Loading…
Reference in New Issue