mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-12 18:56:28 +00:00
17 lines
235 B
PHP
17 lines
235 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Description of RecognizeURL
|
||
|
*
|
||
|
* @author Sander
|
||
|
*/
|
||
|
class RecognizeURL {
|
||
|
public static function GetContentHandler($url){
|
||
|
if(FanFictionNet::Matches($url)){
|
||
|
return new FanFictionNet($url);
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
}
|
||
|
?>
|