aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty/libraries/MOBIClass/RecognizeURL.php
blob: 6319ed5705bb509825859b342e97d7e0ff33947c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

/**
 * Description of RecognizeURL
 *
 * @author Sander
 */
class RecognizeURL {
	public static function GetContentHandler($url){
		if(FanFictionNet::Matches($url)){
			return new FanFictionNet($url);
		}
		return null;
	}
}
?>