author | ymh <ymh.work@gmail.com> |
Tue, 15 Oct 2019 11:56:20 +0200 | |
changeset 12 | d8a8807227e4 |
parent 9 | 177826044cd9 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
0 | 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 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
14 |
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); |
0 | 15 |
|
16 |
include( ABSPATH . 'wp-admin/admin-header.php' ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
17 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
18 |
$is_privacy_notice = isset( $_GET['privacy-notice'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
|
9 | 20 |
if ( $is_privacy_notice ) { |
21 |
$freedoms_class = ''; |
|
22 |
$privacy_class = ' nav-tab-active'; |
|
23 |
$freedoms_aria_current = ''; |
|
24 |
$privacy_aria_current = ' aria-current="page"'; |
|
25 |
} else { |
|
26 |
$freedoms_class = ' nav-tab-active'; |
|
27 |
$privacy_class = ''; |
|
28 |
$freedoms_aria_current = ' aria-current="page"'; |
|
29 |
$privacy_aria_current = ''; |
|
30 |
} |
|
31 |
||
0 | 32 |
?> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
33 |
<div class="wrap about-wrap full-width-layout"> |
0 | 34 |
|
9 | 35 |
<h1> |
36 |
<?php |
|
37 |
/* translators: %s: The current WordPress version number */ |
|
38 |
printf( __( 'Welcome to WordPress %s' ), $display_version ); |
|
39 |
?> |
|
40 |
</h1> |
|
0 | 41 |
|
9 | 42 |
<p class="about-text"> |
43 |
<?php |
|
44 |
printf( |
|
45 |
/* translators: %s: The current WordPress version number */ |
|
46 |
__( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ), |
|
47 |
$display_version |
|
48 |
); |
|
49 |
?> |
|
50 |
</p> |
|
0 | 51 |
|
9 | 52 |
<div class="wp-badge"> |
53 |
<?php |
|
54 |
/* translators: %s: The current WordPress version number */ |
|
55 |
printf( __( 'Version %s' ), $display_version ); |
|
56 |
?> |
|
57 |
</div> |
|
58 |
||
59 |
<nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
60 |
<a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
61 |
<a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> |
9 | 62 |
<a href="freedoms.php" class="nav-tab<?php echo $freedoms_class; ?>"<?php echo $freedoms_aria_current; ?>><?php _e( 'Freedoms' ); ?></a> |
63 |
<a href="freedoms.php?privacy-notice" class="nav-tab<?php echo $privacy_class; ?>"<?php echo $privacy_aria_current; ?>><?php _e( 'Privacy' ); ?></a> |
|
64 |
</nav> |
|
0 | 65 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
<?php if ( $is_privacy_notice ) : ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
67 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
68 |
<div class="about-wrap-content"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
<p class="about-description"><?php _e( 'From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version of WordPress you are using, and a list of installed plugins and themes.' ); ?></p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
70 |
|
9 | 71 |
<p> |
72 |
<?php |
|
73 |
/* translators: %s: https://wordpress.org/about/stats/ */ |
|
74 |
printf( __( 'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the <a href="%s">WordPress.org stats page</a>.' ), 'https://wordpress.org/about/stats/' ); |
|
75 |
?> |
|
76 |
</p> |
|
0 | 77 |
|
9 | 78 |
<p> |
79 |
<?php |
|
80 |
/* translators: %s: https://wordpress.org/about/privacy/ */ |
|
81 |
printf( __( 'We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit <a href="%s">WordPress.org/about/privacy</a>.' ), 'https://wordpress.org/about/privacy/' ); |
|
82 |
?> |
|
83 |
</p> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
84 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
85 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
<?php else : ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
87 |
<div class="about-wrap-content"> |
9 | 88 |
<div class="feature-section has-1-columns"> |
89 |
<h2><?php _e( 'Freedoms' ); ?></h2> |
|
90 |
<p class="about-description"> |
|
91 |
<?php |
|
92 |
/* translators: %s: https://wordpress.org/about/license/ */ |
|
93 |
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/' ); |
|
94 |
?> |
|
95 |
</p> |
|
96 |
</div> |
|
0 | 97 |
|
9 | 98 |
<div class="feature-section has-4-columns is-fullwidth"> |
99 |
<div class="column"> |
|
100 |
<div class="freedoms-image"></div> |
|
101 |
<h3><?php _e( 'The 1st Freedom' ); ?></h3> |
|
102 |
<p><?php _e( 'To run the program for any purpose.' ); ?></p> |
|
103 |
</div> |
|
104 |
<div class="column"> |
|
105 |
<div class="freedoms-image"></div> |
|
106 |
<h3><?php _e( 'The 2nd Freedom' ); ?></h3> |
|
107 |
<p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p> |
|
108 |
</div> |
|
109 |
<div class="column"> |
|
110 |
<div class="freedoms-image"></div> |
|
111 |
<h3><?php _e( 'The 3rd Freedom' ); ?></h3> |
|
112 |
<p><?php _e( 'To redistribute.' ); ?></p> |
|
113 |
</div> |
|
114 |
<div class="column"> |
|
115 |
<div class="freedoms-image"></div> |
|
116 |
<h3><?php _e( 'The 4th Freedom' ); ?></h3> |
|
117 |
<p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p> |
|
118 |
</div> |
|
119 |
</div> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
120 |
|
9 | 121 |
<div class="feature-section has-1-columns"> |
122 |
<p> |
|
123 |
<?php |
|
124 |
/* translators: %s: https://wordpressfoundation.org/trademark-policy/ */ |
|
125 |
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’re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'https://wordpressfoundation.org/trademark-policy/' ); |
|
126 |
?> |
|
127 |
</p> |
|
0 | 128 |
|
9 | 129 |
<p> |
130 |
<?php |
|
131 |
$plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' ); |
|
132 |
$themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' ); |
|
133 |
/* translators: %s: https://wordpress.org/about/license/ */ |
|
134 |
printf( __( 'Every plugin and theme in WordPress.org’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’s GPL</a> first. If they don’t respect the WordPress license, we don’t recommend them.' ), $plugins_url, $themes_url, 'https://wordpress.org/about/license/' ); |
|
135 |
?> |
|
136 |
</p> |
|
0 | 137 |
|
9 | 138 |
<p><?php _e( 'Don’t you wish all software came with these freedoms? So do we! For more information, check out the <a href="https://www.fsf.org/">Free Software Foundation</a>.' ); ?></p> |
139 |
</div> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
140 |
</div> |
0 | 141 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
142 |
<?php endif; ?> |
0 | 143 |
</div> |
144 |
<?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?> |