mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
Help/About: Update the 5.3 About page.
* Remove extra padding on the Credits tab. Previously [46556], [46572], [46616], [46705]. Props ryelle. See #47708. Built from https://develop.svn.wordpress.org/trunk@46709 git-svn-id: http://core.svn.wordpress.org/trunk@46509 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5f5ab66a6b
commit
2265c36568
@ -85,76 +85,47 @@ if ( ! $credits ) {
|
|||||||
include( ABSPATH . 'wp-admin/admin-footer.php' );
|
include( ABSPATH . 'wp-admin/admin-footer.php' );
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
$previous_type = '';
|
<hr />
|
||||||
|
|
||||||
foreach ( $credits['groups'] as $group_slug => $group_data ) :
|
|
||||||
?>
|
|
||||||
<?php
|
|
||||||
if ( $previous_type !== $group_data['type'] ) {
|
|
||||||
echo '<hr />';
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<div class="about__section">
|
<div class="about__section">
|
||||||
<div class="column <?php echo 'titles' === $group_data['type'] ? 'has-subtle-background-color' : ''; ?>">
|
<div class="column has-subtle-background-color">
|
||||||
|
<?php wp_credits_section_title( $credits['groups']['core-developers'] ); ?>
|
||||||
<?php
|
<?php wp_credits_section_list( $credits, 'core-developers' ); ?>
|
||||||
if ( $group_data['name'] ) {
|
<?php wp_credits_section_list( $credits, 'contributing-developers' ); ?>
|
||||||
if ( 'Translators' == $group_data['name'] ) {
|
</div>
|
||||||
// Considered a special slug in the API response. (Also, will never be returned for en_US.)
|
</div>
|
||||||
$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'] ) ) {
|
<hr />
|
||||||
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
|
||||||
$title = vsprintf( translate( $group_data['name'] ), $group_data['placeholders'] );
|
<div class="about__section">
|
||||||
} else {
|
<div class="column">
|
||||||
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
<?php wp_credits_section_title( $credits['groups']['props'] ); ?>
|
||||||
$title = translate( $group_data['name'] );
|
<?php wp_credits_section_list( $credits, 'props' ); ?>
|
||||||
}
|
</div>
|
||||||
|
</div>
|
||||||
echo '<h2 class="wp-people-group-title">' . esc_html( $title ) . "</h2>\n";
|
|
||||||
}
|
<hr />
|
||||||
|
|
||||||
if ( ! empty( $group_data['shuffle'] ) ) {
|
<?php if ( isset( $credits['groups']['translators'] ) || isset( $credits['groups']['validators'] ) ) : ?>
|
||||||
shuffle( $group_data['data'] ); // We were going to sort by ability to pronounce "hierarchical," but that wouldn't be fair to Matt.
|
<div class="about__section">
|
||||||
}
|
<div class="column">
|
||||||
|
<?php wp_credits_section_title( $credits['groups']['validators'] ); ?>
|
||||||
switch ( $group_data['type'] ) {
|
<?php wp_credits_section_list( $credits, 'validators' ); ?>
|
||||||
case 'list':
|
<?php wp_credits_section_list( $credits, 'translators' ); ?>
|
||||||
array_walk( $group_data['data'], '_wp_credits_add_profile_link', $credits['data']['profiles'] );
|
</div>
|
||||||
echo '<p class="wp-credits-list">' . wp_sprintf( '%l.', $group_data['data'] ) . "</p>\n\n";
|
</div>
|
||||||
break;
|
|
||||||
case 'libraries':
|
<hr />
|
||||||
array_walk( $group_data['data'], '_wp_credits_build_object_link' );
|
<?php endif; ?>
|
||||||
echo '<p class="wp-credits-list">' . wp_sprintf( '%l.', $group_data['data'] ) . "</p>\n\n";
|
|
||||||
break;
|
<div class="about__section">
|
||||||
default:
|
<div class="column">
|
||||||
$compact = 'compact' == $group_data['type'];
|
<?php wp_credits_section_title( $credits['groups']['libraries'] ); ?>
|
||||||
$classes = 'wp-people-group ' . ( $compact ? 'compact' : '' );
|
<?php wp_credits_section_list( $credits, 'libraries' ); ?>
|
||||||
echo '<ul class="' . $classes . '" id="wp-people-group-' . $group_slug . '">' . "\n";
|
|
||||||
foreach ( $group_data['data'] as $person_data ) {
|
|
||||||
echo '<li class="wp-person" id="wp-person-' . esc_attr( $person_data[2] ) . '">' . "\n\t";
|
|
||||||
echo '<a href="' . esc_url( sprintf( $credits['data']['profiles'], $person_data[2] ) ) . '" class="web">';
|
|
||||||
$size = 'compact' == $group_data['type'] ? 40 : 80;
|
|
||||||
$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 ) );
|
|
||||||
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";
|
|
||||||
if ( ! $compact ) {
|
|
||||||
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
|
||||||
echo '<span class="title">' . translate( $person_data[3] ) . "</span>\n";
|
|
||||||
}
|
|
||||||
echo "</li>\n";
|
|
||||||
}
|
|
||||||
echo "</ul>\n";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
$previous_type = $group_data['type'];
|
|
||||||
?>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php endforeach; ?>
|
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
@ -551,11 +551,6 @@
|
|||||||
2.0 - Credits Page
|
2.0 - Credits Page
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
.about__section .wp-people-group-title {
|
|
||||||
margin-bottom: 2em;
|
|
||||||
font-size: 1.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about__section .wp-people-group {
|
.about__section .wp-people-group {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
2
wp-admin/css/about-rtl.min.css
vendored
2
wp-admin/css/about-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -550,11 +550,6 @@
|
|||||||
2.0 - Credits Page
|
2.0 - Credits Page
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
.about__section .wp-people-group-title {
|
|
||||||
margin-bottom: 2em;
|
|
||||||
font-size: 1.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about__section .wp-people-group {
|
.about__section .wp-people-group {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
2
wp-admin/css/about.min.css
vendored
2
wp-admin/css/about.min.css
vendored
File diff suppressed because one or more lines are too long
@ -76,3 +76,82 @@ function _wp_credits_add_profile_link( &$display_name, $username, $profiles ) {
|
|||||||
function _wp_credits_build_object_link( &$data ) {
|
function _wp_credits_build_object_link( &$data ) {
|
||||||
$data = '<a href="' . esc_url( $data[1] ) . '">' . esc_html( $data[0] ) . '</a>';
|
$data = '<a href="' . esc_url( $data[1] ) . '">' . esc_html( $data[0] ) . '</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Display a the title for a given group of contributors.
|
||||||
|
*
|
||||||
|
* @since 5.3.0
|
||||||
|
*
|
||||||
|
* @param array $group_data The current contributor group.
|
||||||
|
*/
|
||||||
|
function wp_credits_section_title( $group_data = array() ) {
|
||||||
|
if ( ! count( $group_data ) ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
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'] ) ) {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
|
$title = vsprintf( translate( $group_data['name'] ), $group_data['placeholders'] );
|
||||||
|
} else {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
|
$title = translate( $group_data['name'] );
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '<h2 class="wp-people-group-title">' . esc_html( $title ) . "</h2>\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Display a list of contributors for a given group.
|
||||||
|
*
|
||||||
|
* @since 5.3.0
|
||||||
|
*
|
||||||
|
* @param array $credits The credits groups returned from the API.
|
||||||
|
* @param string $slug The current group to display.
|
||||||
|
*/
|
||||||
|
function wp_credits_section_list( $credits = array(), $slug = '' ) {
|
||||||
|
$group_data = isset( $credits['groups'][ $slug ] ) ? $credits['groups'][ $slug ] : array();
|
||||||
|
$credits_data = $credits['data'];
|
||||||
|
if ( ! count( $group_data ) ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
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-' . $slug . '">' . "\n";
|
||||||
|
foreach ( $group_data['data'] as $person_data ) {
|
||||||
|
echo '<li class="wp-person" id="wp-person-' . esc_attr( $person_data[2] ) . '">' . "\n\t";
|
||||||
|
echo '<a href="' . esc_url( sprintf( $credits_data['profiles'], $person_data[2] ) ) . '" class="web">';
|
||||||
|
$size = $compact ? 40 : 80;
|
||||||
|
$data = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size ) );
|
||||||
|
$data2x = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size * 2 ) );
|
||||||
|
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";
|
||||||
|
if ( ! $compact ) {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
|
echo '<span class="title">' . translate( $person_data[3] ) . "</span>\n";
|
||||||
|
}
|
||||||
|
echo "</li>\n";
|
||||||
|
}
|
||||||
|
echo "</ul>\n";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.4-alpha-46707';
|
$wp_version = '5.4-alpha-46709';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user