/** * Onboarding functions.php file. * * @package Divi * @subpackage onboarding * * @since ?? */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Trigger redirect to onboarding page after theme activation. * * @return void */ function et_onboarding_trigger_redirect() { // Do not redirect if WP-CLI is active. if ( defined( 'WP_CLI' ) && WP_CLI ) { return; } if ( ! class_exists( 'ET_Onboarding' ) ) { // get_template_directory() does not output a trailing slash. // {@see https://developer.wordpress.org/reference/functions/get_template_directory/}. require_once get_template_directory() . '/onboarding/onboarding.php'; } ET_Onboarding::redirect_to_onboarding_page(); } add_action( 'after_switch_theme', 'et_onboarding_trigger_redirect' ); /** * Trigger remove transients when theme is changed. * * @return void */ function et_onboarding_remove_transients() { if ( ! class_exists( 'ET_Onboarding' ) ) { // get_template_directory() does not output a trailing slash. // {@see https://developer.wordpress.org/reference/functions/get_template_directory/}. require_once get_template_directory() . '/onboarding/onboarding.php'; } ET_Onboarding::remove_transients(); } add_action( 'switch_theme', 'et_onboarding_remove_transients' ); Frédéric Hamann, Master Chef Instructor, Cuisine

Frederic-Hamann-1Frédéric Hamann is a Master Chef Instructor at IDE in Thailand. Most recently, Frédéric was a cookery instructor for the French Ministry of Education. He taught at the Lycée Hôtelier la Renaissance (Hospitality & Culinary High School) in Réunion island, and between 2017-2019 was a member of the Professional Jury to the national official examinations (including the C.A.P., Professional Baccalaureate and B.T.S.). He was also involved in corporate training, for instance as catering trainer for « Endémia Formation”, among other roles.

He began his career at the famed “Le Procope” brasserie in Paris, one of the capital’s oldest restaurants, founded in 1686. His career later took him from fine dining establishments to restaurants focused on traditional French cuisine, across France and in the United Kingdom. Recent positions included Head Chef at Métis Café in Hermitage Les Bains, and at the Coin de Table, at St Paul in Réunion island.

He holds B.E.P, B.P. and C.A.P certificates in hospitality and culinary arts from C.F.A Adolphe Chauvin in Osny, France. He has also obtained the National Adult Professional Instructor title (F.P.A) at A.A.T.I, in St André, and holds a Food safety and security HACCP certificate.