| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | protected function getResourceDir(): string |
||
| 48 | { |
||
| 49 | global $abterModuleManager; |
||
| 50 | |||
| 51 | foreach ($abterModuleManager->getResourcePaths() as $id => $path) { |
||
| 52 | if ($id !== static::MODULE_IDENTIFIER) { |
||
| 53 | continue; |
||
| 54 | } |
||
| 55 | |||
| 56 | return sprintf('%s/%s', $path, static::BOOTSTRAP_4_PATH); |
||
| 57 | } |
||
| 58 | |||
| 59 | return ''; |
||
| 60 | } |
||
| 62 |