mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 14:49:15 +00:00
16 lines
235 B
PHP
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;
|
|
}
|
|
}
|
|
?>
|