Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public static function getLogoString() { |
||
19 | $customLogoPath = Company::getPdfTemplatesPath() . '/company-logo.png'; |
||
20 | if (file_exists($customLogoPath)) { |
||
21 | return base64_encode(file_get_contents($customLogoPath)); |
||
22 | } |
||
23 | $defaultLogoPath = F72X::getDefaultPdfTemplatesPath() . '/company-logo.png'; |
||
24 | return base64_encode(file_get_contents($defaultLogoPath)); |
||
25 | } |
||
28 |