Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public static function loadFunctionsFile($componentName) |
||
26 | { |
||
27 | $componentManager = ComponentManager::getInstance(); |
||
28 | $functionsFilePath = $componentManager->getComponentFilePath($componentName, 'functions.php'); |
||
29 | if (false !== $functionsFilePath) { |
||
30 | require_once $functionsFilePath; |
||
31 | } |
||
50 |