author | ymh <ymh.work@gmail.com> |
Tue, 27 Sep 2022 16:37:53 +0200 | |
changeset 19 | 3d72ae0968f4 |
parent 18 | be944660c56a |
child 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
1 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
2 |
/** |
16 | 3 |
* Privacy administration panel. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
4 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
5 |
* @package WordPress |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
6 |
* @subpackage Administration |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
7 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
8 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
9 |
/** WordPress Administration Bootstrap */ |
16 | 10 |
require_once __DIR__ . '/admin.php'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
11 |
|
19 | 12 |
// Used in the HTML title tag. |
16 | 13 |
$title = __( 'Privacy' ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
14 |
|
16 | 15 |
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
16 |
|
16 | 17 |
require_once ABSPATH . 'wp-admin/admin-header.php'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
18 |
?> |
16 | 19 |
<div class="wrap about__container"> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
20 |
|
16 | 21 |
<div class="about__header"> |
18 | 22 |
<div class="about__header-title"> |
23 |
<h1> |
|
24 |
<?php _e( 'Privacy' ); ?> |
|
25 |
</h1> |
|
16 | 26 |
</div> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
27 |
|
18 | 28 |
<div class="about__header-text"> |
29 |
<?php _e( 'We take privacy and transparency very seriously' ); ?> |
|
16 | 30 |
</div> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
31 |
|
16 | 32 |
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> |
33 |
<a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> |
|
34 |
<a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> |
|
35 |
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> |
|
36 |
<a href="privacy.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Privacy' ); ?></a> |
|
37 |
</nav> |
|
38 |
</div> |
|
9 | 39 |
|
18 | 40 |
<div class="about__section has-2-columns is-wider-right"> |
41 |
<div class="column about__image"> |
|
42 |
<img class="privacy-image" src="<?php echo esc_url( admin_url( 'images/privacy.svg' ) ); ?>" alt="" /> |
|
43 |
</div> |
|
44 |
<div class="column is-vertically-aligned-center"> |
|
16 | 45 |
<p><?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> |
46 |
||
47 |
<p> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
48 |
<?php |
16 | 49 |
printf( |
50 |
/* translators: %s: https://wordpress.org/about/stats/ */ |
|
51 |
__( '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>.' ), |
|
52 |
__( 'https://wordpress.org/about/stats/' ) |
|
53 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
54 |
?> |
16 | 55 |
</p> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
56 |
|
16 | 57 |
<p> |
58 |
<?php |
|
59 |
printf( |
|
60 |
/* translators: %s: https://wordpress.org/about/privacy/ */ |
|
18 | 61 |
__( '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">our Privacy Policy</a>.' ), |
16 | 62 |
__( 'https://wordpress.org/about/privacy/' ) |
63 |
); |
|
64 |
?> |
|
65 |
</p> |
|
66 |
</div> |
|
67 |
</div> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
68 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
69 |
</div> |
16 | 70 |
<?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> |