File: /home/xedaptot/bar.naniguide.com/wp-content/plugins/laurent-core/core-dashboard/load.php
<?php
if ( ! function_exists( 'laurent_core_dashboard_load_files' ) ) {
function laurent_core_dashboard_load_files() {
require_once LAURENT_CORE_ABS_PATH . '/core-dashboard/core-dashboard.php';
require_once LAURENT_CORE_ABS_PATH . '/core-dashboard/rest/include.php';
require_once LAURENT_CORE_ABS_PATH . '/core-dashboard/registration-rest.php';
require_once LAURENT_CORE_ABS_PATH . '/core-dashboard/validation-rest.php';
require_once LAURENT_CORE_ABS_PATH . '/core-dashboard/sub-pages/sub-page.php';
foreach (glob(LAURENT_CORE_ABS_PATH . '/core-dashboard/sub-pages/*/load.php') as $subpages) {
include_once $subpages;
}
}
add_action('after_setup_theme', 'laurent_core_dashboard_load_files');
}