Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php namespace VojtaSvoboda\Reservations\Mailers; |
||
19 | 7 | public function getTemplateIdent($name, $locale = null) |
|
20 | { |
||
21 | 7 | if ($locale === null) { |
|
22 | 6 | $locale = App::getLocale(); |
|
23 | } |
||
24 | 7 | $identBase = 'vojtasvoboda.reservations::mail.' . $name . '-'; |
|
25 | |||
26 | 7 | if (file_exists(__DIR__ . '/../views/mail/' . $name . '-' . $locale . '.htm')) { |
|
27 | 7 | return $identBase . $locale; |
|
28 | } |
||
29 | |||
30 | return $identBase . self::DEFAULT_TEMPLATE_LOCALE; |
||
31 | } |
||
32 | |||
47 |