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' );
2015-09-11 04:55:26 +00:00
require_once ( dirname ( __FILE__ ) . '/includes/credits.php' );
2011-05-12 01:36:05 +00:00
$title = __ ( 'Credits' );
2016-08-31 05:49:37 +00:00
list ( $display_version ) = explode ( '-' , get_bloginfo ( 'version' ) );
2011-11-03 23:55:03 +00:00
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
2017-06-01 09:24:43 +00:00
<p class="about-text"><?php printf( __( 'Thank you for updating to the latest version! WordPress %s adds more ways for you to express yourself and represent your brand.' ), $display_version ); ?></p>
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
2016-01-05 13:38:30 +00:00
<h2 class="nav-tab-wrapper wp-clearfix">
2015-11-11 21:54:26 +00:00
<a href="about.php" class="nav-tab"><?php _e( 'What’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>
2017-07-19 21:42:42 +00:00
<a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
2011-11-03 23:23:31 +00:00
</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 ) {
2015-12-13 15:24:27 +00:00
echo '<p class="about-description">';
/* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */
printf( __( '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/',
2015-12-13 15:24:27 +00:00
__( 'https://make.wordpress.org/' )
);
echo '</p>';
2016-05-14 18:58:31 +00:00
echo '</div>';
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-10-13 06:49:26 +00:00
echo '<h3 class="wp-people-group">' . esc_html( $title ) . "</h3>\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";
2016-01-26 22:38:28 +00:00
echo '<a href="' . esc_url( sprintf( $credits['data']['profiles'], $person_data[2] ) ) . '" class="web">';
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 ) );
2016-01-26 22:38:28 +00:00
echo '<img src="' . esc_url( $data['url'] ) . '" srcset="' . esc_url( $data2x['url'] ) . ' 2x" class="gravatar" alt="" />' . "\n";
echo 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
}
?>
2015-12-13 15:24:27 +00:00
<p class="clear"><?php
/* translators: %s: https://make.wordpress.org/ */
printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
__( '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' );
__( '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' );
2016-04-10 02:03:29 +00:00
__( 'Release Design Lead' );
__( 'Release Deputy' );
2011-11-10 23:16:21 +00:00
__( 'Core Developer' );
2011-06-06 06:38:29 +00:00
__( 'External Libraries' );