2011-05-11 21:36:05 -04:00
< ? php
/**
* Credits administration panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2013-09-24 20:18:11 -04:00
require_once ( dirname ( __FILE__ ) . '/admin.php' );
2015-09-11 00:55:26 -04:00
require_once ( dirname ( __FILE__ ) . '/includes/credits.php' );
2011-05-11 21:36:05 -04:00
$title = __ ( 'Credits' );
2016-08-31 01:49:37 -04:00
list ( $display_version ) = explode ( '-' , get_bloginfo ( 'version' ) );
2011-11-03 19:55:03 -04:00
2012-01-06 12:53:41 -05:00
include ( ABSPATH . 'wp-admin/admin-header.php' );
2011-05-11 21:36:05 -04:00
?>
2011-11-03 19:23:31 -04:00
< div class = " wrap about-wrap " >
2011-12-01 18:02:19 -05:00
< h1 >< ? php printf ( __ ( 'Welcome to WordPress %s' ), $display_version ); ?> </h1>
2011-11-03 19:23:31 -04:00
2017-06-01 05:24:43 -04: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 19:23:31 -04:00
2011-11-03 19:55:03 -04:00
< div class = " wp-badge " >< ? php printf ( __ ( 'Version %s' ), $display_version ); ?> </div>
2011-11-03 19:23:31 -04:00
2016-01-05 08:38:30 -05:00
< h2 class = " nav-tab-wrapper wp-clearfix " >
2015-11-11 16:54:26 -05: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 17:42:42 -04:00
< a href = " privacy.php " class = " nav-tab " >< ? php _e ( 'Privacy' ); ?> </a>
2011-11-03 19:23:31 -04:00
</ h2 >
2011-05-11 21:36:05 -04:00
< ? php
2011-06-06 02:38:29 -04:00
$credits = wp_credits ();
2011-05-12 20:49:53 -04:00
2011-06-06 02:38:29 -04:00
if ( ! $credits ) {
2015-12-13 10:24:27 -05: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-07 23:14:15 -05:00
'https://wordpress.org/about/' ,
2015-12-13 10:24:27 -05:00
__ ( 'https://make.wordpress.org/' )
);
echo '</p>' ;
2016-05-14 14:58:31 -04:00
echo '</div>' ;
2012-01-06 12:53:41 -05:00
include ( ABSPATH . 'wp-admin/admin-footer.php' );
2011-05-12 20:49:53 -04:00
exit ;
}
2011-11-22 15:34:34 -05:00
echo '<p class="about-description">' . __ ( 'WordPress is created by a worldwide team of passionate individuals.' ) . " </p> \n " ;
2011-05-12 20:49:53 -04:00
2011-06-06 02:38:29 -04: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-15 20:18:51 -04:00
$title = translate ( $group_data [ 'name' ] );
2011-06-06 02:38:29 -04:00
}
2015-10-13 02:49:26 -04:00
echo '<h3 class="wp-people-group">' . esc_html ( $title ) . " </h3> \n " ;
2011-05-11 21:36:05 -04:00
}
2011-05-12 20:49:53 -04:00
2011-06-06 02:38:29 -04: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 13:22:24 -04:00
echo '<li class="wp-person" id="wp-person-' . esc_attr ( $person_data [ 2 ] ) . '">' . " \n \t " ;
2016-01-26 17:38:28 -05:00
echo '<a href="' . esc_url ( sprintf ( $credits [ 'data' ][ 'profiles' ], $person_data [ 2 ] ) ) . '" class="web">' ;
2015-06-18 14:36:25 -04: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 17:38:28 -05: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 02:38:29 -04:00
if ( ! $compact )
2011-11-03 20:37:56 -04:00
echo '<span class="title">' . translate ( $person_data [ 3 ] ) . " </span> \n " ;
2011-06-06 02:38:29 -04:00
echo " </li> \n " ;
}
echo " </ul> \n " ;
break ;
2011-05-23 01:33:33 -04:00
}
2011-05-11 21:36:05 -04:00
}
?>
2015-12-13 10:24:27 -05: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-11 21:36:05 -04:00
</ div >
2011-05-12 20:49:53 -04:00
< ? php
2012-01-06 12:53:41 -05:00
include ( ABSPATH . 'wp-admin/admin-footer.php' );
2011-05-12 20:49:53 -04:00
return ;
2011-05-23 07:02:12 -04:00
// These are strings returned by the API that we want to be translatable
2011-05-12 20:49:53 -04:00
__ ( 'Project Leaders' );
__ ( 'Core Contributors to WordPress %s' );
2017-10-24 15:29:47 -04:00
__ ( 'Noteworthy Contributors' );
2011-05-12 20:49:53 -04:00
__ ( 'Cofounder, Project Lead' );
__ ( 'Lead Developer' );
2014-09-03 19:19:18 -04:00
__ ( 'Release Lead' );
2016-04-09 22:03:29 -04:00
__ ( 'Release Design Lead' );
__ ( 'Release Deputy' );
2011-11-10 18:16:21 -05:00
__ ( 'Core Developer' );
2011-06-06 02:38:29 -04:00
__ ( 'External Libraries' );