| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public static function themedJavascript($file, $uniqueId = null) |
||
| 13 | { |
||
| 14 | $path = ThemeResourceLoader::inst()->findThemedJavascript($file, SSViewer::get_themes()); |
||
| 15 | if ($path) { |
||
| 16 | $script = file_get_contents(Director::baseFolder() . DIRECTORY_SEPARATOR . $path); |
||
| 17 | Requirements::customScript($script, $uniqueId); |
||
| 18 | } else { |
||
| 19 | Requirements::customScript('// ' . $file . ' not found'); |
||
| 20 | } |
||
| 34 |