<?php

class Core_Controller_Admin_IndexController extends Main_Core_Controller_Admin_IndexController {

	public function changeLangAction() {
		$this->_disableLayout();
		$this->_disableView();

		$langCode = $this->_getParam('lang');

		Core_Lang::setLangCode($langCode);

		$this->_redirect($_SERVER['HTTP_REFERER']);
	}

	public function otherAction() {
		$this->view->message = 'other action';
	}

	public function indexAction() {

		$this->view->message = 'admin controller';
		// action body
	}

}
