| 1 |
<?php |
| 2 |
/** |
| 3 |
* Pages loader - Auto-generated by build process. |
| 4 |
* Do not edit this file manually. |
| 5 |
* |
| 6 |
* @package jetpack_plugin |
| 7 |
*/ |
| 8 |
|
| 9 |
foreach ( [ |
| 10 |
__DIR__ . '/pages/jetpack-ai-hub/page.php', |
| 11 |
__DIR__ . '/pages/jetpack-ai-hub/page-wp-admin.php', |
| 12 |
] as $file ) { |
| 13 |
if ( file_exists( $file ) ) { |
| 14 |
require_once $file; |
| 15 |
} |
| 16 |
} |
| 17 |
|