1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-12 16:58:37 +00:00
wallabag/inc/3rdparty/libraries/MOBIClass/RecognizeURL.php
2014-07-24 21:56:04 +02:00

16 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;
}
}
?>