use directly MOBIClass

This commit is contained in:
tcit
2014-07-24 21:56:04 +02:00
parent c70bfefc68
commit fb9df0c269
47 changed files with 309 additions and 1551 deletions

View File

@ -0,0 +1,16 @@
<?php
/**
* Description of RecognizeURL
*
* @author Sander
*/
class RecognizeURL {
public static function GetContentHandler($url){
if(FanFictionNet::Matches($url)){
return new FanFictionNet($url);
}
return null;
}
}
?>