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
2011-12-02 00:02:19 +01:00
< h1 >< ? php printf ( __ ( 'Welcome to WordPress %s' ), $display_version ); ?> </h1>
2011-11-04 00:23:31 +01:00
Help/About: WordPress 5.0 About Page.
The About page describes all the great changes in WordPress 5.0.
Highlights:
- Warn users of Gutenberg plugin of its deactivation upon 5.0 upgrade.
- Added illustrations to the Four Freedoms page.
- Include a link to wporg user’s plugin favorites as a way to display only the classic plugin as a suggestion for install.
- Detail the Classic Editor plugin and the support timeline.
Props pixelverbieger, ocean90, karmatosed, pento, boemedia, lonelyvegan, sami.keijonen, TimothyBlynJacobs, xkon, afercia, laurelfulford, joostdevalk, ipstenu, matveb, joen, tinkerbelly, chanthaboune, kjellr, alexislloyd, melchoyce, mcsf, courtney0burton, Otto42, cathibosco, tobifjellner, helen, audrasjb, antpb, jjj, elrae, desrosj, azaozz, joemcgill, skithund, gziolo.
Merges [43913], [43921-43922], [43937-43938], [43946-43947], [43952-43953], [43967-43969] into trunk.
Fixes #45178.
Built from https://develop.svn.wordpress.org/trunk@44264
git-svn-id: http://core.svn.wordpress.org/trunk@44094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 17:36:59 +01:00
< p class = " about-text " >< ? php printf ( __ ( 'Thank you for updating to the latest version! WordPress %s introduces a robust new content creation experience.' ), $display_version ); ?> </p>
2011-11-04 00:23:31 +01:00
2011-11-04 00:55:03 +01:00
< div class = " wp-badge " >< ? php printf ( __ ( 'Version %s' ), $display_version ); ?> </div>
2011-11-04 00:23:31 +01:00
2016-01-05 14:38:30 +01:00
< h2 class = " nav-tab-wrapper wp-clearfix " >
2015-11-11 22:54:26 +01: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>
2018-03-09 16:04:33 +01:00
< a href = " freedoms.php?privacy-notice " class = " nav-tab " >< ? php _e ( 'Privacy' ); ?> </a>
2011-11-04 00:23:31 +01:00
</ h2 >
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">' ;
/* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */
2017-12-01 00:11:00 +01:00
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 05:14:15 +01: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
}
2015-10-13 08:49:26 +02:00
echo '<h3 class="wp-people-group">' . esc_html ( $title ) . " </h3> \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' );
__ ( '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' );