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