a label" href="/tmt/tiger_frontend/commit/77628cf8bfa7ca36ce8866a6a6ab6148ba5ea8b5">77628cf8bf first comm 3 anni fa SN.js 77628cf8bf first comm 3 anni fa SO.js 77628cf8bf first comm 3 anni fa SR.js 77628cf8bf first comm 3 anni fa ST.js 77628cf8bf first comm 3 anni fa SV.js 77628cf8bf first comm 3 anni fa SY.js 77628cf8bf first comm 3 anni fa SZ.js 77628cf8bf first comm 3 anni fa TC.js 77628cf8bf first comm 3 anni fa TD.js 77628cf8bf first comm 3 anni fa TG.js 77628cf8bf first comm 3 anni fa TH.js 77628cf8bf first comm 3 anni fa TJ.js 77628cf8bf first comm 3 anni fa TK.js 77628cf8bf first comm 3 anni fa TL.js 77628cf8bf first comm 3 anni fa TM.js 77628cf8bf first comm 3 anni fa TN.js 77628cf8bf first comm 3 anni fa TO.js 77628cf8bf first comm 3 anni fa TR.js 77628cf8bf first comm 3 anni fa TT.js 77628cf8bf first comm 3 anni fa TV.js 77628cf8bf first comm 3 anni fa TW.js 77628cf8bf first comm 3 anni fa TZ.js 77628cf8bf first comm 3 anni fa UA.js 77628cf8bf first comm 3 anni fa UG.js 77628cf8bf first comm 3 anni fa US.js 77628cf8bf first comm 3 anni fa UY.js 77628cf8bf first comm 3 anni fa UZ.js 77628cf8bf first comm 3 anni fa VA.js 77628cf8bf first comm 3 anni fa VC.js 77628cf8bf first comm 3 anni fa VE.js 77628cf8bf first comm 3 anni fa VG.js 77628cf8bf first comm 3 anni fa VI.js 77628cf8bf first comm 3 anni fa VN.js 77628cf8bf first comm 3 anni fa VU.js 77628cf8bf first comm 3 anni fa WF.js 77628cf8bf first comm 3 anni fa WS.js 77628cf8bf first comm 3 anni fa YE.js 77628cf8bf first comm 3 anni fa YT.js 77628cf8bf first comm 3 anni fa ZA.js 77628cf8bf first comm 3 anni fa ZM.js 77628cf8bf first comm 3 anni fa ZW.js 77628cf8bf first comm 3 anni fa alt-af.js 77628cf8bf first comm 3 anni fa alt-an.js 77628cf8bf first comm 3 anni fa alt-as.js 77628cf8bf first comm 3 anni fa alt-eu.js 77628cf8bf first comm 3 anni fa alt-na.js 77628cf8bf first comm 3 anni fa alt-oc.js 77628cf8bf first comm 3 anni fa alt-sa.js 77628cf8bf first comm 3 anni fa alt-ww.js 77628cf8bf first comm 3 anni fa tum/whitesports - Gogs: Simplico Git Service

Нет описания

privacy.php 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /**
  3. * Privacy administration panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once __DIR__ . '/admin.php';
  10. $title = __( 'Privacy' );
  11. list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
  12. require_once ABSPATH . 'wp-admin/admin-header.php';
  13. ?>
  14. <div class="wrap about__container">
  15. <div class="about__header">
  16. <div class="about__header-title">
  17. <h1>
  18. <?php _e( 'Privacy' ); ?>
  19. </h1>
  20. </div>
  21. <div class="about__header-text">
  22. <?php _e( 'We take privacy and transparency very seriously' ); ?>
  23. </div>
  24. <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
  25. <a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
  26. <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
  27. <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
  28. <a href="privacy.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Privacy' ); ?></a>
  29. </nav>
  30. </div>
  31. <div class="about__section has-2-columns is-wider-right">
  32. <div class="column about__image">
  33. <img class="privacy-image" src="<?php echo esc_url( admin_url( 'images/privacy.svg' ) ); ?>" alt="" />
  34. </div>
  35. <div class="column is-vertically-aligned-center">
  36. <p><?php _e( 'From time to time, your WordPress site may send data to WordPress.org &#8212; including, but not limited to &#8212; the version of WordPress you are using, and a list of installed plugins and themes.' ); ?></p>
  37. <p>
  38. <?php
  39. printf(
  40. /* translators: %s: https://wordpress.org/about/stats/ */
  41. __( '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>.' ),
  42. __( 'https://wordpress.org/about/stats/' )
  43. );
  44. ?>
  45. </p>
  46. <p>
  47. <?php
  48. printf(
  49. /* translators: %s: https://wordpress.org/about/privacy/ */
  50. __( '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>.' ),
  51. __( 'https://wordpress.org/about/privacy/' )
  52. );
  53. ?>
  54. </p>
  55. </div>
  56. </div>
  57. </div>
  58. <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>