120 | | <p><?php printf( $manage_actions[ $site_action ], $site_address ); ?></p> |
121 | | <?php submit_button( __( 'Confirm' ), 'primary' ); ?> |
| 120 | <?php |
| 121 | if ( 'deleteblog' === $site_action ) { |
| 122 | $submit = __( 'Delete this site permanently' ); |
| 123 | ?> |
| 124 | <div class="notice notice-warning inline"> |
| 125 | <p><?php _e( 'Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.' ); ?> |
| 126 | </div> |
| 127 | <?php |
| 128 | } else { |
| 129 | $submit = __( 'Confirm' ); |
| 130 | } |
| 131 | ?> |
| 132 | <p><?php printf( $manage_actions[ $site_action ], "<b>{$site_address}</b>" ); ?></p> |
| 133 | <?php submit_button( $submit, 'primary' ); ?> |