images
6 months ago
modules
2 weeks ago
pages
2 weeks ago
routes
2 weeks ago
scripts
2 weeks ago
styles
3 months ago
build.php
2 months ago
constants.php
1 month ago
i18n-manifest.json
2 weeks ago
index.asset.php
1 month ago
index.css
1 month ago
index.js
1 month ago
index.rtl.css
1 month ago
modules.php
2 months ago
pages.php
2 months ago
routes.php
3 months ago
scripts.php
3 months ago
styles.php
3 months ago
pages.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Pages loader - Auto-generated by build process. |
| 4 | * Do not edit this file manually. |
| 5 | * |
| 6 | * @package jetpack_backup |
| 7 | */ |
| 8 | |
| 9 | foreach ( [ |
| 10 | __DIR__ . '/pages/jetpack-backup-dashboard/page.php', |
| 11 | __DIR__ . '/pages/jetpack-backup-dashboard/page-wp-admin.php', |
| 12 | ] as $file ) { |
| 13 | if ( file_exists( $file ) ) { |
| 14 | require_once $file; |
| 15 | } |
| 16 | } |
| 17 |