Conditions | 5 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | final public function import($content) |
||
32 | { |
||
33 | if(!!filter_var($content,FILTER_VALIDATE_URL)||!!is_readable($content)) |
||
34 | { |
||
35 | $content = @file_get_contents($content,false,$this->context); |
||
36 | |||
37 | return !!$this->isStringHtml($content)?$content:False; |
||
38 | } |
||
39 | return !!$this->isStringHtml($content)?$content:NULL; |
||
40 | } |
||
41 | |||
51 | } |