mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 09:07:59 +01:00
Credits page. see #17384.
git-svn-id: http://svn.automattic.com/wordpress/trunk@17877 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2438287327
commit
aa12c37960
@ -19,7 +19,7 @@ if ( !defined('ABSPATH') )
|
||||
<p id="footer-left" class="alignleft"><?php
|
||||
do_action( 'in_admin_footer' );
|
||||
$upgrade = apply_filters( 'update_footer', '' );
|
||||
echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.').'</span> • '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' • '.sprintf( __( '<a href="%s">Your Rights</a>' ), admin_url( 'rights.php' ) ).' • '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>') ); ?></p>
|
||||
echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.').'</span> • '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' • '.sprintf( __( '<a href="%s">Your Rights</a>' ), admin_url( 'rights.php' ) ).' • '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>').' • '.sprintf(__('<a href="%s">Credits</a>'), admin_url('credits.php') ) ); ?></p>
|
||||
<p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
81
wp-admin/credits.php
Normal file
81
wp-admin/credits.php
Normal file
@ -0,0 +1,81 @@
|
||||
<?php
|
||||
/**
|
||||
* Credits administration panel.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
*/
|
||||
|
||||
/** WordPress Administration Bootstrap */
|
||||
require_once( './admin.php' );
|
||||
|
||||
$title = __( 'Credits' );
|
||||
$parent_file = 'index.php';
|
||||
|
||||
add_action( 'admin_head', 'add_css' );
|
||||
function add_css() { ?>
|
||||
<style type="text/css">
|
||||
h3.wp-people-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 }
|
||||
li.wp-person a.web { font-size: 16px; text-decoration: none; }
|
||||
</style>
|
||||
<?php }
|
||||
|
||||
function wp_credits() {
|
||||
global $wp_version;
|
||||
$locale = get_locale();
|
||||
|
||||
$people = get_site_transient( 'wordpress_credits' );
|
||||
|
||||
if ( false === $people ) {
|
||||
$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." );
|
||||
|
||||
$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." );
|
||||
|
||||
set_site_transient( 'wordpress_credits', $people, 604800 ); // One week.
|
||||
}
|
||||
|
||||
return $people;
|
||||
}
|
||||
|
||||
include( './admin-header.php' );
|
||||
?>
|
||||
<div class="wrap">
|
||||
<?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 {
|
||||
|
||||
unset( $people['props'] ); // @TODO
|
||||
|
||||
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>';
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
<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' ); ?>
|
Loading…
Reference in New Issue
Block a user