2011-05-12 03:36:05 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Credits administration panel.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
2013-09-25 02:18:11 +02:00
|
|
|
require_once( dirname( __FILE__ ) . '/admin.php' );
|
2015-09-11 06:55:26 +02:00
|
|
|
require_once( dirname( __FILE__ ) . '/includes/credits.php' );
|
2011-05-12 03:36:05 +02:00
|
|
|
|
|
|
|
$title = __( 'Credits' );
|
|
|
|
|
2016-08-31 07:49:37 +02:00
|
|
|
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
2011-11-04 00:55:03 +01:00
|
|
|
|
2012-01-06 18:53:41 +01:00
|
|
|
include( ABSPATH . 'wp-admin/admin-header.php' );
|
2011-05-12 03:36:05 +02:00
|
|
|
?>
|
2017-11-07 05:11:47 +01:00
|
|
|
<div class="wrap about-wrap full-width-layout">
|
2011-11-04 00:23:31 +01:00
|
|
|
|
2019-05-09 22:58:54 +02:00
|
|
|
<h1>
|
|
|
|
<?php
|
2019-07-19 02:09:58 +02:00
|
|
|
printf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: The current WordPress version number. */
|
2019-07-19 02:09:58 +02:00
|
|
|
__( 'Welcome to WordPress %s' ),
|
|
|
|
$display_version
|
|
|
|
);
|
2019-05-09 22:58:54 +02:00
|
|
|
?>
|
|
|
|
</h1>
|
2011-11-04 00:23:31 +01:00
|
|
|
|
2019-05-17 03:08:53 +02:00
|
|
|
<p class="about-text">
|
|
|
|
<?php
|
|
|
|
printf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: The current WordPress version number. */
|
2019-05-17 03:08:53 +02:00
|
|
|
__( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),
|
|
|
|
$display_version
|
|
|
|
);
|
|
|
|
?>
|
|
|
|
</p>
|
2011-11-04 00:23:31 +01:00
|
|
|
|
2019-05-09 22:58:54 +02:00
|
|
|
<div class="wp-badge">
|
|
|
|
<?php
|
2019-07-19 02:09:58 +02:00
|
|
|
printf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: The current WordPress version number. */
|
2019-07-19 02:09:58 +02:00
|
|
|
__( 'Version %s' ),
|
|
|
|
$display_version
|
|
|
|
);
|
2019-05-09 22:58:54 +02:00
|
|
|
?>
|
|
|
|
</div>
|
2011-11-04 00:23:31 +01:00
|
|
|
|
2019-03-15 15:54:52 +01:00
|
|
|
<nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
|
2015-11-11 22:54:26 +01:00
|
|
|
<a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a>
|
2019-05-09 22:58:54 +02:00
|
|
|
<a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a>
|
2015-11-11 22:54:26 +01:00
|
|
|
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
|
2019-05-27 00:57:52 +02:00
|
|
|
<a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
|
2019-03-15 15:54:52 +01:00
|
|
|
</nav>
|
2011-05-12 03:36:05 +02:00
|
|
|
|
2017-11-07 05:11:47 +01:00
|
|
|
<div class="about-wrap-content">
|
2011-05-12 03:36:05 +02:00
|
|
|
<?php
|
|
|
|
|
2011-06-06 08:38:29 +02:00
|
|
|
$credits = wp_credits();
|
2011-05-13 02:49:53 +02:00
|
|
|
|
2011-06-06 08:38:29 +02:00
|
|
|
if ( ! $credits ) {
|
2015-12-13 16:24:27 +01:00
|
|
|
echo '<p class="about-description">';
|
2017-12-01 00:11:00 +01:00
|
|
|
printf(
|
2019-05-09 22:58:54 +02:00
|
|
|
/* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */
|
2017-12-01 00:11:00 +01:00
|
|
|
__( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ),
|
2019-07-18 14:41:57 +02:00
|
|
|
__( 'https://wordpress.org/about/' ),
|
2015-12-13 16:24:27 +01:00
|
|
|
__( 'https://make.wordpress.org/' )
|
|
|
|
);
|
|
|
|
echo '</p>';
|
2016-05-14 20:58:31 +02:00
|
|
|
echo '</div>';
|
2017-11-07 05:11:47 +01:00
|
|
|
echo '</div>';
|
2012-01-06 18:53:41 +01:00
|
|
|
include( ABSPATH . 'wp-admin/admin-footer.php' );
|
2011-05-13 02:49:53 +02:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2011-11-22 21:34:34 +01:00
|
|
|
echo '<p class="about-description">' . __( 'WordPress is created by a worldwide team of passionate individuals.' ) . "</p>\n";
|
2011-05-13 02:49:53 +02:00
|
|
|
|
2018-04-30 05:16:22 +02:00
|
|
|
echo '<p>' . sprintf(
|
|
|
|
/* translators: %s: https://make.wordpress.org/ */
|
|
|
|
__( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
|
|
|
|
__( 'https://make.wordpress.org/' )
|
|
|
|
) . '</p>';
|
|
|
|
|
2011-06-06 08:38:29 +02: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'] ) ) {
|
2019-01-11 07:04:49 +01:00
|
|
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
2011-06-06 08:38:29 +02:00
|
|
|
$title = vsprintf( translate( $group_data['name'] ), $group_data['placeholders'] );
|
|
|
|
} else {
|
2019-01-11 07:04:49 +01:00
|
|
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
2011-06-16 02:18:51 +02:00
|
|
|
$title = translate( $group_data['name'] );
|
2011-06-06 08:38:29 +02:00
|
|
|
}
|
|
|
|
|
2019-03-15 15:54:52 +01:00
|
|
|
echo '<h2 class="wp-people-group">' . esc_html( $title ) . "</h2>\n";
|
2011-05-12 03:36:05 +02:00
|
|
|
}
|
2011-05-13 02:49:53 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $group_data['shuffle'] ) ) {
|
2011-06-06 08:38:29 +02:00
|
|
|
shuffle( $group_data['data'] ); // We were going to sort by ability to pronounce "hierarchical," but that wouldn't be fair to Matt.
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-06-06 08:38:29 +02:00
|
|
|
|
|
|
|
switch ( $group_data['type'] ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
case 'list':
|
2011-06-06 08:38:29 +02:00
|
|
|
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;
|
2017-12-01 00:11:00 +01:00
|
|
|
case 'libraries':
|
2011-06-06 08:38:29 +02:00
|
|
|
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 19:22:24 +02:00
|
|
|
echo '<li class="wp-person" id="wp-person-' . esc_attr( $person_data[2] ) . '">' . "\n\t";
|
2016-01-26 23:38:28 +01:00
|
|
|
echo '<a href="' . esc_url( sprintf( $credits['data']['profiles'], $person_data[2] ) ) . '" class="web">';
|
2017-12-01 00:11:00 +01:00
|
|
|
$size = 'compact' == $group_data['type'] ? 30 : 60;
|
|
|
|
$data = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size ) );
|
|
|
|
$size *= 2;
|
2015-06-18 20:36:25 +02:00
|
|
|
$data2x = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size ) );
|
2016-01-26 23:38:28 +01: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";
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $compact ) {
|
2019-01-11 07:04:49 +01:00
|
|
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
2011-11-04 01:37:56 +01:00
|
|
|
echo '<span class="title">' . translate( $person_data[3] ) . "</span>\n";
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-06-06 08:38:29 +02:00
|
|
|
echo "</li>\n";
|
|
|
|
}
|
|
|
|
echo "</ul>\n";
|
2017-12-01 00:11:00 +01:00
|
|
|
break;
|
2011-05-23 07:33:33 +02:00
|
|
|
}
|
2011-05-12 03:36:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
2017-11-07 05:11:47 +01:00
|
|
|
</div>
|
2011-05-12 03:36:05 +02:00
|
|
|
</div>
|
2011-05-13 02:49:53 +02:00
|
|
|
<?php
|
|
|
|
|
2012-01-06 18:53:41 +01:00
|
|
|
include( ABSPATH . 'wp-admin/admin-footer.php' );
|
2011-05-13 02:49:53 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
2011-05-23 13:02:12 +02:00
|
|
|
// These are strings returned by the API that we want to be translatable
|
2011-05-13 02:49:53 +02:00
|
|
|
__( 'Project Leaders' );
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: The current WordPress version number. */
|
2011-05-13 02:49:53 +02:00
|
|
|
__( 'Core Contributors to WordPress %s' );
|
2017-10-24 21:29:47 +02:00
|
|
|
__( 'Noteworthy Contributors' );
|
2011-05-13 02:49:53 +02:00
|
|
|
__( 'Cofounder, Project Lead' );
|
|
|
|
__( 'Lead Developer' );
|
2014-09-04 01:19:18 +02:00
|
|
|
__( 'Release Lead' );
|
2016-04-10 04:03:29 +02:00
|
|
|
__( 'Release Design Lead' );
|
|
|
|
__( 'Release Deputy' );
|
2011-11-11 00:16:21 +01:00
|
|
|
__( 'Core Developer' );
|
2011-06-06 08:38:29 +02:00
|
|
|
__( 'External Libraries' );
|