meta-appearance.php
11 years ago
meta-behavior.php
11 years ago
meta-content.php
11 years ago
meta-rules.php
11 years ago
meta-submitdiv.php
11 years ago
network.php
11 years ago
settings.php
11 years ago
network.php
59 lines
| 1 | <?php |
| 2 | /** |
| 3 | * This page is only displayed when |
| 4 | * 1. PO_GLOBAL is true |
| 5 | * 2. The site is a Multisite network |
| 6 | * 3. User is in the Network-Dashboard |
| 7 | * 4. Any "PopUp" menuitem is opened (Edit PopUp, Create PopUp, ...) |
| 8 | */ |
| 9 | |
| 10 | switch_to_blog( BLOG_ID_CURRENT_SITE ); |
| 11 | $main_url = admin_url( 'edit.php?post_type=' . IncPopupItem::POST_TYPE ); |
| 12 | $blog_title = get_bloginfo( 'name' ); |
| 13 | restore_current_blog(); |
| 14 | |
| 15 | $dismiss_url = add_query_arg( 'popup_network', 'hide' ); |
| 16 | |
| 17 | ?> |
| 18 | <style> |
| 19 | blockquote p { |
| 20 | font-size: 19px; |
| 21 | font-style: italic; |
| 22 | font-weight: 300; |
| 23 | background: #FAFAFA; |
| 24 | padding: 10px; |
| 25 | } |
| 26 | </style> |
| 27 | <div id="wpbody-content" tabindex="0"> |
| 28 | <div class="wrap"> |
| 29 | <h2><?php _e( 'Global PopUps', PO_LANG ); ?></h2> |
| 30 | |
| 31 | <blockquote> |
| 32 | <p><?php printf( |
| 33 | __( |
| 34 | 'Please note:<br />We moved the global PopUp menu items ' . |
| 35 | 'to the <strong>Main Blog</strong> of your multisite ' . |
| 36 | 'network!<br />The Main Blog of this network is "%1$s" - ' . |
| 37 | '<a href="%2$s">Go to the Main Blog now</a>!', PO_LANG |
| 38 | ), |
| 39 | $blog_title, |
| 40 | esc_url( $main_url ) |
| 41 | ); ?></p> |
| 42 | </blockquote> |
| 43 | |
| 44 | <div> |
| 45 | <p><?php _e( |
| 46 | 'Because the "PopUp" menu items here on the ' . |
| 47 | '<strong>Network Admin</strong> are not used anymore ' . |
| 48 | 'you can <strong>hide them</strong> at any time:', PO_LANG |
| 49 | ); ?> |
| 50 | </p> |
| 51 | <p> |
| 52 | <a href="<?php echo esc_url( $dismiss_url ); ?>" class="button-primary"> |
| 53 | <?php _e( 'Hide the menu items here!', PO_LANG ); ?> |
| 54 | </a> |
| 55 | </p> |
| 56 | </div> |
| 57 | </div> |
| 58 | <div class="clear"></div> |
| 59 | </div> |