td class="name"> path-is-absolute 30f7226d9a first commit 2 年之前 path-parse 30f7226d9a first commit 2 年之前 picocolors 30f7226d9a first commit 2 年之前 picomatch 30f7226d9a first commit 2 年之前 pify 30f7226d9a first commit 2 年之前 pirates 30f7226d9a first commit 2 年之前 postcss 30f7226d9a first commit 2 年之前 postcss-import 30f7226d9a first commit 2 年之前 postcss-js 30f7226d9a first commit 2 年之前 postcss-load-config 30f7226d9a first commit 2 年之前 postcss-nested 30f7226d9a first commit 2 年之前 postcss-selector-parser 30f7226d9a first commit 2 年之前 postcss-value-parser 30f7226d9a first commit 2 年之前 proto-list 30f7226d9a first commit 2 年之前 proxy-from-env 30f7226d9a first commit 2 年之前 queue-microtask 30f7226d9a first commit 2 年之前 read-cache 30f7226d9a first commit 2 年之前 readdirp 30f7226d9a first commit 2 年之前 regenerator-runtime 30f7226d9a first commit 2 年之前 relateurl 30f7226d9a first commit 2 年之前 require-directory 30f7226d9a first commit 2 年之前 resolve 30f7226d9a first commit 2 年之前 reusify 30f7226d9a first commit 2 年之前 run-parallel 30f7226d9a first commit 2 年之前 semver 30f7226d9a first commit 2 年之前 slick 30f7226d9a first commit 2 年之前 slick-carousel 30f7226d9a first commit 2 年之前 sortablejs 30f7226d9a first commit 2 年之前 source-map 30f7226d9a first commit 2 年之前 source-map-js 30f7226d9a first commit 2 年之前 string-width 30f7226d9a first commit 2 年之前 strip-ansi 30f7226d9a first commit 2 年之前 sucrase 30f7226d9a first commit 2 年之前 supports-preserve-symlinks-flag 30f7226d9a first commit 2 年之前 tailwind-color-palette 30f7226d9a first commit 2 年之前 tailwindcss 30f7226d9a first commit 2 年之前 thenify 30f7226d9a first commit 2 年之前 thenify-all 30f7226d9a first commit 2 年之前 to-regex-range 30f7226d9a first commit 2 年之前 tr46 30f7226d9a first commit 2 年之前 ts-interface-checker 30f7226d9a first commit 2 年之前 uglify-js 30f7226d9a first commit 2 年之前 underscore 30f7226d9a first commit 2 年之前 upper-case 30f7226d9a first commit 2 年之前 util-deprecate 30f7226d9a first commit 2 年之前 valid-data-url 30f7226d9a first commit 2 年之前 web-resource-inliner 30f7226d9a first commit 2 年之前 webidl-conversions 30f7226d9a first commit 2 年之前 whatwg-url 30f7226d9a first commit 2 年之前 wrap-ansi 30f7226d9a first commit 2 年之前 wrappy 30f7226d9a first commit 2 年之前 y18n 30f7226d9a first commit 2 年之前 yallist 30f7226d9a first commit 2 年之前 yaml 30f7226d9a first commit 2 年之前 yargs 30f7226d9a first commit 2 年之前 yargs-parser 30f7226d9a first commit 2 年之前 .yarn-integrity 30f7226d9a first commit 2 年之前 tum/whitesports - Gogs: Simplico Git Service

暫無描述

deactivation-dialog.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * The deactivation modal content.
  4. *
  5. * @package automattic/jetpack
  6. *
  7. * phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable
  8. * because $data is magically loaded by Jetpack::load_view()
  9. */
  10. ?>
  11. <div id="jetpack_deactivation_dialog">
  12. <div class="jetpack_deactivation_dialog_content">
  13. <p>
  14. <?php
  15. echo esc_html(
  16. sprintf(
  17. /* translators: %d is the number of additional plugins using the jetpack connection. */
  18. _n(
  19. 'The Jetpack Connection is also used by %d other plugin, and it will lose connection.',
  20. 'The Jetpack Connection is also used by %d other plugins, and they will lose connection.',
  21. count( $data ),
  22. 'jetpack'
  23. ),
  24. count( $data )
  25. )
  26. );
  27. ?>
  28. </p>
  29. <ul>
  30. <?php foreach ( $data as $plugin_slug => $plugin_args ) : ?>
  31. <li>
  32. <span class="dashicons dashicons-warning"></span>
  33. <span>
  34. <?php echo esc_html( isset( $plugin_args['name'] ) ? $plugin_args['name'] : $plugin_slug ); ?>
  35. <span>
  36. </li>
  37. <?php endforeach; ?>
  38. </ul>
  39. </div>
  40. <div class="jetpack_deactivation_dialog_content__buttons-row-container">
  41. <div class="jetpack_deactivation_dialog_content__buttons-row">
  42. <p><?php esc_html_e( 'Are you sure you want to deactivate?', 'jetpack' ); ?></p>
  43. <div class="jetpack_deactivation_dialog_content__buttons">
  44. <button type="button" id="jetpack_deactivation_dialog_content__button-cancel"><?php esc_html_e( 'Cancel', 'jetpack' ); ?></button>
  45. <button type="button" id="jetpack_deactivation_dialog_content__button-deactivate"><?php esc_html_e( 'Disconnect and Deactivate', 'jetpack' ); ?></button>
  46. </div>
  47. </div>
  48. </div>
  49. </div>