1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/app/Http/ViewComposers/AppLanguageComposer.php

38 lines
639 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Http\ViewComposers;
use Illuminate\View\View;
class AppLanguageComposer
{
/**
* Bind data to the view.
*
2017-01-30 20:40:43 +01:00
* @param View $view
*
* @return void
*/
public function compose(View $view)
{
$view->with('appLanguage', $this->getLanguage());
}
/**
2017-01-30 20:40:43 +01:00
* Get the language from the current locale.
*
* @return string
*/
private function getLanguage()
{
$code = app()->getLocale();
2017-01-30 17:05:31 +01:00
if (preg_match('/_/', $code)) {
$codes = explode('_', $code);
$code = $codes[0];
}
return $code;
}
2017-01-30 17:05:31 +01:00
}