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
build.php
44 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Main entry point for auto-generated asset registration. |
| 4 | * Do not edit this file manually. |
| 5 | * |
| 6 | * @package jetpack_forms |
| 7 | */ |
| 8 | |
| 9 | // Load script module registration. |
| 10 | $modules_file = __DIR__ . '/modules.php'; |
| 11 | if ( file_exists( $modules_file ) ) { |
| 12 | require_once $modules_file; |
| 13 | } |
| 14 | |
| 15 | // Load script registration. |
| 16 | $scripts_file = __DIR__ . '/scripts.php'; |
| 17 | if ( file_exists( $scripts_file ) ) { |
| 18 | require_once $scripts_file; |
| 19 | } |
| 20 | |
| 21 | // Load style registration. |
| 22 | $styles_file = __DIR__ . '/styles.php'; |
| 23 | if ( file_exists( $styles_file ) ) { |
| 24 | require_once $styles_file; |
| 25 | } |
| 26 | |
| 27 | // Load routes registration. |
| 28 | $routes_file = __DIR__ . '/routes.php'; |
| 29 | if ( file_exists( $routes_file ) ) { |
| 30 | require_once $routes_file; |
| 31 | } |
| 32 | |
| 33 | // Load widgets registration. |
| 34 | $widgets_file = __DIR__ . '/widgets.php'; |
| 35 | if ( file_exists( $widgets_file ) ) { |
| 36 | require_once $widgets_file; |
| 37 | } |
| 38 | |
| 39 | // Load pages registration. |
| 40 | $pages_file = __DIR__ . '/pages.php'; |
| 41 | if ( file_exists( $pages_file ) ) { |
| 42 | require_once $pages_file; |
| 43 | } |
| 44 |