]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/freedoms.php
WordPress 4.1.4
[autoinstalls/wordpress.git] / wp-admin / freedoms.php
1 <?php
2 /**
3  * Your Rights administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 $title = __( 'Freedoms' );
13
14 list( $display_version ) = explode( '-', $wp_version );
15
16 include( ABSPATH . 'wp-admin/admin-header.php' );
17 ?>
18 <div class="wrap about-wrap">
19
20 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>
21
22 <div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you focus on your writing, and the new default theme lets you show it off in style.' ), $display_version ); ?></div>
23
24 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
25
26 <h2 class="nav-tab-wrapper">
27         <a href="about.php" class="nav-tab">
28                 <?php _e( 'What&#8217;s New' ); ?>
29         </a><a href="credits.php" class="nav-tab">
30                 <?php _e( 'Credits' ); ?>
31         </a><a href="freedoms.php" class="nav-tab nav-tab-active">
32                 <?php _e( 'Freedoms' ); ?>
33         </a>
34 </h2>
35
36 <p class="about-description"><?php printf( __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), 'https://wordpress.org/about/license/' ); ?></p>
37
38 <ol start="0">
39         <li><p><?php _e( 'You have the freedom to run the program, for any purpose.' ); ?></p></li>
40         <li><p><?php _e( 'You have access to the source code, the freedom to study how the program works, and the freedom to change it to make it do what you wish.' ); ?></p></li>
41         <li><p><?php _e( 'You have the freedom to redistribute copies of the original program so you can help your neighbor.' ); ?></p></li>
42         <li><p><?php _e( 'You have the freedom to distribute copies of your modified versions to others. By doing this you can give the whole community a chance to benefit from your changes.' ); ?></p></li>
43 </ol>
44
45 <p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We&#8217;re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'http://wordpressfoundation.org/trademark-policy/' ); ?></p>
46
47 <p><?php
48
49 $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : 'https://wordpress.org/plugins/';
50 $themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : 'https://wordpress.org/themes/';
51
52 printf( __( 'Every plugin and theme in WordPress.org&#8217;s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href="%1$s">plugins</a> and <a href="%2$s">themes</a> there. If you get a plugin or theme from another source, make sure to <a href="%3$s">ask them if it&#8217;s GPL</a> first. If they don&#8217;t respect the WordPress license, we don&#8217;t recommend them.' ), $plugins_url, $themes_url, 'https://wordpress.org/about/license/' ); ?></p>
53
54 <p><?php _e( 'Don&#8217;t you wish all software came with these freedoms? So do we! For more information, check out the <a href="http://www.fsf.org/">Free Software Foundation</a>.' ); ?></p>
55
56 </div>
57 <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>