jetpack-plugin-portal-containers.php
2 years ago
must-connect-main-blog.php
7 months ago
network-activated-notice.php
7 months ago
network-admin-header.php
7 months ago
network-settings.php
3 months ago
network-activated-notice.php
16 lines
| 1 | <?php |
| 2 | /** |
| 3 | * View template file for network activation notice. |
| 4 | * |
| 5 | * @html-template Jetpack::load_view |
| 6 | * @package automattic/jetpack |
| 7 | */ |
| 8 | |
| 9 | if ( isset( $_GET['jetpack-notice'] ) && 'dismiss' === $_GET['jetpack-notice'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
| 10 | ?> |
| 11 | <div id="message" class="error"> |
| 12 | <p><?php esc_html_e( 'Jetpack is network-activated and notices cannot be dismissed.', 'jetpack' ); ?></p> |
| 13 | </div> |
| 14 | <?php |
| 15 | } |
| 16 |