Development

'; include(__ROOT__.'/app/view/_dev.php'); } elseif ($slug === 'clear') { $_SESSION = array(); header('Location: '.__URL__); exit; } elseif ($slug === 'set') { $supported = array_keys(LANGUAGES); if (!empty($PARAMS['2']) && in_array($PARAMS['2'], $supported, true)) { $_SESSION['SITE']['language'] = $PARAMS['2']; header('Location: '.__URL__.$_SESSION['SITE']['slug']); } else { $_SESSION = array(); header('Location: '.__URL__); } exit; } else { header('Location: '.__URL__.'error/404'); exit; } } else { $_SESSION['SITE']['slug'] = PAGE_00_SLUG; include(__ROOT__.'/app/view/_header.phtml'); include(__ROOT__.'/lng/'.$_SESSION['SITE']['language'].'/'.$_SESSION['SITE']['slug'].'.phtml'); include(__ROOT__.'/app/view/_footer.phtml'); }