modules
1 week ago
pages
1 week ago
routes
2 days ago
scripts
2 weeks ago
styles
6 months ago
build.php
2 months ago
constants.php
2 days ago
i18n-manifest.json
2 weeks 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_forms |
| 7 | */ |
| 8 | |
| 9 | foreach ( [ |
| 10 | __DIR__ . '/pages/jetpack-forms-responses/page.php', |
| 11 | __DIR__ . '/pages/jetpack-forms-responses/page-wp-admin.php', |
| 12 | ] as $file ) { |
| 13 | if ( file_exists( $file ) ) { |
| 14 | require_once $file; |
| 15 | } |
| 16 | } |
| 17 |