| Conditions | 4 |
| Paths | 8 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 44 | public function lang(?string $lang = null): string |
||
| 45 | { |
||
| 46 | $this->setTarget('en'); |
||
| 47 | if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { |
||
| 48 | [$l] = explode(",", $_SERVER['HTTP_ACCEPT_LANGUAGE']); |
||
| 49 | $this->setTarget($l); |
||
| 50 | } |
||
| 51 | if(TRANSLATE_DEFAULT){ |
||
| 52 | $this->setTarget(TRANSLATE_DEFAULT); |
||
| 53 | } |
||
| 54 | if ($lang) { |
||
| 55 | $this->setTarget($lang); |
||
| 56 | } |
||
| 57 | return $this->getTarget(); |
||
| 58 | } |
||
| 68 | } |