| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function jetpack_admin_missing_autoloader() { ?> |
||
| 33 | <div class="notice notice-error is-dismissible"> |
||
| 34 | <p> |
||
| 35 | <?php |
||
| 36 | printf( |
||
| 37 | /* translators: Placeholder is a link to a support document. */ |
||
| 38 | __( 'Your installation of Jetpack is incomplete. If you installed Jetpack from GitHub, please refer to <a href="%1$s" target="_blank" rel="noopener noreferrer">this document</a> to set up your development environment.', 'jetpack' ), |
||
| 39 | esc_url( 'https://github.com/Automattic/jetpack/blob/master/docs/development-environment.md' ) |
||
| 40 | ); |
||
| 41 | ?> |
||
| 42 | </p> |
||
| 43 | </p> |
||
| 44 | </div> |
||
| 45 | <?php |
||
| 46 | } |
||
| 47 | } |
||
| 48 |