Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | function processThreadBody($string) |
||
40 | { |
||
41 | if (strpos($string, 'youtube.com')) |
||
42 | $string = preg_replace( |
||
43 | "/\s*[a-zA-Z\/\/:\.]*youtu(be.com\/watch\?v=|.be\/)([a-zA-Z0-9\-_]+)([a-zA-Z0-9\/\*\-\_\?\&\;\%\=\.]*)/i", |
||
44 | "<div style='position: relative;padding-bottom: 56.25%;padding-top: 25px;height: 0;'><iframe src=\"//www.youtube.com/embed/$2\" allowfullscreen style='position: absolute;top: 0;left: 0;width: 100%;height: 100%;'></iframe></div>", |
||
45 | $string |
||
46 | ); |
||
47 | |||
48 | return nl2br($string); |
||
49 | } |
||
50 | } |
||
53 |