| Conditions | 5 |
| Paths | 5 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | protected function getIcon() |
||
| 15 | { |
||
| 16 | if (preg_match('/\.TS\.|\.TELESYNC\./i', $this->file)) |
||
| 17 | return 'TS'; |
||
| 18 | else if (preg_match('/\.CAM\./i', $this->file)) |
||
| 19 | return 'CAM'; |
||
| 20 | else if (preg_match('/\.DVDSCR\.|\.SCREENER\./i', $this->file)) |
||
| 21 | return 'TS'; |
||
| 22 | else if (preg_match('/\.WEBRip\./i', $this->file)) |
||
| 23 | return 'WEBRIP'; |
||
| 24 | |||
| 25 | return false; |
||
| 26 | } |
||
| 29 |