3 class LocaleDetectionController
extends ApplicationController
8 $this->renderText('Hello from LocaleDetectionController');
11 function check_header()
13 $this->renderText($_SERVER['HTTP_ACCEPT_LANGUAGE']);
16 function get_language()
18 $this->renderText(Ak
::lang());
23 $this->renderText($this->params
[$this->params
['param']]);
28 if(!empty($this->params
['id']) && $this->params
['id'] == 1234){
29 $_SESSION['value'] = 1234;
31 $this->renderText($_SESSION['value']);