%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/components/bootstrap/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/components/bootstrap/LanguageSelector.php |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2017 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\components\bootstrap;
use yii\base\BootstrapInterface;
/**
* LanguageSelector automatically sets the language of the i18n component
*
* @see \humhub\components\i18n\I18N
* @author luke
*/
class LanguageSelector implements BootstrapInterface
{
/**
* @inheritdoc
*/
public function bootstrap($app)
{
mb_internal_encoding('UTF-8');
$app->i18n->autosetLocale();
}
}