Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function getIncludeHtml() |
||
27 | { |
||
28 | // Gibt den Einbindungscode für die Dateien zurück |
||
29 | $filelist = $this->getIncludeFileset(); |
||
30 | |||
31 | $htmlreturn = ""; |
||
32 | |||
33 | foreach ($filelist as $file) { |
||
34 | $htmlreturn .= "<script type=\"text/javascript\" "; |
||
35 | $htmlreturn .= "src=\"".$file."\"></script>\n"; |
||
36 | } |
||
37 | |||
38 | return $htmlreturn; |
||
39 | } |
||
52 | } |