Files
2025-10-04 11:38:07 +02:00

12 lines
465 B
PHP
Executable File

<?php
include(getcwd().'/application/views/includes/barber-skeleton-top.php');
$langArray = array('en', 'hu', 'no');
if(in_array($selectedLang, $langArray)){
include(getcwd().'/application/views/pages/includes/barber-form-'.$selectedLang.'.php');
}
else{
include(getcwd().'/application/views/pages/includes/barber-form-en.php');
}
include(getcwd().'/application/views/includes/barber-skeleton-bottom.php');
?>